:root {
  --gold: #c9a646;
  --sand: #f7f4ef;
  --charcoal: #121212;
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  background-color: var(--sand);
  color: var(--charcoal);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

header {
  position: relative;
  width: 100%;
  max-width: 100%;
  z-index: 10;
  background: rgba(247, 244, 239, 0.95);
  border-bottom: 1px solid rgba(201, 166, 70, 0.2);
  overflow-x: hidden;
}

@supports ((-webkit-backdrop-filter: blur(20px)) or (backdrop-filter: blur(20px))) {
  header {
    -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(247, 244, 239, 0.8);
  }
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4vw;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--charcoal);
}

.logo-icon img {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: center;
}

.logo-wordmark-primary {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.18em;
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 600;
}

.logo-wordmark-tagline {
  font-family: "Montserrat", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.logo-mobile {
  display: none;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  will-change: transform, opacity;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.2rem;
  color: inherit;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--charcoal);
  cursor: pointer;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 992px) {
  .nav-shell {
    position: relative;
    z-index: 3;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    color: var(--charcoal);
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #f7f4ef;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.2s ease;
    z-index: 1000;
    overflow-y: auto;
    pointer-events: none;
    visibility: hidden;
  }

  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .logo-mobile {
    display: inline-flex;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 0.18em;
  }

  .nav-toggle.open {
    position: fixed;
    right: 1.25rem;
    top: 1.25rem;
    transform: none;
    z-index: 1001;
  }
}

@media (max-width: 600px) {
  .nav-shell {
    padding: 1rem 6vw;
  }
}


