/* ============================================
   BIKE HIRE SALISBURY – Premium Minimalist
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --black: #0A0A0A;
  --surface: #111111;
  --raised: #1A1A1A;
  --border: rgba(255, 255, 255, 0.07);
  --border-light: rgba(255, 255, 255, 0.13);
  --accent: #B8975A;
  --accent-dim: rgba(184, 151, 90, 0.15);
  --white: #FFFFFF;
  --off-white: #F2F0EB;
  --grey: #6A6A6A;
  --grey-light: #A0A0A0;
  --text: #E8E8E8;
  --radius: 2px;
  --radius-sm: 2px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* ---- Typography ---- */
.serif {
  font-family: 'Cormorant Garamond', serif;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
}

p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--grey-light);
}

/* ---- Labels / Overlines ---- */
.label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.overline {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 120px 0;
}

.section-sm {
  padding: 64px 0;
}

.divider {
  height: 1px;
  background: var(--border);
}

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: background 0.4s ease, border-color 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-cta {
  background: var(--white) !important;
  color: var(--black) !important;
  padding: 10px 24px !important;
  margin-left: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--off-white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  z-index: 999;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  padding: 16px 40px 24px;
}

.mobile-menu li a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-light);
}

.mobile-menu li:last-child a {
  border: none;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.btn-primary {
  background: var(--white);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--accent);
  color: var(--black);
}

.btn-accent:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: var(--white);
}

.btn-dark {
  background: var(--raised);
  color: var(--white);
  border: 1px solid var(--border-light);
}

.btn-dark:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: #222;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.68rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 0.8rem;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.png');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.22) saturate(0.4);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.6) 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 100px;
  max-width: 820px;
}

.hero h1 {
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-desc {
  font-size: 1rem;
  color: var(--grey-light);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.hero-stat {
  flex: 1;
  padding-right: 40px;
  border-right: 1px solid var(--border);
  margin-right: 40px;
}

.hero-stat:last-child {
  border: none;
  margin: 0;
  padding: 0;
}

.hero-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  display: block;
}

.hero-stat .lbl {
  font-size: 0.68rem;
  color: var(--grey);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

/* ---- Feature Strip ---- */
.feature-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 20px 0;
}

.feature-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

.feature-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.feature-item strong {
  color: var(--grey-light);
}

/* ---- Bikes Section ---- */
.bikes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 64px;
}

.bike-panel {
  background: var(--black);
  padding: 48px 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bike-panel:hover {
  background: var(--surface);
}

.bike-panel-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin-bottom: 36px;
  filter: grayscale(0.2);
  transition: var(--transition);
}

.bike-panel:hover .bike-panel-img {
  filter: grayscale(0);
}

.bike-panel .tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 10px;
  display: block;
}

.bike-panel h3 {
  margin-bottom: 16px;
}

.bike-panel .desc {
  color: var(--grey);
  font-size: 0.88rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.price-row {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.price-item .p-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}

.price-item .p-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.price-item .p-sub {
  font-size: 0.68rem;
  color: var(--grey);
  margin-top: 2px;
}

.bike-includes {
  list-style: none;
  margin-bottom: 32px;
}

.bike-includes li {
  font-size: 0.8rem;
  color: var(--grey);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.bike-includes li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.82);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  backdrop-filter: blur(4px);
}

.cs-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--accent);
  padding: 8px 20px;
}

/* ---- Pricing ---- */
.pricing-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-table-wrap {
  border: 1px solid var(--border);
  margin-top: 56px;
}

.pricing-table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table-wrap thead th {
  padding: 16px 28px;
  text-align: left;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  border-bottom: 1px solid var(--border);
}

.pricing-table-wrap td {
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--grey-light);
  vertical-align: middle;
}

.pricing-table-wrap tr:last-child td {
  border-bottom: none;
}

.pricing-table-wrap tbody tr {
  transition: background 0.2s;
}

.pricing-table-wrap tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.price-fig {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
}

