/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--rrr-white);
  color: var(--rrr-black);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }

/* ---------- Design tokens ---------- */
:root {
  --rrr-cream: #FDFAE7;
  --rrr-black: #0D0B08;
  --rrr-gold: #B8934A;
  --rrr-gold-light: #D4B573;
  --rrr-gold-dark: #8C6B31;
  --rrr-white: #FDFBF5;
  --font-serif: 'Bodoni Moda', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --body-cream: #fdf6ee;
}
@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1120px;
    }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  background: linear-gradient(115deg, #1a1108 0%, #6b4a1f 40%, #3a6b8a 75%, #4a90b8 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8,6,3,0.85) 0%, rgba(8,6,3,0.55) 30%, rgba(8,6,3,0.15) 55%, transparent 70%);
  z-index: 1;
}

.hero .container-fluid {
  position: relative;
  z-index: 2;
  padding-right: 40px;
  padding-left: 40px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--rrr-gold-light);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 58px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-heading .line-white { color: var(--rrr-white); display: block; }
.hero-heading .line-gold { color: var(--rrr-gold-light); display: block; }

.hero-copy {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}

.btn-primary-gold,
.btn-outline-white {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px 34px;
  border-radius: 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.btn-primary-gold {
  background: var(--rrr-gold-dark);
  color: var(--rrr-white);
  border: none;
}

.btn-outline-white {
  background: transparent;
  color: var(--rrr-white);
  border: 1.5px solid var(--rrr-white);
}

.btn-primary-gold:hover,
.btn-outline-white:hover {
  opacity: 0.85;
  color: inherit;
}

@media (max-width: 768px) {
  .hero-heading { font-size: 38px; }
}

/* ---------- About the tour ---------- */
.about-container{
  padding: ;
}
.about-tour {
  position: relative;
  padding: 100px 0;
  background: var(--rrr-white);
}

.about-tour-eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--rrr-gold-dark);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-tour-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 34px;
  color: var(--rrr-black);
  line-height: 1.35;
  margin-bottom: 24px;
}

.about-paragraph {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.85;
  color: #5a5a5a;
  margin-bottom: 22px;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rrr-gold-dark);
  text-decoration: underline;
  text-underline-offset: 5px;
  margin-top: 8px;
}

.about-link:hover { opacity: 0.75; }

/* Photo collage — masonry, overlaps hero bottom edge via negative margin */
.about-collage {
  margin-top: -165px;
  position: relative;
  z-index: 3;
}

.collage-col-offset {
  margin-top: 40px;
}

.collage-img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.collage-img-1 { height: 340px; }
.collage-img-2 { height: 270px; }
.collage-img-3 { height: 180px; margin-top:45px; }
.collage-img-4 { height: 360px; }

.must-see-card {
  background: var(--rrr-white);
  border-left: 3px solid var(--rrr-gold-dark);
  padding: 22px 26px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.must-see-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rrr-gold-dark);
  margin-bottom: 10px;
}

.must-see-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.65;
  color: var(--rrr-black);
}

@media (max-width: 991px) {
  .about-tour { padding-top: 60px; }
  .about-collage { margin-top: 40px; }
  .about-copy { margin-bottom: 40px; }
}

/* ---------- Site footer ---------- */
.site-footer-main {
  background: var(--rrr-black);
  padding: 70px 0 30px;
}

.footer-logo-mark .logo-letters {
  display: inline-block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 30px;
  color: var(--rrr-gold-light);
  letter-spacing: 2px;
  border-top: 2px solid var(--rrr-gold);
  border-bottom: 2px solid var(--rrr-gold);
  padding: 6px 18px;
  margin-bottom: 10px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--rrr-white);
  margin-bottom: 24px;
}

.footer-description {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 28.8px;
  color: #FFFFFF;
  max-width: 550px;
  margin: 0 auto 26px;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--rrr-gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rrr-gold-light);
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-socials a:hover {
  background: var(--rrr-gold-dark);
  color: var(--rrr-black);
}

.footer-socials svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer-divider {
  border: none;
  border-top:2px solid #FFFFFF;
  margin: 36px 0 26px;
}

.footer-nav-links {
  gap: 30px;
  margin-bottom: 24px;
}

.footer-nav-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav-links a:hover {
  color: var(--rrr-gold-light);
}

.footer-copyright {
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

/* ---------- Seven Icons of Chicago ---------- */
.seven-icons {
  background: #D8E278;
  padding: 90px 40px 0px;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #3A3D1E;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.seven-icons-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 34px;
  color: #1E2010;
}

.seven-icons-intro {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: #3A3D1E;
  margin-bottom: 10px;
}

.seven-icons .about-link {
  color: var(--rrr-gold-dark);
}

.icons-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
}