.hero {
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
  background-color: #1a1a1a;
  border-radius: 0;
  box-shadow: none;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero {
    height: 85vh;
    min-height: 85vh;
    max-height: 85vh;
    padding: 1rem;
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .hero.height-locked {
    height: var(--hero-height, 85vh) !important;
    min-height: var(--hero-height, 85vh) !important;
    max-height: var(--hero-height, 85vh) !important;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
  }

  .hero.height-locked .hero-bg {
  position: absolute;
    height: 100% !important;
    width: 100% !important;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  opacity: 0;
  animation: heroCrossfade 24s ease-in-out infinite;
  will-change: opacity;
  pointer-events: none;
  width: 100%;
  height: 100%;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-bg-1 {
  background-image: url("image/EBT1.jpg");
  animation-delay: 0s;
}

.hero-bg-2 {
  background-image: url("image/Lepord.jpg");
  animation-delay: 8s;
}

.hero-bg-3 {
  background-image: url("image/EBT4.jpg");
  animation-delay: 16s;
}

@keyframes heroCrossfade {
  0% {
    opacity: 0;
  }
  6%,
  33% {
    opacity: 1;
  }
  41%,
  100% {
    opacity: 0;
  }
}

.hero-shell {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  pointer-events: none;
  z-index: 3;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1rem 2rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-title {
  margin: 0;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-weight: 400;
  letter-spacing: 0.8em;
  font-size: clamp(2rem, 6vw, 4.4rem);
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  text-align: center;
  text-shadow:
    0 0 10px rgba(201, 166, 70, 0.3),
    0 0 20px rgba(201, 166, 70, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.3);
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: heroTitleGothic 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 0.3s;
  position: relative;
}

@keyframes heroTitleGothic {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .hero-title {
    animation: heroTitleGothicMobile 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 0.3s;
  }
}

@keyframes heroTitleGothicMobile {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-a {
  display: none;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 1.5rem 1rem;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-direction: column;
  }

  .hero-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
    letter-spacing: 0.4em;
    padding: 0;
    margin: 0;
    line-height: 1.15;
    text-shadow:
      0 0 6px rgba(201, 166, 70, 0.2),
      0 4px 16px rgba(0, 0, 0, 0.5),
      0 2px 8px rgba(0, 0, 0, 0.4);
    filter: drop-shadow(0 0 10px rgba(201, 166, 70, 0.15));
    width: 100%;
    text-align: center;
    flex-shrink: 0;
  }

  .hero-a {
    display: inline;
  }

  .hero-subtext {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 0;
    margin-top: auto;
    font-size: 0.8125rem;
    line-height: 1.6;
    padding: 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
    display: block;
    opacity: 1;
    animation: heroSubtextFadeMobile 1.2s ease forwards 0.8s;
  }
}

@keyframes heroSubtextFadeMobile {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtext {
  position: absolute;
  left: 50%;
  right: auto;
  top: auto;
  bottom: clamp(3.2rem, 7vw, 4.8rem);
  transform: translate(-50%, 0);
  margin: 0;
  opacity: 0;
  animation: heroSubtextFade 1.5s ease forwards 1s;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.5),
    0 1px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.02em;
  max-width: min(920px, 92vw);
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  display: block;
}

.ebike-section {
  background: #fff;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section-shell {
  width: min(1400px, 94vw);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  box-sizing: border-box;
}

.ebike-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.ebike-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding-top: 0;
  gap: 1.5rem;
}

.ebike-media img {
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: scale(1.1);
}

.rent-button {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(201, 166, 70, 0.3);
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.rent-button:hover {
  background: #b8943a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 166, 70, 0.4);
}

.rent-button:active {
  transform: translateY(0);
}

.ebike-content {
  display: flex;
  flex-direction: column;
  gap: clamp(0.875rem, 1.5vw, 1.25rem);
  padding-left: clamp(1rem, 3vw, 2rem);
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.section-title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--charcoal);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.section-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(18, 18, 18, 0.75);
  max-width: 520px;
}

.ebike-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.ebike-list li {
  position: relative;
  padding-left: 1.75rem;
  line-height: 1.65;
  color: rgba(18, 18, 18, 0.85);
  font-size: clamp(0.9rem, 1.1vw, 0.98rem);
}

.ebike-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  top: 0;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-items: center;
  align-items: start;
}

.included-image {
  background: var(--sand);
  border: 1px solid rgba(201, 166, 70, 0.08);
  border-radius: 14px;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  box-shadow: 0 2px 10px rgba(18, 18, 18, 0.05);
}

.included-item:hover .included-image {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(18, 18, 18, 0.1);
  border-color: rgba(201, 166, 70, 0.2);
}

.included-title {
  margin: 0.75rem 0 0 0;
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  text-align: center;
}

@media (max-width: 900px) {
  .ebike-grid {
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 6vw, 4rem);
  }

  .ebike-media {
    order: 2;
  }

  .ebike-media img {
    transform: scale(1);
    max-width: 600px;
    margin: 0 auto;
  }

  .rent-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .ebike-content {
    order: 1;
    padding-left: 0;
  }

  .included-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-subtext {
    font-size: 0.8125rem;
    line-height: 1.6;
    bottom: clamp(2rem, 6vw, 3.5rem);
    padding: 0 1.5rem;
  }

  .hero-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
  }

  .eyebrow {
    font-size: 0.7rem;
  }

  .tour-title {
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  }
}

@keyframes heroSubtextFade {
  0% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.included-items {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: 0;
  border-top: none;
}

.included-heading {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.included-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  position: relative;
}

.included-image {
  width: 100px;
  height: 100px;
  max-width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  transition: transform 0.3s ease;
  position: relative;
}

.included-image::before {
  display: none;
}

.included-item:hover .included-image {
  transform: scale(1.1);
}

.included-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.included-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.7rem, 0.95vw, 0.8rem);
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.03em;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.included-item:hover .included-title {
  color: var(--gold);
}

@media (max-width: 900px) {
  .included-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .included-image {
    width: 90px;
    height: 90px;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .included-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
  }

  .included-image {
    width: 80px;
    height: 80px;
    padding: 0;
  }

  .included-title {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .included-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .included-image {
    padding: 0.625rem;
  }
}

.tours-section {
  background: var(--sand);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.locations-section {
  background: var(--sand);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.locations-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  justify-content: center;
}

.location-btn {
  padding: 0.75rem 1.5rem;
  background: #fff;
  color: var(--charcoal);
  border: 2px solid rgba(18, 18, 18, 0.1);
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.location-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 166, 70, 0.2);
}

.location-btn.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201, 166, 70, 0.3);
}