.price-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
}

.deposit-callout {
  border: 1px solid rgba(184, 151, 90, 0.2);
  background: rgba(184, 151, 90, 0.05);
  padding: 20px 28px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.deposit-callout .dc-line {
  width: 24px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.deposit-callout p {
  font-size: 0.83rem;
  color: var(--grey-light);
}

.deposit-callout strong {
  color: var(--accent);
}

/* ---- Why Us -- Editorial Grid ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 64px;
}

.why-item {
  background: var(--black);
  padding: 48px 36px;
  transition: background 0.3s;
}

.why-item:hover {
  background: var(--surface);
}

.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  margin-bottom: 20px;
}

.why-item h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.why-item p {
  color: var(--grey);
  font-size: 0.85rem;
}

/* ---- Routes Section ---- */
.routes-section {
  background: var(--surface);
}

.routes-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 64px;
}

.routes-table th {
  border-bottom: 1px solid var(--border-light);
  padding: 12px 20px;
  text-align: left;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

.routes-table td {
  padding: 26px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.routes-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.route-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.route-sub {
  font-size: 0.78rem;
  color: var(--grey);
}

.diff-pill {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border-light);
  color: var(--grey-light);
}

.diff-easy {
  border-color: rgba(255, 255, 255, 0.1);
}

.diff-moderate {
  border-color: rgba(184, 151, 90, 0.3);
  color: var(--accent);
}

.diff-challenge {
  border-color: rgba(255, 80, 80, 0.2);
  color: #cc6060;
}

.route-dist {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--white);
}

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 64px;
}

.testimonial-item {
  background: var(--black);
  padding: 44px 36px;
}

.t-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}

.t-star {
  width: 10px;
  height: 10px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.t-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--grey-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

.t-author {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

.t-author span {
  color: var(--grey-light);
}

/* ---- News Cards ---- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 64px;
}

.article-card {
  background: var(--black);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.article-card:hover {
  background: var(--surface);
}

.article-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: grayscale(0.4) brightness(0.85);
  transition: var(--transition);
}

.article-card:hover .article-card-img {
  filter: grayscale(0) brightness(1);
}

.article-card-body {
  padding: 28px 28px 32px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.article-date {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

.article-cat {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.article-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.article-card p {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.7;
}

.article-card-footer {
  padding: 16px 28px;
  border-top: 1px solid var(--border);
}

.read-link {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color 0.2s;
}

.read-link:hover {
  color: var(--white);
}

/* ---- FAQ ---- */
.faq-section {
  background: var(--surface);
}

.accordion {
  border-top: 1px solid var(--border);
  max-width: 780px;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  text-align: left;
  transition: var(--transition);
}

.accordion-btn .q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--grey-light);
  transition: color 0.2s;
}

.accordion-btn:hover .q {
  color: var(--white);
}

.accordion-btn .ch {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  position: relative;
}

.accordion-btn .ch::before,
.accordion-btn .ch::after {
  content: '';
  position: absolute;
  background: var(--grey);
  border-radius: 1px;
  transition: var(--transition);
}

.accordion-btn .ch::before {
  width: 1px;
  height: 16px;
  left: 7.5px;
  top: 0;
}

.accordion-btn .ch::after {
  width: 16px;
  height: 1px;
  top: 7.5px;
  left: 0;
}