.icon-col img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
  object-position: left;
}

.icon-track {
  position: relative;
  padding-left: 18px;
  border-left: 2px dashed rgba(30, 32, 16, 0.35);
  min-height: 420px;
}

.icon-dot {
  position: absolute;
  left: -8px;
  top: -3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #E8562B;
}
.icon-body{
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding-top: 50px;
}

.icon-number {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 63px;
  color: #1E2010;
  line-height: 1;
  margin-bottom: 14px;
}

.icon-location {
  font-family: var(--font-sans);
  font-size: 11px;
  color: #4a4d2c;
  margin-bottom: 4px;
}

.icon-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 17px;
  color: #1E2010;
  margin-bottom: 10px;
  line-height: 1.3;
}

.icon-desc {
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.6;
  color: #4a4d2c;
}

@media (max-width: 1200px) {
  .icons-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
  .icons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .icons-grid { grid-template-columns: 1fr; }
}

/* ---------- Video + intro copy ---------- */
.video-intro {
  background: var(--rrr-white);
  padding: 100px 0;
}

.video-frame {
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  background: var(--rrr-black);
}

.video-intro-paragraph {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.85;
  color: #5a5a5a;
  margin-bottom: 24px;
}

.fleet-section {
  background: var(--rrr-white);
  padding: 100px 40px;
}

.fleet-eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--rrr-gold-dark);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.fleet-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 34px;
  color: var(--rrr-black);
  margin-bottom: 34px;
}

.fleet-vehicle {
  margin-bottom: 30px;
}

.fleet-vehicle-name {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rrr-black);
  margin-bottom: 8px;
}

.fleet-vehicle-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.7;
  color: #6a6a6a;
  margin-bottom: 14px;
}

.fleet-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 13px;
}

.fleet-table td {
  padding: 7px 0;
  border-bottom: 1px solid #ececec;
}

.fleet-table td:first-child {
  color: #999;
  width: 110px;
}

.fleet-table td:last-child {
  color: var(--rrr-black);
  font-weight: 500;
}

.fleet-amenities {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  font-size: 20px;
  color: var(--rrr-gold-dark);
}

.fleet-image-wrap img {
  width: 100%;
  display: block;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  background: #F5F4F1;
  padding: 100px 40px;
}

.testimonial-container{
  padding: 0 100px;
}

.testimonials-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 30px;
  color: var(--rrr-black);
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-card {
  background: var(--rrr-white);
  padding: 30px 26px;
  margin: 0 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  text-align: left;
}

.testimonial-card .stars {
  color: var(--rrr-gold-dark);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-quote {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.75;
  color: #5a5a5a;
  margin-bottom: 18px;
  min-height: 90px;
}

.testimonial-name {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--rrr-black);
  margin-bottom: 2px;
}

.testimonial-location {
  font-family: var(--font-sans);
  font-size: 11px;
  color: #999;
}

.testimonials-slider .slick-prev,
.testimonials-slider .slick-next {
  width: 40px;
  height: 40px;
  background: var(--rrr-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 50%;
  z-index: 2;
}

.testimonials-slider .slick-prev { left: -50px; }
.testimonials-slider .slick-next { right: -50px; }

.testimonials-slider .slick-prev::before,
.testimonials-slider .slick-next::before {
  color: var(--rrr-gold-dark);
  font-family: var(--font-sans);
  font-size: 16px;
  opacity: 1;
}

/* ---------- Explore Chicago CTA ---------- */
.explore-cta {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  width: 90%;
  margin: auto;
  margin-bottom: 50px;
}

.explore-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.explore-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,8,5,0.75) 0%, rgba(10,8,5,0.35) 45%, transparent 70%);
  z-index: 1;
}

.explore-cta .container {
  position: relative;
  z-index: 2;
}

.explore-cta-content {
  max-width: 480px;
}

.explore-cta-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 32px;
  color: var(--rrr-white);
  margin-bottom: 16px;
}

.explore-cta-copy {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 26px;
}

/* ---------- Page hero (FAQ, and other inner pages) ---------- */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,10,25,0.55) 0%, rgba(20,10,25,0.75) 100%);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 64px;
  letter-spacing: 4px;
  color: var(--rrr-white);
  margin-bottom: 20px;
}

.page-hero-subtitle {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 34px;
}

.faq-pill {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 30px;
  border: none;
  background: var(--rrr-white);
  color: var(--rrr-black);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-pill.is-active {
  background: var(--rrr-gold-light);
  color: var(--rrr-black);
}

.faq-pill:hover {
  opacity: 0.9;
}

@media (max-width: 600px) {
  .page-hero-title { font-size: 40px; letter-spacing: 2px; }
  .faq-pill { font-size: 12px; padding: 10px 18px; }
}


/* ---------- FAQ list / accordion ---------- */
.faq-list {
  padding: 60px 40px 120px;
  background: var(--rrr-white);
}

.faq-list-header {
  margin-bottom: 30px;
}

.faq-list-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--rrr-gold-dark);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.faq-list-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 32px;
  color: var(--rrr-black);
}