.locations-tours-container {
  position: relative;
  min-height: 400px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.locations-grid .tour-card {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.locations-grid .tour-card.hidden {
  display: none;
}

.locations-grid .tour-card.fade-out {
  opacity: 0;
  transform: scale(0.95);
}

@media (max-width: 900px) {
  .locations-filter {
    gap: 0.5rem;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .locations-filter::-webkit-scrollbar {
    height: 4px;
  }

  .locations-filter::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
  }

  .location-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
    flex-shrink: 0;
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.25rem, 3vw, 2rem);
  }
}

@media (max-width: 600px) {
  .locations-section {
    padding: clamp(2rem, 4vw, 3rem) 0.75rem;
  }

  .locations-section .section-shell {
    padding: 0;
    max-width: 100%;
  }

  .locations-filter {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }

  .location-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.tour-card {
  background: #fff;
  border-radius: 28px;
  padding: 1rem;
  box-shadow: 0 20px 50px rgba(18, 18, 18, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(18, 18, 18, 0.16);
}

.tour-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(18, 18, 18, 0.12);
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.05);
}

.tour-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.875rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.5) 100%);
}

.tour-badges {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}

.tour-badge {
  background: rgba(255, 255, 255, 0.95);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.tour-favorite {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tour-favorite:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.tour-image-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.tour-image-info {
  flex: 1;
}

.tour-title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.tour-location {
  margin: 0.25rem 0 0 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.tour-button-overlay {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--charcoal);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.tour-button-overlay:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tour-price-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0;
  background: transparent;
  color: #fff;
  border-radius: 0;
  font-family: "Montserrat", sans-serif;
  box-shadow: none;
  backdrop-filter: none;
  white-space: nowrap;
}

.tour-price-pill .price-label {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.6);
  font-weight: 600;
}

.tour-price-pill .price-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.tour-price-pill .price-icon {
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.tour-price-pill .price-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
  fill: #fff;
  stroke: #fff;
  stroke-width: 1.5;
}

.tour-content {
  padding: 0.85rem 0.25rem 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.tour-details {
  display: flex;
  gap: 1rem;
  align-items: stretch;
}

.tour-stats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.tour-metrics {
  display: flex;
  gap: 1.25rem;
  padding: 0;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.metric-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
}

.metric-label {
  font-size: 0.7rem;
  color: rgba(18, 18, 18, 0.6);
  margin-top: 0.2rem;
}

.tour-level-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.tour-level {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  flex: 1;
}

.level-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
}

.level-bar {
  width: 100%;
  height: 6px;
  background: rgba(18, 18, 18, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.level-fill {
  height: 100%;
  border-radius: 3px;
}

.level-easy {
  width: 30%;
  background: #4caf50;
}

.level-moderate {
  width: 60%;
  background: #2196f3;
}

.level-hard {
  width: 90%;
  background: #f44336;
}

.tour-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}

.rating-star {
  color: #ffc107;
  font-size: 1rem;
}

.tour-map {
  flex: 0 0 38%;
  min-width: 120px;
  height: 88px;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.tour-map img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 16px;
}

.tour-summary {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(18, 18, 18, 0.65);
}


@media (max-width: 900px) {
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.25rem, 3vw, 2rem);
  }
}