.accordion-btn.open .ch::before {
  transform: rotate(90deg);
  opacity: 0;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body p {
  color: var(--grey);
  font-size: 0.88rem;
  padding-bottom: 24px;
  line-height: 1.8;
}

/* ---- CTA Stripe ---- */
.cta-section {
  background: var(--white);
  padding: 100px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 16px;
}

.cta-section p {
  color: #555;
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 40px;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: var(--black);
  color: var(--white);
}

.cta-section .btn-primary:hover {
  background: #1a1a1a;
}

.cta-section .btn-outline {
  border-color: rgba(0, 0, 0, 0.2);
  color: var(--black);
}

.cta-section .btn-outline:hover {
  border-color: var(--black);
}

/* ---- Footer ---- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand-name span {
  color: var(--accent);
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.8;
  max-width: 260px;
}

.footer h4 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  font-size: 0.83rem;
  color: var(--grey);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--grey);
}

.footer-bottom a {
  color: var(--grey);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ---- Booking Form ---- */
.booking-page {
  padding: 140px 0 100px;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

.form-panel {
  border: 1px solid var(--border);
  background: var(--surface);
}

.form-panel-body {
  padding: 48px;
}

.form-panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 4px;
}

.form-panel-sub {
  font-size: 0.82rem;
  color: var(--grey);
  margin-bottom: 36px;
}

.step-track {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.step-tab {
  flex: 1;
  padding: 14px 0;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--grey);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: default;
  transition: var(--transition);
}

.step-tab.active {
  color: var(--white);
  border-bottom-color: var(--accent);
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 0.93rem;
  transition: var(--transition);
  border-radius: var(--radius);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

select option {
  background: var(--surface);
}

.form-help {
  font-size: 0.72rem;
  color: var(--grey);
  margin-top: 6px;
}

.booking-summary {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 36px;
  position: sticky;
  top: 90px;
}

.bs-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 24px;
}

.bs-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.83rem;
}

.bs-row:last-of-type {
  border: none;
}

.bs-row .k {
  color: var(--grey);
}

.bs-row .v {
  color: var(--white);
  font-weight: 500;
}

.bs-total {
  border: 1px solid rgba(184, 151, 90, 0.2);
  background: rgba(184, 151, 90, 0.04);
  padding: 20px 24px;
  margin-top: 20px;
  text-align: center;
}

.bs-total .amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  display: block;
}

.bs-total .sub {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 4px;
}