.faq-accordion .faq-item {
  margin-bottom: 14px;
}

.faq-accordion .accordion-item {
  border: 1px solid #dddad2;
  border-radius: 4px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  text-align: left;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--rrr-black);
  background: none;
  border: none;
  box-shadow: none;
  padding: 22px 24px;
  cursor: pointer;
}

.faq-accordion .accordion-question {
  flex: 1;
  font-size: 26px;
}

.faq-accordion .accordion-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 5px;
  background: var(--rrr-black);
  color: #F5BC24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.faq-accordion .accordion-body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  color: #6a6a6a;
  padding: 0 24px 22px;
}

@media (max-width: 600px) {
  .faq-list-heading { font-size: 26px; }
  .faq-accordion .accordion-button { font-size: 14px; padding: 18px 18px; }
  .faq-accordion .accordion-body { font-size: 12.5px; padding: 0 18px 18px; }
}

@media (max-width: 991px) {
  .fleet-image-wrap { margin-top: 40px; }
}

/* ---------- Gallery page ---------- */
.gallery-hero {
  position: relative;
  background: #FDF6EE;
  padding: 80px 0 0;
  overflow: hidden;
}

.gallery-hero-heading {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rrr-black);
  margin-bottom: 30px;
}

.gallery-hero-heading .text-gold {
  color: var(--rrr-gold-dark);
}

.gallery-fan {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.fan-img {
  width: 180px;
  height: 130px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  flex-shrink: 0;
}





.gallery-grid-section {
  background: #FDF6EE;
  padding: 0 0 90px;
}

.gallery-grid-card {
  background: #FDF6EE;
  padding: 0px 0 0;
  position: relative;
  z-index: 2;
  margin-top: -40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 34px;
}

.gallery-grid img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  /* border-radius: 6px; */
  object-position: top left;
}

.gallery-grid .gallery-span-2 {
  grid-column: span 2;
}

.gallery-load-more {
  padding: 12px 30px;
}

@media (max-width: 768px) {
  .fan-img { width: 110px; height: 85px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-span-2 { grid-column: span 1; }
}

/* ---------- Tours page hero (collage background image) ---------- */
.tours-hero {
  position: relative;
  background: var(--rrr-white);
  padding: 30px 100px 0;
}

.tours-hero-bg {
  width: 100%;
  height: auto;
  display: block;
}

.tours-hero-text {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.tours-hero-text h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 42px;
  line-height: 1.15;
  margin: 0;
}

.tours-hero-text .line-black {
  display: block;
  color: var(--rrr-black);
  letter-spacing: 3px;
}

.tours-hero-text .line-gold {
  display: block;
  color: var(--rrr-gold-light);
  letter-spacing: 3px;
}

@media (max-width: 768px) {
  .tours-hero-text h1 { font-size: 24px; }
}

@media (max-width: 480px) {
  .tours-hero-text h1 { font-size: 18px; }
}

/* ---------- Itinerary + map section ---------- */
.itinerary-section {
  padding: 90px 0;
  background: var(--rrr-white);
}

.section-eyebrow-dark {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--rrr-gold-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.itinerary-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 30px;
  color: var(--rrr-black);
  margin-bottom: 36px;
}

.itinerary-item {
  display: flex;
  gap: 24px;
}

.itinerary-time {
  width: 90px;
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--rrr-gold-dark);
  text-transform: uppercase;
  padding-top: 2px;
}

.itinerary-track {
  flex: 1;
  border-left: 1px dashed #d8d8d8;
  padding: 0 0 28px 22px;
}

.itinerary-item:last-child .itinerary-track {
  border-left: 1px dashed transparent;
  padding-bottom: 0;
}

.itinerary-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
}

.itinerary-title {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--rrr-black);
  margin: 0;
}

.itinerary-badge {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--rrr-white);
  padding: 3px 9px;
  border-radius: 3px;
  white-space: nowrap;
}

