/* =============================================================================
   Looong Ride Japan — Main Stylesheet
   ============================================================================= */

/* -----------------------------------------------------------------------------
   1. Reset & Variables
   ----------------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent: #D4A520;
  --dark: #0D0D0D;
  --dark-alt: #1A1A1A;
  --gold: #D4A520;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --gray: #555;
  --muted: #888;
}

/* -----------------------------------------------------------------------------
   2. Base
   ----------------------------------------------------------------------------- */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark);
  background: var(--white);
}

/* -----------------------------------------------------------------------------
   3. Accessibility
   ----------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: 0 0 4px 4px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 200;
  transition: top 0.2s;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* -----------------------------------------------------------------------------
   4. Navigation
   ----------------------------------------------------------------------------- */
nav {
  background: var(--dark);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 70px;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav ul a:hover,
nav ul a.active {
  color: var(--gold);
}

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle .bar {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* -----------------------------------------------------------------------------
   5. Buttons
   ----------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: background 0.2s;
}

.btn:hover {
  background: #b88c10;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  margin-left: 1rem;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

/* -----------------------------------------------------------------------------
   6. Sections & Layout
   ----------------------------------------------------------------------------- */
section {
  padding: 5rem 2rem;
}

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.section-title p {
  color: var(--gray);
  margin-top: 0.8rem;
  font-size: 1rem;
}

/* Section rhythm: subtle divider between consecutive light sections */
section + section {
  border-top: 1px solid #e8e8e8;
}

/* Dark sections create their own visual boundary — no divider needed */
.why-section,
.how-it-works,
.love-section {
  border-top: none;
}

/* No divider on the section immediately following a dark section */
.why-section + section,
.how-it-works + section,
.love-section + section {
  border-top: none;
}

/* Narrow grid constraint utility */
.grid--narrow {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* -----------------------------------------------------------------------------
   7. Hero & Background Carousel
   ----------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  overflow: hidden;
}

/* Carousel layer — sits behind all hero content */
#hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* Dark overlay on top of carousel, below text */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Ensure hero text stays above the overlay */
.hero > *:not(#hero-carousel) {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw + 1.2rem, 4rem);
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  font-size: 1.25rem;
  margin: 1.2rem 0 2rem;
  color: #ddd;
  max-width: 600px;
}

/* -----------------------------------------------------------------------------
   8. Page Header (inner pages)
   ----------------------------------------------------------------------------- */
.page-header {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.page-header > *:not(#hero-carousel) {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 2px;
}

.page-header p {
  color: #ccc;
  margin-top: 0.5rem;
}

/* -----------------------------------------------------------------------------
   9. Service Cards
   ----------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Non-interactive variant (info cards, not links) */
.service-card--static {
  pointer-events: none;
  cursor: default;
}

/* FAQ variant — left-aligned text, icon centered */
.service-card--faq {
  pointer-events: none;
  cursor: default;
  text-align: left;
}

.service-card .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.icon--center {
  text-align: center;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--dark);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* -----------------------------------------------------------------------------
   10. Why Section
   ----------------------------------------------------------------------------- */
.why-section {
  background: var(--dark);
  color: var(--white);
}

.why-section .section-title h2 {
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.why-item {
  text-align: center;
  padding: 1.5rem;
}

.why-item .icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.why-item h4 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.why-item p {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.6;
}

/* Light-background override for why-grid (Guide Standards section) */
.why-grid--light .why-item {
  color: var(--dark);
}

.why-grid--light .why-item h4 {
  color: var(--accent);
}

.why-grid--light .why-item p {
  color: var(--gray);
}

/* -----------------------------------------------------------------------------
   11. Featured Package Cards (home page preview)
   ----------------------------------------------------------------------------- */
.packages-section {
  background: var(--light-bg);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.package-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.package-card .card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.package-card .card-img img {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-card .card-img.has-photo img { display: block; }
.package-card .card-img.has-photo span { display: none; }

.pkg-mountain-ride { background: linear-gradient(135deg, #0a1a0a, #141f14); }
.pkg-coastal  { background: linear-gradient(135deg, #0a0e1a, #101520); }
.pkg-night-ride      { background: linear-gradient(135deg, #1a0a00, #231200); }

.package-card .card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.package-card .duration {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.package-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}

.package-card .price {
  margin-top: 1rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
}

.package-card .price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray);
}

.package-card .btn {
  margin-top: 1rem;
  text-align: center;
}

/* -----------------------------------------------------------------------------
   12. Full Package Cards (packages page)
   ----------------------------------------------------------------------------- */
.packages-full {
  max-width: 1100px;
  margin: 0 auto;
}

.package-full-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 2.5rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 300px 1fr;
}

.package-full-card .pkg-img {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  aspect-ratio: 3 / 4;
}

.package-full-card .pkg-img img {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-full-card .pkg-img.has-photo img { display: block; }
.package-full-card .pkg-img.has-photo span { display: none; }

/* Photography add-on image gradients */
.pkg-img--snap  { background: linear-gradient(135deg, #141414, #2a2a2a); }
.pkg-img--full  { background: linear-gradient(135deg, #0a1020, #101828); }
.pkg-img--print { background: linear-gradient(135deg, #1a1000, #2a2000); }

.package-full-card .pkg-details {
  padding: 2rem;
}

.package-full-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.package-full-card .meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  flex-wrap: wrap;
}

.meta .tag {
  background: var(--light-bg);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: 600;
  color: var(--dark);
}

.meta .tag.red  { background: #fef3cc; color: #8B6914; }
.meta .tag.blue { background: #e8e8e8; color: #333; }

.package-full-card ul {
  list-style: none;
  margin: 0.8rem 0 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.package-full-card ul li::before {
  content: '✓ ';
  color: var(--accent);
  font-weight: 700;
}

.package-full-card ul li {
  font-size: 0.9rem;
  color: var(--gray);
}

.package-full-card .price-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.package-full-card .price-row .price {
  font-size: 1.6rem;
  font-weight: 800;
}

.price-label {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray);
}

/* -----------------------------------------------------------------------------
   13. Testimonials
   ----------------------------------------------------------------------------- */
.testimonials {
  max-width: 900px;
  margin: 0 auto;
}

/* Carousel wrapper */
.t-carousel {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.t-track-wrapper {
  overflow: hidden;
  flex: 1;
}

.t-track {
  display: flex;
  transition: transform 0.4s ease;
}

.t-track .testimonial-card {
  flex: 0 0 100%;
}

/* Dots */
.t-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.t-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* Prev / next arrows */
.t-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-btn:hover {
  background: var(--accent);
  color: var(--dark);
}

/* Testimonial form */
.testimonial-form {
  max-width: 680px;
  margin: 0 auto;
}

.t-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.t-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.t-form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}

.t-form-field label span {
  color: var(--accent);
}

.t-form-field input,
.t-form-field textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  resize: vertical;
}

.t-form-field input:focus,
.t-form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.t-field-error {
  border-color: #c0392b !important;
}

.t-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.t-form-note {
  font-size: 0.82rem;
  color: var(--muted);
  flex: 1;
}

.t-form-success {
  margin-top: 1rem;
  padding: 0.8rem 1.2rem;
  background: #f0faf0;
  border: 1px solid #a3d9a3;
  border-radius: 6px;
  color: #2a6b2a;
  font-size: 0.9rem;
  font-weight: 600;
}

.t-form-error {
  margin-top: 1rem;
  padding: 0.8rem 1.2rem;
  background: #fdf0f0;
  border: 1px solid #e8a3a3;
  border-radius: 6px;
  color: #8b2a2a;
  font-size: 0.9rem;
  font-weight: 600;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.testimonial-card {
  background: var(--light-bg);
  border-left: 4px solid var(--gold);
  padding: 1.5rem;
  border-radius: 6px;
}

.testimonial-card p {
  font-style: italic;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-card .author {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-card .location {
  font-size: 0.8rem;
  color: #888;
}

/* -----------------------------------------------------------------------------
   14. CTA Band
   ----------------------------------------------------------------------------- */
.cta-band {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}

.cta-band h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.cta-band p {
  font-size: 1rem;
  margin-bottom: 1.8rem;
  color: var(--muted);
}

.cta-band .btn {
  background: var(--accent);
  color: var(--dark);
}

.cta-band .btn:hover {
  background: #b88c10;
}

/* -----------------------------------------------------------------------------
   15. Footer
   ----------------------------------------------------------------------------- */
footer {
  background: var(--dark);
  color: #aaa;
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
}

footer a {
  color: var(--gold);
  text-decoration: none;
}

/* -----------------------------------------------------------------------------
   16. Guide Cards
   ----------------------------------------------------------------------------- */

/* Clickable guide card */
.guide-card {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.guide-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.13);
}

.guide-card .view-profile {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.guide-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}

.guide-avatar {
  background: linear-gradient(135deg, #2d2d2d, #555);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

/* When a photo is provided, it matches the emoji size and is hidden via JS */
.guide-avatar img {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.guide-card .guide-info {
  padding: 1.5rem;
}

.guide-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.guide-card .title {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.guide-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.guide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.guide-tags span {
  background: var(--light-bg);
  font-size: 0.78rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  color: var(--gray);
}

/* -----------------------------------------------------------------------------
   17. Rental Cards
   ----------------------------------------------------------------------------- */
.rentals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.rental-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.8rem;
}

.rental-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.rental-card .location-tag {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.rental-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.rental-note {
  font-size: 0.82rem;
  color: #888;
}

.btn--card {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.4rem;
  font-size: 0.88rem;
}

.section-cta {
  text-align: center;
  margin-top: 2rem;
}

.text-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.text-link:hover {
  color: #b88c10;
}

.bike-list {
  list-style: none;
  margin-bottom: 1rem;
}

.bike-list li {
  font-size: 0.88rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
}

.bike-list li span {
  color: var(--dark);
  font-weight: 600;
}

/* -----------------------------------------------------------------------------
   18. Photography Page
   ----------------------------------------------------------------------------- */
.photo-hero {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.photo-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.photo-hero > *:not(#hero-carousel) {
  position: relative;
  z-index: 2;
}

.photo-hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 2px;
}

.photo-hero p {
  color: #ccc;
  margin-top: 0.5rem;
}

.photo-pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.photo-pkg-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.photo-pkg-card .pkg-banner {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.banner-snap,  .pkg-img--snap  { background: linear-gradient(135deg, #141414, #2a2a2a); }
.banner-full,  .pkg-img--full  { background: linear-gradient(135deg, #0a1020, #101828); }
.banner-print, .pkg-img--print { background: linear-gradient(135deg, #1a1000, #2a2000); }

.photo-pkg-card .pkg-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.photo-pkg-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.photo-pkg-card .badge {
  display: inline-block;
  background: #fef3cc;
  color: #8B6914;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
}

.photo-pkg-card .badge.blue {
  background: #1e1e1e;
  color: #e0e0e0;
}

.photo-pkg-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
}

.photo-pkg-card ul {
  list-style: none;
  margin: 1rem 0;
}

.photo-pkg-card ul li {
  font-size: 0.88rem;
  color: #444;
  padding: 0.25rem 0;
}

.photo-pkg-card ul li::before {
  content: '✓ ';
  color: var(--accent);
  font-weight: 700;
}

.photo-pkg-card .price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.photo-pkg-card .price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: #888;
}

/* How It Works */
.how-it-works {
  background: var(--dark);
  color: var(--white);
}

.how-it-works .section-title h2 {
  color: var(--white);
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
}

.step {
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 200px;
}

.step .num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
}

.step h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.step p {
  color: #aaa;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Gallery preview */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-tile {
  aspect-ratio: 1;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 3.5rem;
  background: var(--dark-alt);
  color: var(--muted);
}

.gallery-tile img {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-tile.has-photo img { display: block; }
.gallery-tile.has-photo .ph-icon,
.gallery-tile.has-photo .ph-hint { display: none; }

.gallery-tile .ph-hint {
  font-size: 0.65rem;
  text-align: center;
  padding: 0 0.5rem;
  word-break: break-all;
}

/* -----------------------------------------------------------------------------
   19. Guide Detail Pages
   ----------------------------------------------------------------------------- */
.guide-hero-back {
  background: var(--dark);
  padding: 2rem 2rem 0;
}

.guide-hero-back > div {
  max-width: 1100px;
  margin: 0 auto;
}

.guide-hero-section {
  background: var(--dark);
  padding: 2rem;
}

.content-constrain {
  max-width: 1100px;
  margin: 0 auto;
}

.guide-detail-hero {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.guide-detail-avatar {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3a3a3a, #666);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 4px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.guide-detail-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}

.guide-detail-hero-text h1 {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.guide-detail-hero-text .guide-role {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.guide-detail-hero-text .guide-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.guide-detail-hero-text .guide-stats span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.82rem;
  color: #ccc;
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.back-link:hover { color: var(--accent); }

/* Riding experience section */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.experience-block {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 2rem;
}

.experience-block h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.experience-block p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
}

.experience-block ul {
  list-style: none;
  margin-top: 0.5rem;
}

.experience-block ul li {
  font-size: 0.92rem;
  color: var(--gray);
  padding: 0.35rem 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.experience-block ul li::before {
  content: '▸';
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Current bike card */
.current-bike-card {
  background: var(--dark);
  color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.current-bike-card .bike-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.current-bike-card .bike-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.current-bike-card .bike-type {
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 0.8rem;
}

.current-bike-card p {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.6;
}

/* Past bikes carousel */
.bike-carousel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 1100px;
  margin: 0 auto;
}

.bike-carousel-track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  padding-bottom: 4px; /* prevent box-shadow clip */
}

.bike-carousel-track::-webkit-scrollbar {
  display: none;
}

.past-bike-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  /* Show 3 cards on desktop */
  flex: 0 0 calc(33.333% - 0.8rem);
  scroll-snap-align: start;
}

.past-bike-card .bike-emoji {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.past-bike-card .past-bike-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.past-bike-card .past-bike-years {
  font-size: 0.78rem;
  color: #888;
  margin-top: 0.1rem;
}

/* Prev / Next buttons */
.bike-carousel-btn {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  background: var(--white);
  color: var(--dark);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  line-height: 1;
}

.bike-carousel-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.bike-carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* Hide buttons on touch screens — swipe is used instead */
@media (hover: none) and (pointer: coarse) {
  .bike-carousel-btn { display: none; }
}

/* What I love section */
.love-section {
  background: linear-gradient(135deg, var(--dark), #2e2e2e);
  color: var(--white);
}

.love-section .section-title h2 {
  color: var(--white);
}

.love-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.love-quote blockquote {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
  color: #ddd;
  border-left: 4px solid var(--gold);
  padding-left: 2rem;
  text-align: left;
  margin-bottom: 2rem;
}

.love-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.love-highlights .highlight {
  background: rgba(226,176,74,0.15);
  border: 1px solid rgba(226,176,74,0.3);
  color: var(--gold);
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-size: 0.88rem;
  font-weight: 600;
}

/* Photo grid — personal moments */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.photo-placeholder {
  aspect-ratio: 3/4;
  background: var(--light-bg);
  border: 2px dashed #ccc;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #aaa;
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

/* Image hidden by default; shown (and placeholder text hidden) once it loads */
.photo-placeholder img {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.photo-placeholder.has-photo img        { display: block; }
.photo-placeholder.has-photo .ph-icon,
.photo-placeholder.has-photo .ph-label,
.photo-placeholder.has-photo .ph-hint  { display: none; }
.photo-placeholder.has-photo           { border: none; background: transparent; padding: 0; }

.photo-placeholder .ph-icon {
  font-size: 2.5rem;
  opacity: 0.5;
}

.photo-placeholder .ph-label {
  font-weight: 600;
  color: #bbb;
}

.photo-placeholder .ph-hint {
  font-size: 0.75rem;
  color: #ccc;
}

/* Video placeholder */
.video-placeholder {
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: #111;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 2px dashed #444;
}

.video-placeholder .play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(192,57,43,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  padding-left: 4px; /* optical centre for triangle */
}

.video-placeholder .video-label {
  color: #777;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.video-placeholder .video-hint {
  color: #555;
  font-size: 0.78rem;
  text-align: center;
}

/* -----------------------------------------------------------------------------
   20. Skeleton Loading
   ----------------------------------------------------------------------------- */
@keyframes skeleton-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

.skeleton-tile {
  background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite linear;
  border-radius: 8px;
}

/* -----------------------------------------------------------------------------
   21. Nav Book Button & Cart Badge
   ----------------------------------------------------------------------------- */
.nav-book-btn {
  background: var(--accent) !important;
  color: var(--dark) !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  position: relative;
  transition: background 0.2s !important;
}

.nav-book-btn:hover {
  background: #b88c10 !important;
  color: var(--dark) !important;
}

.cart-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  background: #c0392b;
  color: #fff;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  font-size: 0.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* In-cart / added button state */
.btn-in-cart {
  background: #e8e8e8 !important;
  color: var(--gray) !important;
  cursor: default;
  border: none;
}

/* Two-button row in photo add-on cards */
.price-row-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

/* -----------------------------------------------------------------------------
   22. Booking Page
   ----------------------------------------------------------------------------- */
.booking-section {
  padding: 4rem 2rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.booking-col-title {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
}

.booking-add-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.booking-add-link:hover { color: #b88c10; }

/* Cart items */
.cart-items {
  display: flex;
  flex-direction: column;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #ebebeb;
}

.cart-item-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.cart-item-info { flex: 1; }

.cart-item-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.cart-item-type {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.cart-item-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}

.cart-remove-btn {
  background: none;
  border: none;
  color: #bbb;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.cart-remove-btn:hover {
  color: #c0392b;
  background: #fdf0f0;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 600;
}

.cart-total-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
}

/* Empty cart */
.cart-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  background: var(--light-bg);
  border-radius: 10px;
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 0.8rem;
}

.cart-empty p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

/* -----------------------------------------------------------------------------
   23. Riding Stories
   ----------------------------------------------------------------------------- */

/* Featured story */
.story-featured {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0,0,0,0.12);
}

.story-featured-banner {
  height: 280px;
  background: linear-gradient(160deg, #0a0e1a 0%, #1a1020 50%, #0e180e 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.story-featured-label {
  background: var(--accent);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 4px;
}

.story-featured-body {
  background: var(--white);
  padding: 2.5rem;
}

.story-featured-body h2 {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.25;
  margin: 0.8rem 0 0.6rem;
}

/* Story tags */
.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.story-tag {
  background: rgba(212, 165, 32, 0.12);
  border: 1px solid rgba(212, 165, 32, 0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
}

/* Meta line */
.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.story-dot { color: #ccc; }
.story-author { font-weight: 700; color: var(--dark); }
.story-route-label { color: var(--accent); font-weight: 600; font-size: 0.82rem; }

/* Body copy */
.story-body p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 1.1rem;
}

.story-body p:last-child { margin-bottom: 0; }

/* Story grid */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.story-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.13);
}

/* Moody dark gradient banners — cycle across cards */
.story-card:nth-child(3n+1) .story-card-banner { background: linear-gradient(135deg, #0a0e1a, #141c2e); }
.story-card:nth-child(3n+2) .story-card-banner { background: linear-gradient(135deg, #0a1a0a, #101f10); }
.story-card:nth-child(3n+3) .story-card-banner { background: linear-gradient(135deg, #1a0e00, #251500); }

.story-card-banner {
  height: 150px;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

.story-card-body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.story-card-body .story-route-label {
  display: block;
  margin-bottom: 0.4rem;
}

.story-card-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.story-card-body .story-meta {
  margin-bottom: 1.1rem;
}

.story-card-body .story-body {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.story-read-more {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.story-card-body .story-body p {
  font-size: 0.88rem;
}

/* Story submission form */
.story-form {
  max-width: 680px;
  margin: 0 auto;
}

/* -----------------------------------------------------------------------------
   24. Footer links
   ----------------------------------------------------------------------------- */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

/* -----------------------------------------------------------------------------
   25. Back-to-top button
   ----------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 90;
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: #b88c10; }

/* -----------------------------------------------------------------------------
   26. Mobile cart FAB
   ----------------------------------------------------------------------------- */
.mobile-cart-fab {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: var(--accent);
  color: var(--dark);
  border-radius: 50px;
  padding: 0.65rem 1.1rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 90;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
/* Only show on mobile */
@media (min-width: 769px) {
  .mobile-cart-fab { display: none !important; }
}
.mobile-cart-count {
  background: #c0392b;
  color: white;
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 0.65rem;
  display: flex; align-items: center; justify-content: center;
}

/* -----------------------------------------------------------------------------
   27. Lightbox
   ----------------------------------------------------------------------------- */
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 500;
  display: none; align-items: center; justify-content: center;
  cursor: zoom-out;
}
.lightbox-overlay.active { display: flex; }
.lightbox-img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain; border-radius: 4px; cursor: default;
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: white; font-size: 2.5rem; cursor: pointer;
  background: none; border: none; line-height: 1; opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

/* -----------------------------------------------------------------------------
   Coming soon modal
   ----------------------------------------------------------------------------- */
.coming-soon-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 600;
  display: none; align-items: center; justify-content: center;
  padding: 1rem;
}
.coming-soon-overlay.active { display: flex; }
.coming-soon-modal {
  position: relative;
  background: var(--dark, #1a1a1a);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 3rem 2.5rem 2.5rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
}
.coming-soon-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none;
  color: rgba(255,255,255,0.5); font-size: 1.8rem;
  cursor: pointer; line-height: 1; padding: 0.25rem 0.5rem;
  transition: color 0.2s;
}
.coming-soon-close:hover { color: white; }
.coming-soon-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.coming-soon-modal h2 { font-size: 1.4rem; margin-bottom: 0.75rem; color: white; }
.coming-soon-modal p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* -----------------------------------------------------------------------------
   28. Hero pricing signal, badges & CTAs
   ----------------------------------------------------------------------------- */
.hero-pricing {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin: 0 0 1.5rem;
  letter-spacing: 0.5px;
}
.hero-pricing strong { color: var(--gold); font-weight: 700; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 0 0 1.2rem;
}
.hero-badges span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* -----------------------------------------------------------------------------
   34. How It Works
   ----------------------------------------------------------------------------- */
.hiw-section { background: var(--dark); color: var(--white); }
.hiw-section .section-title h2 { color: var(--white); }
.hiw-section .section-title p   { color: rgba(255,255,255,0.65); }

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* connector line between steps */
.hiw-steps::before {
  content: '';
  position: absolute;
  top: 2.4rem;
  left: calc(16.6% + 1rem);
  right: calc(16.6% + 1rem);
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--accent));
  opacity: 0.3;
  pointer-events: none;
}

.hiw-step {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.hiw-number {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  position: relative;
  z-index: 1;
}

.hiw-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.hiw-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hiw-step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .hiw-steps { grid-template-columns: 1fr; }
  .hiw-steps::before { display: none; }
}

/* -----------------------------------------------------------------------------
   29. Package itinerary
   ----------------------------------------------------------------------------- */
.pkg-itinerary {
  margin: 1rem 0;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
}
.pkg-itinerary summary {
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pkg-itinerary summary::-webkit-details-marker { display: none; }
.pkg-itinerary summary::after { content: '▼'; font-size: 0.7rem; }
.pkg-itinerary[open] summary::after { content: '▲'; }
.pkg-itinerary summary:hover { background: var(--light-bg); }
.itinerary-list {
  list-style: none;
  margin: 0; padding: 0.5rem 1rem 1rem;
  border-top: 1px solid #e8e8e8;
}
.itinerary-list li {
  display: flex;
  gap: 1rem;
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--gray);
  border-bottom: 1px solid #f5f5f5;
}
.itinerary-list li:last-child { border-bottom: none; }
.i-time {
  font-weight: 700;
  color: var(--dark);
  min-width: 42px;
  flex-shrink: 0;
}

/* -----------------------------------------------------------------------------
   30. Package availability urgency signal
   ----------------------------------------------------------------------------- */
.pkg-availability {
  font-size: 0.82rem;
  font-weight: 600;
  color: #8B6914;
  background: #fef3cc;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  margin: 0.8rem 0;
  display: inline-block;
}

/* -----------------------------------------------------------------------------
   31. Contact page
   ----------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.contact-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
}
.contact-card .icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.contact-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.contact-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin-bottom: 0.8rem; }
.contact-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}
.contact-link:hover { color: #b88c10; }
.contact-form { max-width: 680px; margin: 0 auto; }

/* -----------------------------------------------------------------------------
   32. FAQ page
   ----------------------------------------------------------------------------- */
.faq-section { max-width: 800px; margin: 0 auto; }
.faq-category { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin: 2rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--accent); }
.faq-item { border: 1px solid #e8e8e8; border-radius: 6px; margin-bottom: 0.6rem; overflow: hidden; }
.faq-question { padding: 1rem 1.2rem; font-size: 0.95rem; font-weight: 600; color: var(--dark); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; font-size: 1.2rem; color: var(--accent); }
.faq-item[open] .faq-question::after { content: '−'; }
.faq-question:hover { background: var(--light-bg); }
.faq-answer { padding: 0 1.2rem 1rem; font-size: 0.92rem; color: var(--gray); line-height: 1.75; border-top: 1px solid #e8e8e8; }
.faq-answer p { margin-top: 0.8rem; }
.faq-answer a { color: var(--accent); }

/* -----------------------------------------------------------------------------
   33. Currency Selector
   ----------------------------------------------------------------------------- */
.nav-currency-item {
  display: flex;
  align-items: center;
}

.currency-select {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  border-radius: 4px;
  padding: 0.3rem 0.4rem;
  font-size: 0.78rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: border-color 0.2s;
  -webkit-appearance: auto;
  appearance: auto;
}

.currency-select:hover,
.currency-select:focus {
  border-color: var(--accent);
  outline: none;
}

.currency-select option {
  background: var(--dark);
  color: var(--white);
}

/* -----------------------------------------------------------------------------
   22. Responsive
   ----------------------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav */
  .nav-toggle {
    display: flex;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    z-index: 99;
  }

  nav ul.nav-menu--open {
    display: flex;
  }

  nav ul li a {
    display: block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }

  .nav-currency-item {
    padding: 0.5rem 2rem;
  }

  .currency-select {
    width: 100%;
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  /* Typography — handled by clamp() on .hero h1; no override needed */

  /* Package cards */
  .package-full-card { grid-template-columns: 1fr; }
  .package-full-card ul { grid-template-columns: 1fr; }

  /* Bike carousel — 1 card on mobile */
  .past-bike-card { flex: 0 0 calc(100% - 0px); }

  /* Testimonial form */
  .t-form-row { grid-template-columns: 1fr; }
  .t-form-footer { flex-direction: column; align-items: flex-start; }
  .t-btn { display: none; }

  /* Guides list — full width single column on mobile */
  .guides-grid { grid-template-columns: 1fr; }

  /* Booking page */
  .booking-layout { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Riding stories */
  .stories-grid { grid-template-columns: 1fr; }
  .story-featured-banner { height: 180px; }
  .story-featured-body { padding: 1.5rem; }
  .story-featured-body h2 { font-size: 1.35rem; }

  /* Guide detail */
  .guide-detail-hero { flex-direction: column; text-align: center; gap: 1.5rem; }
  .guide-detail-hero-text .guide-stats { justify-content: center; }
  .guide-detail-hero-text h1 { font-size: 1.8rem; }
  .experience-grid { grid-template-columns: 1fr; }
  .current-bike-card { flex-direction: column; text-align: center; }
  .love-quote blockquote { font-size: 1.05rem; padding-left: 1.2rem; }
}