@media (max-width: 600px) {
  .tours-section {
    padding: clamp(2rem, 4vw, 3rem) 0.75rem;
  }

  .tours-section .section-shell {
    padding: 0;
    max-width: 100%;
  }

  .section-title {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
  }

  .eyebrow {
    font-size: 0.68rem;
  }

  .tour-title {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
  }

  .tours-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .tour-card {
    padding: 1rem;
    border-radius: 20px;
  }

  .tour-content {
    padding: 1rem 0.5rem 0.5rem;
    gap: 1rem;
  }

  .tour-overlay {
    padding: 1rem;
  }

  .tour-image-content {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
  }

  .tour-button-overlay,
  .tour-price-pill {
    align-self: flex-end;
  }

  .tour-details {
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
  }

  .tour-stats {
    flex: 1;
    gap: 0.75rem;
  }

  .tour-metrics {
    display: flex;
    gap: 1rem;
    padding: 0;
  }

  .metric {
    align-items: flex-start;
    text-align: left;
  }

  .metric-value {
    font-size: 0.95rem;
  }

  .metric-label {
    font-size: 0.72rem;
  }

  .tour-level-rating {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .tour-map {
    flex: 0 0 28%;
    min-width: 80px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tour-map img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .tour-summary {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

  .tour-map img {
    width: 100%;
    height: 100%;
    max-width: 240px;
    object-fit: contain;
    margin: 0 auto;
  }

  .tour-summary {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .hero-title,
  .hero-subtext {
    animation: none !important;
    transition: none !important;
  }

  .hero-title,
  .hero-subtext {
    opacity: 1;
    transform: none;
  }

  .included-image {
    transition: none;
  }

  .tour-card,
  .tour-image img {
    transition: none;
  }
}

/* Booking Modal */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.booking-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s ease;
  z-index: 1;
}

.booking-modal.active .booking-modal-content {
  transform: scale(1);
}

.booking-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--charcoal);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.booking-modal-close:hover {
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.booking-iframe {
  width: 100%;
  height: 90vh;
  min-height: 600px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .booking-modal-content {
    width: 95%;
    max-height: 95vh;
    border-radius: 12px;
  }

  .booking-modal-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }

  .booking-iframe {
    height: 95vh;
    min-height: 500px;
  }
}

/* Offers Page Styles */
.offers-hero {
  background: var(--sand);
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.offers-intro {
  max-width: 700px;
  margin: 1.5rem auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(18, 18, 18, 0.75);
}

.calendar-section {
  background: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.custom-calendar-container {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(18, 18, 18, 0.1);
  padding: 2rem;
  overflow: hidden;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(18, 18, 18, 0.08);
}

.calendar-month-year {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--charcoal);
  font-weight: 600;
}

.calendar-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(18, 18, 18, 0.1);
  background: #fff;
  color: var(--charcoal);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
}

.calendar-nav-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
  transform: scale(1.1);
}

.calendar-grid-wrapper {
  width: 100%;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.weekday {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(18, 18, 18, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.calendar-day {
  aspect-ratio: 1;
  min-height: 100px;
  background: var(--sand);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  transition: all 0.3s ease;
}

.calendar-day.empty {
  background: transparent;
  border: none;
  cursor: default;
}

.calendar-day.today {
  border-color: var(--gold);
  background: rgba(201, 166, 70, 0.1);
}

.calendar-day.has-booking {
  background: linear-gradient(135deg, rgba(201, 166, 70, 0.15) 0%, rgba(201, 166, 70, 0.05) 100%);
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(201, 166, 70, 0.2);
}

.calendar-day.has-booking:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 166, 70, 0.3);
  border-color: var(--gold);
}

.day-number {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.calendar-day.has-booking .day-number {
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 700;
}

.booking-badge {
  background: linear-gradient(135deg, #f44336 0%, #e91e63 100%);
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  box-shadow: 0 2px 8px rgba(244, 67, 54, 0.3);
  line-height: 1.2;
}

.discount-percent {
  font-size: 0.7rem;
}

.discount-off {
  font-size: 0.55rem;
  opacity: 0.95;
}

.location-info {
  font-size: 0.7rem;
  color: var(--charcoal);
  font-weight: 600;
  text-align: center;
  margin: 0.25rem 0;
  line-height: 1.3;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-info {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.price-info .original-price {
  font-size: 0.7rem;
  color: rgba(18, 18, 18, 0.5);
  text-decoration: line-through;
}

.price-info .discount-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 900px) {
  .custom-calendar-container {
    padding: 1.5rem;
  }

  .calendar-day {
    min-height: 80px;
    padding: 0.5rem;
  }

  .location-info {
    font-size: 0.65rem;
  }

  .booking-badge {
    padding: 0.2rem 0.4rem;
    font-size: 0.6rem;
  }
}

@media (max-width: 600px) {
  .calendar-section {
    padding: clamp(2rem, 4vw, 3rem) 0.75rem;
  }

  .calendar-section .section-shell {
    padding: 0;
  }

  .custom-calendar-container {
    padding: 1rem;
    border-radius: 16px;
  }

  .calendar-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .calendar-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .calendar-weekdays {
    gap: 0.25rem;
    margin-bottom: 0.5rem;
  }

  .weekday {
    font-size: 0.7rem;
    padding: 0.4rem 0;
  }

  .calendar-grid {
    gap: 0.25rem;
  }

  .calendar-day {
    min-height: 70px;
    padding: 0.4rem;
    border-radius: 8px;
  }

  .day-number {
    font-size: 0.9rem;
  }

  .calendar-day.has-booking .day-number {
    font-size: 1rem;
  }

  .booking-badge {
    padding: 0.15rem 0.35rem;
    font-size: 0.55rem;
    margin: 0.15rem 0;
  }

  .location-info {
    font-size: 0.6rem;
    margin: 0.15rem 0;
  }

  .price-info {
    gap: 0.35rem;
    padding-top: 0.35rem;
  }

  .price-info .original-price {
    font-size: 0.65rem;
  }

  .price-info .discount-price {
    font-size: 0.75rem;
  }
}

.discount-days-section {
  background: var(--sand);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: rgba(18, 18, 18, 0.7);
  margin: 0.5rem 0 clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
}

.discount-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.discount-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(18, 18, 18, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.discount-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(18, 18, 18, 0.12);
  border-color: var(--gold);
}

.discount-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #f44336 0%, #e91e63 100%);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
  z-index: 2;
}

.discount-card-content {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.discount-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, #d4a853 100%);
  border-radius: 12px;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 12px rgba(201, 166, 70, 0.3);
}

.date-day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}

.date-month {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.date-year {
  font-size: 0.75rem;
  opacity: 0.9;
  margin-top: 0.25rem;
}

.discount-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.discount-location {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--charcoal);
  font-weight: 600;
  line-height: 1.3;
}

.discount-description {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(18, 18, 18, 0.7);
}

.discount-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

.original-price {
  font-size: 1rem;
  color: rgba(18, 18, 18, 0.5);
  text-decoration: line-through;
  font-weight: 500;
}

.discount-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
}

.discount-book-btn {
  margin-top: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(201, 166, 70, 0.3);
  width: 100%;
}

.discount-book-btn:hover {
  background: #b8943a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 166, 70, 0.4);
}

.discount-book-btn:active {
  transform: translateY(0);
}

.discount-info-box {
  background: linear-gradient(135deg, rgba(201, 166, 70, 0.1) 0%, rgba(201, 166, 70, 0.05) 100%);
  border: 2px solid rgba(201, 166, 70, 0.2);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}

.info-icon {
  font-size: 2.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.info-content h3 {
  margin: 0 0 0.75rem 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: var(--charcoal);
  font-weight: 600;
}

.info-content p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(18, 18, 18, 0.75);
}

@media (max-width: 900px) {
  .calendar-wrapper {
    padding-bottom: 100%;
  }

  .discount-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .discount-card-content {
    flex-direction: column;
    gap: 1.25rem;
  }

  .discount-date {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem;
  }

  .date-day {
    font-size: 2.5rem;
  }

  .discount-info-box {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }

  .info-icon {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .offers-hero {
    padding: clamp(2.5rem, 6vw, 4rem) 0.75rem clamp(2rem, 4vw, 3rem);
  }

  .offers-hero .section-shell {
    padding: 0;
  }

  .calendar-section {
    padding: clamp(2rem, 4vw, 3rem) 0.75rem;
  }

  .calendar-section .section-shell {
    padding: 0;
  }

  .calendar-wrapper {
    padding-bottom: 120%;
    border-radius: 12px;
  }

  .discount-days-section {
    padding: clamp(2rem, 4vw, 3rem) 0.75rem;
  }

  .discount-days-section .section-shell {
    padding: 0;
  }

  .discount-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .discount-card {
    padding: 1.25rem;
  }

  .discount-badge {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.7rem;
  }

  .discount-date {
    padding: 1rem;
  }

  .date-day {
    font-size: 2rem;
  }

  .discount-price {
    font-size: 1.25rem;
  }

  .discount-info-box {
    padding: 1.25rem;
  }
}