.badge-free { background: #3F9142; }
.badge-prebook { background: #E0921E; }
.badge-citypass { background: #E24B33; }

.itinerary-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.75;
  color: #6a6a6a;
  margin: 0;
}

.itinerary-map img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.incl-excl-heading {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--rrr-black);
  margin-bottom: 10px;
}

.incl-excl-copy {
  font-family: var(--font-sans);
  font-size: 12.5px;
  line-height: 1.75;
  color: #6a6a6a;
  margin-bottom: 10px;
}

.incl-excl-readmore {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--rrr-black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 991px) {
  .itinerary-map { margin-top: 50px; }
}

/* ---------- Policy page ---------- */
.policy-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.policy-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.policy-hero .container {
  position: relative;
  z-index: 2;
}

.policy-hero-content {
  max-width: 520px;
}

.policy-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 34px;
  color: var(--rrr-black);
  margin-bottom: 26px;
}

.policy-block {
  margin-bottom: 22px;
}

.policy-block-title {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--rrr-black);
  margin-bottom: 8px;
}

.policy-block-text {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.75;
  color: #5a5a5a;
}

@media (max-width: 768px) {
  .policy-hero { min-height: auto; padding: 60px 0; }
  .policy-heading { font-size: 26px; }
}

/* ---------- Booking widget ---------- */
.booking-section {
  background: #F2F2F4;
  padding: 100px 40px;
}

.booking-header {
  text-align: center;
  margin-bottom: 50px;
}

.booking-header .section-eyebrow-dark { margin-bottom: 10px; }

.booking-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 34px;
  color: var(--rrr-black);
}

.booking-card {
  background: #fff;
  /* border-radius: 6px; */
  padding: 26px 28px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  border: 1px solid #C4C7C7;
}

.form-card{
      background: transparent !important;
    /* border-radius: 6px; */
    padding: 0px 28px 26px;
    box-shadow: unset !important;
    border: none !important;
}

.form-card .booking-field-label {
  display: block;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 10px;
}

.booking-card + .booking-card { margin-top: 24px; }

.booking-field-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #000000;
}

.time-slot .booking-field-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #C4C7C7;
}

/* --- Calendar --- */
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #C4C7C7;
}

.cal-head .booking-field-label { margin-bottom: 0; }

.cal-month-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--rrr-black);
  text-transform: uppercase;
}