.bs-includes {
  list-style: none;
  margin-top: 20px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.bs-includes li {
  font-size: 0.78rem;
  color: var(--grey);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bs-includes li::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.step-btns {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}

.step-btns .btn {
  flex: 1;
  justify-content: center;
}

.confirm-detail {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.confirm-detail .k {
  color: var(--grey);
}

.confirm-detail .v {
  color: var(--white);
  font-weight: 500;
}

.terms-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.terms-row input[type=checkbox] {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.terms-row label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.82rem;
  color: var(--grey);
}

.terms-row a {
  color: var(--grey-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.secure-note {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 12px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

/* ---- Admin ---- */
.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.admin-login-box {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 56px 48px;
  max-width: 440px;
  width: 100%;
}

.admin-login-box h1 {
  font-size: 2rem;
  margin-bottom: 4px;
}

.admin-login-box .sub {
  font-size: 0.82rem;
  color: var(--grey);
  margin-bottom: 36px;
}

.admin-wrap {
  padding: 100px 0 80px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.admin-topbar h2 {
  font-size: 1.5rem;
}

.admin-topbar p {
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 2px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 40px;
}

.stat-box {
  background: var(--surface);
  padding: 28px 28px 24px;
}

.stat-box .sv {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.stat-box .sl {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 6px;
}

.tab-bar {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.tab-btn {
  padding: 14px 24px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: none;
  border: none;
  color: var(--grey);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
}

.tab-btn.active {
  color: var(--white);
  border-bottom-color: var(--accent);
}

.filter-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.filter-bar input,
.filter-bar select {
  width: auto;
  padding: 10px 14px;
  font-size: 0.82rem;
}

.data-table {
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}

.data-table table {
  width: 100%;
  border-collapse: collapse;
}

.data-table thead th {
  background: rgba(255, 255, 255, 0.02);
  padding: 14px 18px;
  text-align: left;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  border-bottom: 1px solid var(--border);
}

.data-table tbody td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.83rem;
  color: var(--grey-light);
}

.data-table tbody tr:last-child td {
  border: none;
}

.data-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.status-pill {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-confirmed {
  background: rgba(255, 255, 255, 0.06);
  color: var(--grey-light);
}

.status-pending {
  background: rgba(184, 151, 90, 0.1);
  color: var(--accent);
}

.status-cancelled {
  background: rgba(200, 60, 60, 0.1);
  color: #cc6060;
}

.mark-paid-btn {
  background: rgba(255, 255, 255, 0.05);
  color: var(--grey-light);
  border: 1px solid var(--border);
  padding: 5px 14px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.mark-paid-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: var(--border-light);
}

.mark-paid-btn.paid {
  opacity: 0.4;
  pointer-events: none;
}

.ref-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
}

.ref-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.ref-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.ref-stat {
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  text-align: center;
}

.ref-stat .v {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--white);
}

.ref-stat .l {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 4px;
}

/* ---- Page Hero ---- */
.page-hero {
  padding: 180px 0 80px;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1rem;
  color: var(--grey-light);
  max-width: 540px;
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
  margin-top: 64px;
}

.contact-info {
  /* contact info block */
}

.contact-info h3 {
  font-size: 1.1rem;
  margin-bottom: 28px;
  color: var(--white);
}

.info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.info-row:last-of-type {
  border: none;
  padding: 0;
  margin: 0;
}

.info-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}

.info-value {
  font-size: 0.88rem;
  color: var(--grey-light);
  line-height: 1.7;
}

.info-line {
  width: 24px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}

.map-frame {
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: 28px;
}

.map-frame iframe {
  width: 100%;
  height: 260px;
  display: block;
  border: none;
  filter: grayscale(1) brightness(0.6);
}

.contact-form {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 40px;
}

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  filter: grayscale(0.3);
}

.kpi-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 32px;
}

.kpi-item {
  flex: 1;
  padding: 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.kpi-item:last-child {
  border: none;
}

.kpi-item .kv {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--white);
}

.kpi-item .kl {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 4px;
}

/* ---- Result Pages ---- */
.result-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.result-box {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 72px 56px;
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.result-box h1 {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.result-box p {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 36px;
}

.result-details {
  border: 1px solid var(--border);
  padding: 20px 24px;
  margin-bottom: 32px;
  text-align: left;
}

.result-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.83rem;
}

.result-detail-row:last-child {
  border: none;
}

.result-detail-row .k {
  color: var(--grey);
}

.result-detail-row .v {
  color: var(--white);
  font-weight: 500;
}

.result-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.result-btns .btn {
  justify-content: center;
}

/* ---- Referral Banner ---- */
.referrer-banner {
  position: fixed;
  bottom: 28px;
  left: 28px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  padding: 16px 20px;
  max-width: 340px;
  z-index: 9000;
  transform: translateY(120px);
  opacity: 0;
  transition: var(--transition);
}

.referrer-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.referrer-banner .rb-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}

.referrer-banner .rb-name {
  font-size: 0.88rem;
  color: var(--white);
}

.referrer-banner .rb-code {
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-top: 2px;
}

.referrer-banner .rb-close {
  position: absolute;
  top: 12px;
  right: 14px;
  cursor: pointer;
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1;
}

/* ---- Toast ---- */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 14px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: var(--transition);
  max-width: 320px;
  border: 1px solid var(--border);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-success {
  background: #0F1F14;
  border-color: rgba(100, 180, 100, 0.2);
  color: #8fcf8f;
}

.toast-error {
  background: #1F0F0F;
  border-color: rgba(200, 80, 80, 0.2);
  color: #cf8f8f;
}

/* ---- Spinner ---- */
.spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--white);
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---- Micro-animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  .bikes-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  /* --- Layout --- */
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 64px 0;
  }

  .section-sm {
    padding: 40px 0;
  }

  /* --- Navbar --- */
  .nav-links {
    display: none;
  }

  .nav-phone-li {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  /* --- Mobile menu: phone number --- */
  .mobile-menu ul {
    padding: 12px 16px 20px;
  }

  .mobile-menu li a {
    padding: 13px 0;
  }

  /* --- Hero --- */
  .hero-content {
    padding: 96px 0 72px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 48px;
    padding-top: 28px;
  }

  .hero-stat {
    border: none;
    margin: 0;
    padding: 0;
    flex: 0 0 calc(50% - 10px);
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  /* --- Page hero --- */
  .page-hero {
    padding: 100px 0 52px;
  }

  .page-hero p {
    font-size: 0.9rem;
  }

  /* --- Grids --- */
  .bikes-grid,
  .why-grid,
  .testimonials-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  /* --- Booking --- */
  .booking-page {
    padding: 96px 0 60px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Move summary above form on mobile */
  .booking-summary {
    order: -1;
    position: static;
  }

  /* --- Contact --- */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }

  .contact-form {
    padding: 24px 20px;
  }

  /* --- About --- */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img {
    height: 280px;
  }

  /* --- Footer --- */
  .footer {
    padding: 48px 0 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px;
    padding-bottom: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  /* --- Forms --- */
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-panel-body {
    padding: 24px 20px;
  }

  .step-track {
    margin-bottom: 24px;
  }

  .step-tab {
    font-size: 0.58rem;
    padding: 12px 4px;
    letter-spacing: 0.08em;
  }

  /* --- Feature strip --- */
  .feature-strip-inner {
    gap: 16px;
    justify-content: flex-start;
  }

  /* --- Pricing table --- */
  .pricing-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-table-wrap table {
    min-width: 480px;
  }

  /* --- Routes table --- */
  .routes-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .routes-table {
    min-width: 520px;
  }

  /* --- CTA --- */
  .cta-section {
    padding: 72px 0;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-btns .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* --- Admin --- */
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .admin-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .data-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tab-bar {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }

  .tab-btn {
    padding: 12px 16px;
    font-size: 0.62rem;
  }

  /* --- KPI row --- */
  .kpi-row {
    flex-wrap: wrap;
  }

  .kpi-item {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  /* --- Accordion --- */
  .accordion-btn .q {
    font-size: 0.95rem;
  }

  /* --- Deposit callout --- */
  .deposit-callout {
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px;
  }

  .deposit-callout .dc-line {
    display: none;
  }

  /* --- Ref banner --- */
  .referrer-banner {
    left: 16px;
    right: 16px;
    max-width: none;
    bottom: 16px;
  }
}

@media (max-width: 480px) {

  /* --- Typography --- */
  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 2.8rem);
  }

  h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  /* --- Buttons --- */
  .btn-lg {
    padding: 14px 28px;
    font-size: 0.75rem;
  }

  /* --- Hero --- */
  .hero-content {
    padding: 88px 0 60px;
  }

  .hero-stat {
    flex: 0 0 100%;
  }

  /* --- Page hero --- */
  .page-hero {
    padding: 90px 0 44px;
  }

  /* --- Section --- */
  .section {
    padding: 52px 0;
  }

  /* --- Booking --- */
  .booking-page {
    padding: 88px 0 48px;
  }

  .booking-summary {
    padding: 24px 20px;
  }

  /* --- Footer collapses to 1 column on very small screens --- */
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  /* --- Result / login boxes --- */
  .result-box {
    padding: 40px 20px;
  }

  .admin-login-box {
    padding: 36px 24px;
  }

  /* --- Form panel --- */
  .form-panel-body {
    padding: 20px 16px;
  }

  /* --- Admin stats --- */
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  /* --- Feature strip: stack vertically --- */
  .feature-strip-inner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  /* --- Nav CTA in mobile menu bigger tap target --- */
  .mobile-menu li a {
    padding: 16px 0;
    font-size: 0.82rem;
  }

  /* --- Ensure inputs are full width and comfortable on mobile --- */
  input,
  select,
  textarea {
    font-size: 16px;
    /* prevents iOS zoom on focus */
  }
}