.cal-nav-btn {
  width: 22px;
  height: 22px;
  border: none;
  background: none;
  color: var(--rrr-gold-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.cal-nav-btn:hover { opacity: 0.6; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-weekday {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: #b3b0a8;
  padding-bottom: 10px;
}

.cal-day {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 13px;
  color: #1A1C1C;
  background: none;
  border: 1px solid #C4C7C7;
  /* border-radius: 50%; */
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.cal-day:hover:not(.is-disabled):not(.is-empty) {
  background: #F0EBDD;
}

.cal-day.is-empty { cursor: default; 
border: none !important;
}

.cal-day.is-disabled {
      color: #747878;
    cursor: not-allowed;
    /* text-decoration: line-through; */
    text-decoration-color: #e2dfd6;
    /* border: 1px solid #747878; */
    border-radius: 0;
    opacity: 0.6;
    border: none !important;
}

.cal-day.is-selected {
  background: var(--rrr-gold-dark);
  color: var(--rrr-white);
  font-weight: 600;
}

.cal-note {
  font-family: var(--font-sans);
    /* font-style: italic; */
    font-size: 12px;
    color: #000;
    margin-top: 18px;
    font-weight: 700;
    margin-bottom: 0;
}

/* --- Time slot --- */
.time-slot-btn {
  display: inline-flex;
  align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #775A19;
    background: transparent;
    border: 1.5px solid var(--rrr-gold-dark);
    /* border-radius: 4px; */
    padding: 10px 22px;
    cursor: pointer;
    width: 50%;
}

/* --- Terms checkbox --- */
.booking-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
}

.booking-terms input[type="checkbox"] {
  margin-top: 2px;
  width: 15px;
  height: 15px;
  accent-color: var(--rrr-gold-dark);
  cursor: pointer;
  flex-shrink: 0;
}

.booking-terms label {
  font-family: var(--font-sans);
  font-size: 12px;
  color: #6a6a6a;
  cursor: pointer;
  
}

.booking-terms a {
  color: var(--rrr-black);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --- Form fields --- */
.booking-form-group { margin-bottom: 22px; }

.booking-input {
      width: 100%;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--rrr-black);
    /* background: var(--rrr-white); */
    border: 1px solid #000;
    /* border-radius: 4px; */
    padding: 13px 16px;
}

.booking-input:focus {
  outline: none;
  border-color: var(--rrr-gold-dark);
}

.booking-input::placeholder { color: #b8b5ac; }

/* --- Guest selector --- */
.guest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.guest-card-name-price-age{
  display: flex;
  justify-content: space-between;
}
.guest-card-name-price{
  display: flex;
  flex-direction: column-reverse;
  /* gap: 5px; */
}

.guest-card {
     border: 1px solid #000;
    border-radius: 6px;
    padding: 16px 14px;
    transition: border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.guest-card.is-locked { opacity: 0.45; pointer-events: none; }

.guest-card-name {
 font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 500;
    color: var(--rrr-black);
    margin-bottom: 2px;
    letter-spacing: 1.8px;
}

.guest-card-sub {
      font-family: var(--font-sans);
    font-size: 16px;
    color: #000;
    margin-bottom: 14px;
    font-weight: 600;
}

.guest-card-price {
     font-family: var(--font-sans);
    font-size: 12px;
    /* font-weight: 700; */
    color: var(--rrr-black);
    float: right;
    letter-spacing: 1.8px;
}

.guest-stepper {
  display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid #A6A6A6;
    gap: 10px;
}

.guest-step-btn {
  width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #e4e1d8;
    background: #E9C176;
    color: #000;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s ease;
}

.guest-step-btn:hover:not(:disabled) { background: #FBF6EA; }
.guest-step-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.guest-count {
  font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 600;
    color: var(--rrr-black);
    min-width: 18px;
    text-align: center;
}

.guest-card-van {
  cursor: pointer;
  text-align: left;
}

.guest-card-van.is-selected {
  border-color: var(--rrr-gold-dark);
  background: #FBF6EA;
}

.guest-van-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.guest-van-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid #d6d2c6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.guest-van-check svg { width: 11px; height: 11px; }

.guest-card-van.is-selected .guest-van-check {
  background: var(--rrr-gold-dark);
  border-color: var(--rrr-gold-dark);
  color: var(--rrr-white);
}

.guest-van-badge {
  display: none;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--rrr-white);
  background: var(--rrr-gold-dark);
  border-radius: 3px;
  padding: 4px 8px;
  white-space: nowrap;
}

.guest-card-van.is-selected .guest-van-badge { display: inline-block; }

.seats-indicator {
  display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 12px;
    color: #000;
    margin-bottom: 26px;
    padding: 8px 20px;
    background: #EAEAEA;
    letter-spacing: 1.8px;
}

.seats-indicator svg { width: 15px; height: 15px; color: #000; }

.booking-divider {
  border: none;
    border-top: 2px solid #000;
    margin-bottom: 15px;
}

.secure-payment-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e4e1d8;
  border-radius: 4px;
  padding: 18px 20px;
  margin-bottom: 20px;
}

.secure-payment-brand {
  font-family: var(--font-sans);
  font-size: 15px;
  color: #6a6a6a;
}

.secure-payment-brand strong {
  color: var(--rrr-black);
  font-weight: 700;
}

.secure-payment-icons {
  display: flex;
  gap: 12px;
  color: #b8b5ac;
}

.secure-payment-icons svg { width: 18px; height: 18px; }

.booking-submit-btn {
  width: 100%;
  background: var(--rrr-black);
  color: var(--rrr-white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  padding: 18px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.form-card .booking-submit-btn{
  width: 100%;
    background: var(--rrr-black);
    color: var(--rrr-white);
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    padding: 12px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.booking-submit-btn:hover:not(:disabled) { opacity: 0.85; }
.booking-submit-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.booking-disclaimer {
  text-align: center;
    font-family: var(--font-sans);
    font-size: 12px;
    line-height: 1.7;
    color: #b8b5ac;
    margin-top: 18px;
    text-transform: capitalize;
    letter-spacing: 1.8px;
    width: 50%;
    margin: 18px auto 0;
}

@media (max-width: 991px) {
  .booking-card { margin-bottom: 24px; }
  .guest-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .guest-grid { grid-template-columns: 1fr; }
  .secure-payment-box { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ---------- Uncompromising Standards (reusable) ---------- */
.standards-section {
  background: var(--rrr-cream);
  padding: 90px 0;
}

.standards-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 6px;
}

.standards-eyebrow {
  font-family: var(--font-serif);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: #775A19;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.standards-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 48px;
  line-height: 57.6px;
  color: var(--rrr-black);
  margin-bottom: 30px;
}

.standards-feature {
      margin-bottom: 24px;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.feature-icon img{
  width:60px;
}

.standards-feature:last-child { margin-bottom: 0; }

.standards-feature-title {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rrr-black);
  margin-bottom: 8px;
}

.standards-feature-copy {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 0px;
  color: #6a6a6a;
}

@media (max-width: 991px) {
  .standards-image { margin-bottom: 32px; }
  .standards-image img { min-height: 240px; }
}

/* ---------- Cancellation Policy (reusable) ---------- */
.cancellation-section {
  background: #FAF9F6;
  padding: 100px 40px;
}
.cancellation-text{
  padding: 90px;
    background: #F3F3F4;
    border: 1px solid #C4C7C7;
}

.cancellation-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 30px;
  color: var(--rrr-black);
  margin-bottom: 18px;
}

.cancellation-intro {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.8;
  color: #6a6a6a;
  margin-bottom: 36px;
  max-width: 480px;
}

.cancellation-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 30px;
}

.cancellation-list-item{
  display: flex;
    gap: 20px;
}

.cancellation-item-title {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--rrr-black);
  margin-bottom: 8px;
}

.cancellation-item-copy {
  font-family: var(--font-sans);
  font-size: 12.5px;
  line-height: 1.75;
  color: #6a6a6a;
}

.canc-collage{
  margin-top: 0px !important;
}

.cancellation-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cancellation-collage-tall img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 4px;
  filter: grayscale(1);
}

.cancellation-collage-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cancellation-collage-stack img {
  width: 100%;
  height: 173px;
  object-fit: cover;
  border-radius: 4px;
}

.cancellation-collage-stack img.is-gray {
  filter: grayscale(1);
}

@media (max-width: 991px) {
  .cancellation-collage { margin-top: 40px; }
}

@media (max-width: 600px) {
  .cancellation-list { grid-template-columns: 1fr; }
}

/* ---------- Book page: Inquiry hero ---------- */
.inquiry-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.inquiry-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.inquiry-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,8,5,0.55) 0%, rgba(10,8,5,0.35) 45%, rgba(10,8,5,0.15) 70%, transparent 100%);
  z-index: 1;
}

.inquiry-hero .container-fluid {
  position: relative;
  z-index: 2;
  padding-left: 60px;
  padding-right: 60px;
}

.inquiry-hero-text {
  padding-right: 30px;
}

.inquiry-hero-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rrr-white);
  margin-bottom: 24px;
}

.inquiry-form-card {
  background: var(--rrr-white);
  padding: 50px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.inquiry-form-eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rrr-gold-dark);
  margin-bottom: 30px;
}

.inquiry-field {
  margin-bottom: 6px;
}

.inquiry-field label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-bottom: 12px;
}

.inquiry-field input,
.inquiry-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd9cf;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--rrr-black);
  padding: 0 0 12px;
  resize: none;
}

.inquiry-field input:focus,
.inquiry-field textarea:focus {
  outline: none;
  border-bottom-color: var(--rrr-gold-dark);
}

.inquiry-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  background: var(--rrr-black);
  color: var(--rrr-white);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  padding: 18px 30px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.inquiry-submit-btn svg {
  width: 15px;
  height: 15px;
}

.inquiry-submit-btn:hover { opacity: 0.85; }

@media (max-width: 991px) {
  .inquiry-hero { min-height: auto; padding: 100px 0 60px; }
  .inquiry-hero-text { padding-right: 0; margin-bottom: 50px; }
  .inquiry-hero-heading { font-size: 38px; }
  .inquiry-form-card { padding: 34px; }
}

@media (max-width: 480px) {
  .inquiry-hero .container-fluid { padding-left: 24px; padding-right: 24px; }
  .inquiry-hero-heading { font-size: 30px; }
  .inquiry-form-card { padding: 26px; }
}

/* ---------- Book page: Contact details + map ---------- */
.contact-map-section {
  background: var(--rrr-white);
  padding: 90px 60px;
}

.contact-details-label {
  display: inline-block;
  border: 1px solid #e4e1d8;
  padding: 14px 20px;
  margin-bottom: 40px;
}

.contact-details-label span {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--rrr-black);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--rrr-gold-dark);
  margin-top: 4px;
}

.contact-item-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9a978e;
  margin-bottom: 8px;
}

.contact-item-value {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--rrr-black);
  text-decoration: none;
  border-bottom: 1px solid #e4e1d8;
  padding-bottom: 8px;
  min-width: 200px;
}

.contact-item-value-plain {
  border-bottom: none;
  padding-bottom: 0;
  min-width: 0;
  font-weight: 600;
}

.contact-item-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #6a6a6a;
  margin-top: 4px;
}

.contact-item-plain { margin-bottom: 40px; }

.contact-questions-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 21px;
  color: var(--rrr-black);
  margin-bottom: 10px;
}

.contact-questions-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #9a978e;
  margin-bottom: 6px;
}

.contact-questions-hours {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--rrr-black);
}

.domain-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 42px;
  color: var(--rrr-black);
  margin-bottom: 16px;
}

.domain-heading em {
  font-style: italic;
  font-weight: 500;
}

.domain-copy {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: #6a6a6a;
  max-width: 560px;
  margin-bottom: 34px;
}

.domain-map {
  width: 100%;
  height: 480px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

@media (max-width: 991px) {
  .contact-map-section { padding: 70px 24px; }
  .contact-map-section .col-lg-3 { margin-bottom: 50px; }
  .domain-map { height: 360px; }
}

@media (max-width: 480px) {
  .domain-heading { font-size: 30px; }
  .domain-map { height: 280px; }
}

/* ---------- Contact page: Get In Touch hero ---------- */
.gt-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gt-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.gt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.12) 40%, transparent 70%);
  z-index: 1;
}

.gt-hero .container-fluid {
  position: relative;
  z-index: 2;
  padding-left: 60px;
  padding-right: 60px;
}

.gt-hero-text {
  max-width: 520px;
}

.gt-hero-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 54px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--rrr-black);
  margin-bottom: 22px;
}

.gt-hero-copy {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.8;
  color: #3a3a3a;
  max-width: 380px;
}

.inquiry-form-card-flat {
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

@media (max-width: 991px) {
  .gt-hero { min-height: 420px; }
  .gt-hero .container-fluid { padding-left: 24px; padding-right: 24px; }
  .gt-hero-heading { font-size: 38px; }
}

.footer-logo{
  width: 200px;
  margin: auto;
}

.footer-logo-mark{
  margin-bottom: 20px;
}

/* ============================================================
   Responsiveness polish pass — added during WordPress conversion
   (fixes overflow / spacing gaps found on small screens; does not
   remove or override any original design rules unless noted)
   ============================================================ */

html, body { overflow-x: hidden; max-width: 100%; }

/* .container, .container-fluid, .row { max-width: 100%; } */

iframe, video { max-width: 100%; }

@media (max-width: 991px) {
  .booking-section { padding: 60px 24px; }
  .inquiry-form-card { max-width: 100%; }
}

@media (max-width: 768px) {
  .booking-section { padding: 48px 16px; }
  .booking-card, .form-card { padding: 20px; }
  .booking-heading { font-size: 26px; }
  .cal-grid { gap: 2px; }
  .cal-day { font-size: 12px; }
}

@media (max-width: 480px) {
  .guest-grid { grid-template-columns: 1fr; }
  .guest-card { padding: 14px; }
  .secure-payment-box { padding: 12px; }
  .booking-submit-btn { font-size: 13px; padding: 14px 18px; white-space: normal; }
  .cal-head { flex-wrap: wrap; gap: 10px; }
}

/* Stripe Payment/Card Element mount styling (see stripe-payment.js) */
.stripe-card-element {
  background: #fff;
  border: 1px solid #C4C7C7;
  padding: 14px 12px;
  margin-top: 10px;
}

.stripe-card-errors {
  color: #b3261e;
  font-size: 12px;
  margin-top: 8px;
  min-height: 16px;
}

.booking-payment-status {
  font-family: var(--font-sans);
  font-size: 13px;
  margin-top: 12px;
}
.booking-payment-status.is-error { color: #b3261e; }
.booking-payment-status.is-success { color: #1e7e34; }

.booking-submit-btn.is-loading { opacity: 0.7; cursor: wait; pointer-events: none; }

/* Inquiry form validation + status (Book Now / Contact "Send An Inquiry") */
.inquiry-field.has-error input,
.inquiry-field.has-error textarea {
  border-color: #b3261e !important;
}
.inquiry-field-error {
  color: #b3261e;
  font-size: 12px;
  margin-top: 6px;
}
.inquiry-status {
  font-family: var(--font-sans);
  font-size: 13px;
  margin-top: 14px;
}
.inquiry-status.is-error { color: #b3261e; }
.inquiry-status.is-success { color: #1e7e34; }
.inquiry-form-honeypot { display: none !important; }

* Stripe Payment Element mount styling (see stripe-payment.js). The
   Payment Element itself is styled via the `appearance` API in JS —
   this just styles the container it sits in and gives room for the
   Apple Pay / Google Pay buttons it renders above the card tab. */
.stripe-card-element {
  background: #fff;
  border: 1px solid #C4C7C7;
  padding: 16px 14px;
  margin-top: 10px;
  min-height: 44px;
}
 
.stripe-card-errors {
  color: #b3261e;
  font-size: 12px;
  margin-top: 8px;
  min-height: 16px;
}
 
.booking-payment-status {
  font-family: var(--font-sans);
  font-size: 13px;
  margin-top: 12px;
}
.booking-payment-status.is-error { color: #b3261e; }
.booking-payment-status.is-success { color: #1e7e34; }
 
.booking-submit-btn.is-loading { opacity: 0.7; cursor: wait; pointer-events: none; }
 
/* Inquiry form validation + status (Book Now / Contact "Send An Inquiry") */
.inquiry-field.has-error input,
.inquiry-field.has-error textarea {
  border-color: #b3261e !important;
}
.inquiry-field-error {
  color: #b3261e;
  font-size: 12px;
  margin-top: 6px;
}
.inquiry-status {
  font-family: var(--font-sans);
  font-size: 13px;
  margin-top: 14px;
}
.inquiry-status.is-error { color: #b3261e; }
.inquiry-status.is-success { color: #1e7e34; }
.inquiry-form-honeypot { display: none !important; }
 
/* Contact Form 7 styling — matches the theme's original inquiry form look
   when a CF7 form is used instead of the built-in fallback form. */
.rrr-cf7-wrap .wpcf7-form-control-wrap { display: block; margin-bottom: 4px; }
.rrr-cf7-wrap p { margin-bottom: 18px; }
.rrr-cf7-wrap label {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 8px;
}
.rrr-cf7-wrap input[type="text"],
.rrr-cf7-wrap input[type="email"],
.rrr-cf7-wrap input[type="tel"],
.rrr-cf7-wrap textarea {
  width: 100%;
  border-bottom: 1px solid #C4C7C7;
  padding: 0px 14px;
  font-family: var(--font-sans);
  font-size: 14px;
/*   background: #fff; */
}
.rrr-cf7-wrap .wpcf7-not-valid-tip {
  color: #b3261e;
  font-size: 12px;
  margin-top: 6px;
}
.rrr-cf7-wrap .wpcf7-response-output {
  font-family: var(--font-sans);
  font-size: 13px;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 4px;
}
.rrr-cf7-wrap form.sent .wpcf7-response-output { border-color: #1e7e34; color: #1e7e34; }
.rrr-cf7-wrap form.invalid .wpcf7-response-output,
.rrr-cf7-wrap form.unaccepted .wpcf7-response-output,
.rrr-cf7-wrap form.payment-required .wpcf7-response-output,
.rrr-cf7-wrap form.aborted .wpcf7-response-output,
.rrr-cf7-wrap form.spam .wpcf7-response-output,
.rrr-cf7-wrap form.failed .wpcf7-response-output {
  border-color: #b3261e;
  color: #b3261e;
}
.rrr-cf7-wrap .inquiry-submit-btn:disabled { opacity: 0.6; cursor: wait; }
 
/* Stripe payment modal (opens on "Complete Reservation") */
.rrr-payment-modal-content {
  border-radius: 4px;
  border: none;
  font-family: var(--font-sans);
}
.rrr-payment-modal-content .modal-header {
  border-bottom: 1px solid #eee;
  padding: 20px 24px;
}
#rrr-payment-modal-title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--rrr-black);
}
.rrr-payment-modal-content .modal-body {
  padding: 24px;
}
.rrr-payment-modal-content .modal-footer {
  border-top: none;
  padding: 0 24px 24px;
}
.rrr-payment-modal-content .modal-footer .booking-submit-btn {
  width: 100%;
}
.rrr-payment-modal-loading {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #6b6b6b;
  text-align: center;
  padding: 30px 0;
}
.rrr-payment-modal-hint {
  font-family: var(--font-sans);
  font-size: 12px;
  color: #8a8a8a;
  margin: 10px 0 14px;
}

@media (max-width:600px){
  .tours-hero-text{
    top:90%;
  }
  .testimonial-container{
    padding: 0 40px;
  }
  .cancellation-text{
    padding: 20px;
  }
  .gallery-grid-card{
    margin-top: 0px;
  }
  .booking-disclaimer{
    width: 100%;
  }
  .icons-grid{
    padding-bottom: 40px;
  }
  .icon-track{
    min-height: auto;
  }
}

/* Simple Text Page template (Terms & Conditions, Privacy Policy, etc.) */
.legal-page-header {
  padding: 80px 24px 30px;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.legal-page-title {
  font-family: var(--font-serif, var(--font-sans));
  font-size: 40px;
  color: var(--rrr-black);
  margin: 0;
}
.legal-page-content {
  padding: 50px 24px 90px;
}
.legal-page-body {
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  color: #3a3a3a;
}
.legal-page-body h2 {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  color: var(--rrr-black);
  margin: 40px 0 16px;
}
.legal-page-body h2:first-child { margin-top: 0; }
.legal-page-body h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--rrr-black);
  margin: 28px 0 12px;
}
.legal-page-body p { margin-bottom: 18px; }
.legal-page-body ul,
.legal-page-body ol { margin-bottom: 18px; padding-left: 22px; }
.legal-page-body li { margin-bottom: 8px; }
.legal-page-body a { color: var(--rrr-gold, #b08d3f); text-decoration: underline; }
 
@media (max-width: 768px) {
  .legal-page-header { padding: 60px 20px 24px; }
  .legal-page-title { font-size: 30px; }
  .legal-page-content { padding: 36px 20px 60px; }
}