/* =============================================
   BCN LENS — Barcelona Photoshoot Tours
   Design System & Styles
   ============================================= */

/* === CUSTOM PROPERTIES === */
:root {
  --bg: #FFFFFF;
  --bg-warm: #FFFCF5;
  --bg-light: #F5F5F4;
  --surface: #FFFFFF;
  --text: #111111;
  --text-muted: #5A5A5A;
  --text-light: #737373;
  --border: #E5E5E5;
  --border-color: 1px solid #E5E5E5;
  --gold: #E8A020;
  --gold-dark: #C88010;
  --gold-light: #FFF8E0;
  --amber: #D45500;

  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Open Sans', system-ui, -apple-system, sans-serif;

  --nav-h: 68px;
  --max-w: 1180px;
  --r-sm: 3px;
  --r-md: 6px;
  --r-lg: 10px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: clip; /* clip instead of hidden to avoid breaking position: sticky */
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip; /* clip instead of hidden to avoid breaking position: sticky */
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 600; line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; }
p { font-size: 1rem; }

.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* === LAYOUT === */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 88px 0; }
.section--warm { background: var(--bg-warm); }
.section--light { background: var(--bg-light); }

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 200;
  display: flex;
  align-items: center;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}
.nav--transparent {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
.nav--transparent .nav__logo {
  color: #fff;
  font-size: 1.5rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.nav--transparent .nav__logo em { color: #E8C87A; }

/* Hide nav links/icons/CTA before scroll — in DOM for SEO, invisible to user */
.nav__links {
  transition: opacity 0.4s ease;
}
.nav--transparent .nav__links {
  opacity: 1;
  pointer-events: none;
}
.nav--transparent .nav__links > li {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav--transparent .nav__links > li.nav__cta {
  opacity: 1;
  pointer-events: auto;
}
.nav--transparent .nav__links a {
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.nav--transparent .nav__links a:hover { color: #fff; opacity: 0.8; }
.nav--transparent .nav__book {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff !important;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.nav--transparent .nav__book:hover { background: rgba(255,255,255,0.30); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.nav__logo em { color: var(--gold); font-style: normal; }
.nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.tour-sticky-book,
.mobile-book-btn,
.nav__mobile-menu {
  display: none;
}
.nav__links a.nav__book {
  display: none;
}
@media (min-width: 769px) {
  .nav__links a.nav__book {
    display: inline-flex;
  }
}
.nav__links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.18s;
  font-weight: 400;
}
.nav__links a:hover { color: var(--text); }
.nav__book {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  background: var(--text);
  color: #fff !important;
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.18s;
}
.nav__book:hover { background: var(--gold); }
.nav__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--text-muted);
  transition: color 0.18s;
  padding: 0;
}
.nav__icon-link svg { width: 18px; height: 18px; display: block; }
.nav__icon-link:hover { color: var(--text); }
.nav--transparent .nav__icon-link { color: rgba(255,255,255,0.7); }
.nav--transparent .nav__icon-link:hover { color: #fff; opacity: 1; }

/* === HERO === */
.hero {
  height: 65vh;
  min-height: 380px;
  position: relative;
  display: flex;
  align-items: stretch;
}
.hero__bg {
  position: absolute;
  top: 0; left: 0; right: 0;
  bottom: -180px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 55%;
  background-color: #0a0604;
  background-image: url('../photos/portraits/photo6.png');
}
.hero__overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  bottom: -180px;
  /* dark at top (text readable), shows photo in middle, dark again at bottom (widget) */
  background: linear-gradient(
    to bottom,
    rgba(6, 3, 1, 0.62) 0%,
    rgba(8, 4, 1, 0.28) 30%,
    rgba(10, 5, 1, 0.15) 55%,
    rgba(6, 3, 1, 0.68) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 64px;
}
.hero__content--centered { justify-content: center; text-align: center; }
.hero__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
}
.hero__text--centered { align-items: center; max-width: 780px; }
.hero__text--centered .hero__sub { max-width: 58ch; }

/* === BOOKING BAND (below hero, photo extends behind) === */
.booking-band {
  background: transparent;
  padding: 20px 0 0;
  margin-bottom: -52px;
  position: relative;
  z-index: 10;
}
/* gallery gets generous top padding so content breathes below the widget overlap */
.booking-band + .social-gallery-section {
  padding-top: 80px;
  position: relative;
  z-index: 5;
}
.booking-band__inner {
  display: flex;
  justify-content: center;
}

/* === HERO BOOKING CARD === */
.hero-booking {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 64px rgba(0,0,0,0.28);
  display: flex;
  flex-direction: column;
  width: 420px;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
  overflow: hidden;
  color: var(--text);
}
/* Band variant: full-width card lifted into hero photo */
.hero-booking--band {
  width: 100%;
  max-width: 100%;
  margin-top: -80px;
  box-shadow: 0 8px 56px rgba(0,0,0,0.22);
  border-radius: 18px;
}
@media (min-width: 768px) {
  .hero-booking--band {
    margin-left: 24px;
    margin-right: 24px;
    width: calc(100% - 48px);
  }
}

/* Steps */
.hb-step { display: flex; flex-direction: column; flex: 1; min-height: 0; }
.hb-step[hidden] { display: none; }

.hb-step__head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.hb-step__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hb-step__head--back {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hb-back-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
}
.hb-back-btn:hover { color: var(--text); }
.hb-step__selected-tour {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

/* Tour cards (step 1) */
.hb-tours {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 12px 14px;
}
.hb-tour {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border: 1px solid #e6e2dc;
  border-radius: 11px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.hb-tour:hover { border-color: #c8c3bb; box-shadow: 0 2px 10px rgba(0,0,0,0.07); }
.hb-tour.is-selected { border-color: var(--gold); border-width: 1.5px; }
.hb-tour:hover .hb-tour__img { transform: scale(1.05); }

.hb-tour__img-wrap {
  width: 110px;
  min-height: 110px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  margin: 7px 0 7px 7px;
  border-radius: 7px;
}
.hb-tour__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.hb-tour__loc {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.hb-tour__check-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.18s, transform 0.18s;
}
.hb-tour.is-selected .hb-tour__check-badge { opacity: 1; transform: scale(1); }

.hb-tour__body {
  flex: 1;
  padding: 14px 14px 14px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}
.hb-tour__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.hb-tour__tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Step footer */
.hb-step__foot {
  padding: 16px 22px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.hb-next-btn {
  width: 100%;
  background: var(--text);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
}
.hb-next-btn:hover { background: var(--gold); }

/* Fields (step 2) */
.hb-field {
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.hb-field__label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.hb-dur-opts { display: flex; gap: 8px; }
.hb-dur-opt {
  flex: 1;
  padding: 8px 10px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  text-align: center;
}
.hb-dur-opt:hover { border-color: var(--text); color: var(--text); }
.hb-dur-opt.is-active { border-color: var(--gold); color: var(--text); background: #fdf8f0; font-weight: 600; }

.hb-people-opts { display: flex; gap: 8px; }
.hb-people-opt {
  width: 44px;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.hb-people-opt:hover { border-color: var(--text); color: var(--text); }
.hb-people-opt.is-active { border-color: var(--gold); color: var(--text); background: #fdf8f0; font-weight: 600; }

.hb-date-input {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  width: 100%;
  box-sizing: border-box;
  background: none;
  cursor: pointer;
}
.hb-date-input:focus { outline: none; border-color: var(--gold); }

/* CTA footer (step 2) */
.hb-step__foot--cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hb-price { display: flex; flex-direction: column; }
.hb-price__from {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hb-price__amount {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.hb-book-btn {
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, transform 0.12s;
}
.hb-book-btn:hover { background: #c8871a; transform: translateY(-1px); }
.hb-book-btn:active { transform: translateY(0); }
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #E8C87A;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 22px;
  background: rgba(0,0,0,0.38);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 7px 14px;
  border-radius: 100px;
}
.hero__tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #E8C87A;
}
.hero__title {
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  max-width: 13ch;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
.hero__sub {
  font-size: 0.9rem;
  max-width: 42ch;
  opacity: 0.9;
  margin-bottom: 48px;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.65);
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.18s;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn--primary { background: var(--gold); color: #fff; }
.btn--primary:hover { background: var(--gold-dark); }
.btn--white { background: #fff; color: var(--text); }
.btn--white:hover { background: var(--bg-light); }
.btn--outline-white {
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  background: transparent;
}
.btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn--dark { background: var(--text); color: #fff; }
.btn--dark:hover { background: var(--gold); }
.btn--ghost { border: 1px solid var(--border); color: var(--text); background: transparent; }
.btn--ghost:hover { border-color: var(--text-muted); }
.btn--full { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }
.btn--whatsapp { background: #25D366; color: #fff; }
.btn--whatsapp:hover { background: #20BA5A; }
.btn svg { width: 18px; height: 18px; fill: currentColor; }

/* === BAND STATS === */
.band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.band__item {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.band__item + .band__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border);
}
.band__value {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.band__label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-top: 5px;
}

/* === SECTION HEADER === */
.sec-head { margin-bottom: 52px; }
.sec-head--center { text-align: center; max-width: 580px; margin-left: auto; margin-right: auto; margin-bottom: 52px; }
.sec-head__title { margin-bottom: 14px; }
.sec-head__desc { color: var(--text-muted); font-size: 1.02rem; }

/* === TOUR CARDS === */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tcard {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: #fff;
  transition: border-color 0.22s;
  display: flex;
  flex-direction: column;
}
.tcard:hover { border-color: #C8BEB4; }
.tcard__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-light);
  position: relative;
  flex-shrink: 0;
}
.tcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
}
.tcard:hover .tcard__img img { transform: scale(1.05); }
.tcard__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 11px;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  backdrop-filter: blur(4px);
}
.tcard__body {
  padding: 22px 22px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tcard__meta {
  display: flex;
  gap: 18px;
  margin-bottom: 12px;
  font-size: 0.75rem;
  color: var(--text-light);
}
.tcard__meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.tcard__meta-item svg {
  width: 12px; height: 12px;
  opacity: 0.6;
  fill: currentColor;
}
.tcard__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 9px;
  line-height: 1.2;
}
.tcard__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 20px;
  flex: 1;
}
.tcard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.tcard__price-from { font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; }
.tcard__price-val {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text);
}
.tcard__link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.18s;
}
.tcard:hover .tcard__link { gap: 8px; }


/* === SOCIAL GALLERY === */
.social-gallery-section { padding: 80px 0 72px; background: var(--bg-light, #f8f6f2); overflow: hidden; }
.social-gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 20px;
}
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 10px;
}
.social-gallery-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  line-height: 1.15;
  margin: 0;
}
.sg-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}
.sg-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: var(--text);
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 100px;
  transition: background 0.15s, transform 0.15s;
}
.sg-cta-link:hover { background: var(--gold); transform: translateY(-1px); }
.social-gallery-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.sg-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  line-height: 1;
}
.sg-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.sg-btn:disabled { opacity: 0.35; cursor: default; pointer-events: none; }

.sg-track-wrap {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Peek: show partial next card to signal scrollability */
  padding-right: 32px;
  margin-right: -32px;
  cursor: grab;
}
.sg-track-wrap::-webkit-scrollbar { display: none; }
.sg-track-wrap.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.sg-track {
  display: flex;
  gap: 16px;
  /* Extra right padding so last card doesn't clip */
  padding-right: 32px;
}

/* Social media post card */
a.sg-card { text-decoration: none; color: inherit; cursor: pointer; }
.sg-card {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 48px) / 4);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sg-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
}
.sg-card__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #c8a96e 100%);
  flex-shrink: 0;
  border: 2px solid #fff;
  outline: 1.5px solid var(--gold);
}
.sg-card__meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.sg-card__user {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.sg-card__location {
  font-size: 0.65rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sg-card__photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.sg-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.sg-card:hover .sg-card__photo img { transform: scale(1.03); }
.sg-card__footer {
  padding: 10px 14px 14px;
  flex: 1;
}
.sg-card__actions {
  display: flex;
  gap: 14px;
  margin-bottom: 8px;
}
.sg-card__icon {
  font-size: 1.1rem;
  color: var(--text);
  cursor: default;
  line-height: 1;
}
.sg-card__icon--share { margin-left: auto; }
.sg-card__caption {
  font-size: 0.72rem;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sg-card__caption strong { font-weight: 700; }

@media (max-width: 900px) {
  .sg-card { flex: 0 0 calc((100% - 32px) / 3); }
}
@media (max-width: 600px) {
  .social-gallery-section { padding: 56px 0 52px; }
  .social-gallery-header { flex-direction: column; align-items: flex-start; margin-bottom: 24px; }
  .sg-card { flex: 0 0 calc((100% - 16px) / 2); }
  .social-gallery-nav { display: none; }
}

/* === HOW IT WORKS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: #fff;
}
.step__n {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.step__title { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.step__desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

/* === WHATSAPP STICKY FAB === */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 12px 20px 12px 14px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.15);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.15s;
  white-space: nowrap;
}
.wa-fab svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.wa-fab:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0,0,0,0.15);
}
.wa-fab:active { transform: translateY(0); }
@media (max-width: 600px) {
  .wa-fab {
    bottom: 18px;
    right: 18px;
    padding: 13px;
    border-radius: 50%;
  }
  .wa-fab__label { display: none; }
  .wa-fab svg { width: 28px; height: 28px; }
}

/* === INSTAGRAM FOLLOW CARD === */
.ig-follow-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #f9f0e8 0%, #fce8f0 50%, #ede8fc 100%);
  border: 1px solid rgba(200, 100, 150, 0.15);
  border-radius: var(--r-md);
  padding: 18px 22px;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 40px;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 12px rgba(180, 80, 120, 0.08);
}
.ig-follow-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(180, 80, 120, 0.15);
}
.ig-follow-card__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9a825 0%, #e91e8c 50%, #9c27b0 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.ig-follow-card__icon svg { width: 22px; height: 22px; }
.ig-follow-card__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.ig-follow-card__handle {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.ig-follow-card__sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.ig-follow-card__arrow {
  font-size: 1.1rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.15s;
}
.ig-follow-card:hover .ig-follow-card__arrow { transform: translateX(4px); }

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 36px;
}

/* === AESTHETICS SECTION === */
.aesthetics {
  background: var(--bg);
  padding: 120px 0;
  overflow: hidden;
}
.aesthetics__layout {
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
  text-align: center;
}
.aesthetics__content {
  max-width: 800px;
}
.aesthetics__title {
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.aesthetics__desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.aesthetics__gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.aesthetics__item {
  position: relative;
  display: flex;
  justify-content: center;
}
.aesthetics__item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.aesthetics__item:hover img {
  transform: scale(1.02);
}

/* Vertical shifts for a more dynamic horizontal layout */
.aesthetics__item--1 { transform: translateY(28px); }
.aesthetics__item--2 { transform: translateY(-28px); }
.aesthetics__item--3 { transform: translateY(28px); }
.aesthetics__item--4 { transform: translateY(-28px); }
.aesthetics__item--5 { transform: translateY(28px); }

@media (max-width: 1024px) {
  .aesthetics {
    padding: 80px 0;
  }
  .aesthetics__gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .aesthetics__item--1,
  .aesthetics__item--2,
  .aesthetics__item--3,
  .aesthetics__item--4,
  .aesthetics__item--5 {
    transform: none;
  }
}

@media (max-width: 640px) {
  .aesthetics__gallery {
    display: flex;
    flex-direction: row;
    gap: 10px;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0 16px;
    margin: 0 -16px;
    scrollbar-width: none;
    align-items: flex-start;
  }
  .aesthetics__gallery::-webkit-scrollbar {
    display: none;
  }
  .aesthetics__item {
    flex: 0 0 56vw;
    scroll-snap-align: start;
    max-height: 220px;
    overflow: hidden;
    border-radius: var(--r-md);
  }
  .aesthetics__item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }
  .aesthetics__item--1,
  .aesthetics__item--2,
  .aesthetics__item--3,
  .aesthetics__item--4,
  .aesthetics__item--5 {
    transform: none;
  }
  .aesthetics__desc {
    font-size: 1rem;
  }
}

@media (max-width: 400px) {
  .aesthetics__item {
    flex: 0 0 70vw;
    max-height: 180px;
  }
  .aesthetics__item img {
    height: 180px;
  }
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 12px; }
.footer__logo em { color: var(--gold); font-style: normal; }
.footer__tagline { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; max-width: 28ch; margin-bottom: 20px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.72rem;
  transition: all 0.18s;
}
.footer__social a:hover { border-color: var(--text-muted); color: var(--text); }
.footer__col-title {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer__col-links { display: flex; flex-direction: column; gap: 9px; }
.footer__col-links a { font-size: 0.84rem; color: var(--text-muted); transition: color 0.18s; }
.footer__col-links a:hover { color: var(--text); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  color: var(--text-light);
}

/* =============================================
   TOUR DETAIL PAGE
   ============================================= */

/* === TOUR HERO === */
.tour-hero {
  height: 44vh;
  min-height: 340px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.tour-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.tour-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,6,4,0.72) 0%, rgba(8,6,4,0.2) 55%, rgba(8,6,4,0) 100%);
}
.tour-hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-bottom: 72px;
  width: 100%;
}
.tour-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  transition: color 0.18s;
}
.tour-hero__back:hover { color: #fff; }
.tour-hero__tag {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 100px;
  padding: 4px 13px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  backdrop-filter: blur(4px);
}
.tour-hero__title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: #fff;
  margin-bottom: 10px;
}
.tour-hero__sub {
  font-size: 1rem;
  opacity: 0.78;
  max-width: 50ch;
  margin-top: 6px;
  margin-bottom: 24px;
}

/* === TOUR BODY === */
.tour-body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
  padding: 64px 0;
}
.tour-desc { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 40px; }

.tour-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 40px;
}
.tour-highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.tour-highlight::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 1px solid var(--gold-light);
  flex-shrink: 0;
  margin-top: 1px;
}

.tour-includes { margin-bottom: 40px; }
.tour-includes__title { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 14px; }
.tour-includes__list { display: flex; flex-direction: column; gap: 9px; }
.tour-include-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text);
}
.tour-include-item::before {
  content: '✓';
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6f4eb;
  color: #1e8c45;
  border-radius: 50%;
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* Route stops on tour page */
/* Location photos grid */
/* Fees & Payment section */
.fees-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 20px;
  font-size: 0.85rem;
}
.fees-table th {
  text-align: left;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
  padding: 0 12px 10px 0;
  border-bottom: 1px solid var(--border);
}
.fees-table td {
  padding: 11px 12px 11px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}
.fees-table tbody tr:last-child td { border-bottom: none; }
.fees-table td:first-child { font-weight: 600; }
.fees-table td:nth-child(2) { color: var(--gold); font-family: var(--font-heading); font-weight: 600; }
.fees-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.fees-note strong { color: var(--text); font-weight: 600; }
.fees-payment-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.fees-payment-list li {
  font-size: 0.85rem;
  color: var(--text);
  padding-left: 16px;
  position: relative;
}
.fees-payment-list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--gold);
  font-weight: 700;
}

.loc-carousel-wrap { position: relative; }
.loc-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.loc-carousel-nav {
  display: flex;
  gap: 6px;
}
.loc-carousel-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  line-height: 1;
}
.loc-carousel-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

.location-photos {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 16px;
  scroll-behavior: smooth;
}
.location-photos::-webkit-scrollbar { display: none; }
.loc-photo {
  flex: 0 0 calc((100% - 16px) / 3);
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  cursor: pointer;
  scroll-snap-align: start;
}
.loc-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: opacity 0.18s;
}
.loc-photo:hover img { opacity: 0.82; }
.loc-photo figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 8px 7px;
  font-size: 0.68rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,0.52));
  line-height: 1.3;
}
@media (max-width: 600px) {
  .loc-photo { flex: 0 0 calc((100% - 8px) / 2); }
  .loc-carousel-nav { display: none; }
}
.loc-photos-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
  margin-top: 4px;
}

.route-stops { display: flex; flex-direction: column; gap: 0; }
.route-stop {
  display: flex;
  gap: 16px;
  padding-bottom: 22px;
  position: relative;
}
.route-stop:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 13px;
  top: 28px;
  width: 1px;
  height: calc(100% - 4px);
  background: var(--border);
}
.route-stop__dot {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.route-stop__name { font-size: 0.9rem; font-weight: 500; margin-bottom: 3px; }
.route-stop__desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* === BOOKING WIDGET === */
.booking-widget {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: -webkit-sticky !important;
  position: sticky !important;
  top: calc(var(--nav-h) + 24px) !important;
  align-self: start;
  z-index: 10;
}
.booking-header {
  padding: 24px 22px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-warm);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .booking-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 24px 26px;
  }
}
.booking-header__price-from { 
  font-size: 0.8rem; 
  color: var(--text-muted); 
  text-transform: uppercase; 
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .booking-header__price-from {
    margin-bottom: 0;
    margin-right: 10px;
  }
}
.booking-header__price {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 6px;
}
@media (min-width: 768px) {
  .booking-header__price {
    margin: 0;
  }
}
.booking-header__price span { font-size: 0.85rem; font-family: var(--font-body); color: var(--text-muted); }
.booking-header__note { 
  font-size: 0.74rem; 
  color: var(--text-muted);
  width: 100%;
}
@media (min-width: 768px) {
  .booking-header__note {
    margin-top: 2px;
  }
}

/* Progress steps */
/* Stepper */
/* Booking stepper (tour.html) */
.booking-steps {
  display: flex;
  align-items: center;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
  gap: 0;
}
.booking-step-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.bst__circle {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text-light);
  font-size: 0.72rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; line-height: 1;
}
.bst__label {
  font-size: 0.6rem; font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.06em;
  white-space: nowrap; transition: color 0.2s;
}
.bst__connector {
  flex: 1; height: 1.5px;
  background: var(--border); margin-bottom: 18px;
  transition: background 0.2s;
}
.booking-step-tab.is-active .bst__circle { background: var(--gold); border-color: var(--gold); color: #fff; }
.booking-step-tab.is-active .bst__label { color: var(--gold); }
.booking-step-tab.is-done .bst__circle { background: #fff; border-color: var(--gold); color: var(--gold); }
.booking-step-tab.is-done + .bst__connector { background: var(--gold); }
.booking-step-tab.is-done .bst__label { color: var(--text-muted); }

.hb-widget-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 22px 12px;
  border-bottom: 1px solid var(--border);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hb-widget-title__heading { display: block; }
.hb-widget-title__sub {
  display: none;
  margin: 10px 0 0;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
  line-height: 1.55;
}
.widget-back-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.1rem;
  padding: 0 2px;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: 0;
  transition: color 0.15s;
  border-radius: 4px;
  font-weight: 400;
}
.widget-back-btn:hover { color: var(--text); }
.step-counter {
  color: var(--gold);
  font-weight: 700;
  margin-right: 4px;
}
.step-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.step-header .field-label { margin-bottom: 0; }
.step-back-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.1rem;
  padding: 2px 4px;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.15s;
  border-radius: 4px;
}
.step-back-btn:hover { color: var(--text); }

.booking-body { padding: 24px 22px; }

/* Step panels */
.step-panel { display: none; }
.step-panel.is-active { display: block; }
/* Tour page date/time panel: calendar only → time-only after date picked */
#step-2 .dt-view--cal { display: block; }
#step-2.has-date .dt-view--cal { display: none !important; }
#step-2 .dt-view--time { display: none !important; }
#step-2.has-date .dt-view--time { display: block !important; }
#step-2:not(.has-date) .dt-view--cal { max-width: 300px; margin: 0 auto; }

/* Duration selector */
.dur-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.dur-option { position: relative; display: flex; }
.dur-option--custom { grid-column: 1 / -1; }
.dur-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.dur-option label {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all 0.18s;
  background: #fff;
}
.dur-option input:checked + label {
  border-color: var(--gold);
  background: var(--gold-light);
}
.dur-option__time { font-weight: 600; font-size: 0.92rem; margin-bottom: 2px; }
.dur-recommended-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: block;
  font-size: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gold);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
  box-shadow: 0 1px 6px color-mix(in srgb, var(--gold) 50%, transparent);
}
.dur-recommended-badge[hidden] { display: none; }
.dur-option__location { font-size: 0.72rem; color: var(--gold); font-weight: 500; margin-bottom: 4px; }
.dur-option__photos { font-size: 0.74rem; color: var(--text-muted); margin-bottom: 8px; }
.dur-option__price { font-family: var(--font-heading); font-size: 1.1rem; color: var(--text); }
.dur-option--custom .dur-option__price--custom { font-size: 0.92rem; font-family: inherit; color: var(--text-muted); font-style: italic; }
.dur-option--custom label { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 0; }
.dur-option--custom .dur-option__time { flex: 1 0 auto; margin-bottom: 0; }
.dur-option--custom .dur-option__location { flex: 1 0 100%; order: 3; margin-bottom: 0; margin-top: 2px; }
.dur-option--custom .dur-option__photos { flex: 1 0 100%; order: 4; margin-bottom: 0; margin-top: 1px; }
.dur-option--custom .dur-option__price { flex: 0 0 auto; margin-bottom: 0; }

/* Group size */
.group-label { font-size: 0.8rem; font-weight: 500; color: var(--text-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.group-options { display: flex; gap: 10px; margin-bottom: 0; }
.group-option { position: relative; }
.group-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.group-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.18s;
}
.group-option input:checked + label {
  border-color: var(--gold);
  background: var(--gold-light);
  color: var(--gold);
}

/* Extra photos select */
.extras-select {
  display: block;
  width: 100%;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9A9A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.extras-select:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }

/* === MERGED DATE & TIME STEP === */
.dt-view--time { display: none; }
.step-panel.dt-showing-time .dt-view--cal { display: none; }
.step-panel.dt-showing-time .dt-view--time { display: block; }
.dt-date-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}

/* === SESSION TYPE CARDS === */
.stype-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 14px 0 6px;
}
.stype-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 18px 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.16s, box-shadow 0.16s, background 0.16s;
  font-family: inherit;
  color: var(--text);
}
.stype-card:hover {
  border-color: #c8c3bb;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.stype-card.is-selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
  background: #fdf8f0;
}
.stype-card__icon {
  width: 42px;
  height: 42px;
  color: var(--text-muted);
  transition: color 0.16s;
}
.stype-card.is-selected .stype-card__icon { color: var(--gold); }
.stype-card__name {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.stype-card__desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.35;
}
.field-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
  margin-top: 20px;
  display: block;
}
.field-label:first-child { margin-top: 0; }
.field-label--note { font-weight: 400; color: var(--text-light); font-size: 0.82rem; }
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.step-divider { height: 1px; background: var(--border); margin: 20px 0; }

/* Hero booking widget step 2 — compact layout to fit in card */
#hb-step-2 .hb-step__head { padding: 10px 18px; }
#hb-step-2 .booking-header { 
  padding: 14px 22px 12px; 
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#hb-step-2 .booking-header__price-from {
  margin-bottom: 0;
  margin-right: 8px;
  font-size: 0.75rem;
}
#hb-step-2 .booking-header__price { font-size: 2rem; line-height: 1.2; margin: 0; }
#hb-step-2 .booking-header__note { display: none; }
/* Desktop 2-column layout: title column on left (~33%), steps on right */
@media (min-width: 768px) {
  #hb-step-2 {
    flex-direction: row;
    align-items: stretch;
  }
  #hb-step-2 .hb-widget-title {
    width: 33%;
    flex-shrink: 0;
    border-bottom: none;
    border-right: 1px solid var(--border);
    padding: 32px 28px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
  }
  #hb-step-2 .hb-widget-title__sub { display: block; }
}
#hb-step-2 .booking-body { flex: 1; min-height: 0; overflow-y: visible; padding: 28px 36px 32px; }
#hb-step-2:has(#hb2-panel-4.is-active) .booking-body { padding-top: 12px; padding-bottom: 12px; }
#hb-step-2 .step-divider { margin: 8px 0; }
#hb-step-2 .field-label { margin-top: 12px; margin-bottom: 10px; font-size: 0.82rem; }
#hb-step-2 .dur-options { margin-bottom: 0; }
#hb-step-2 .booking-nav { margin-top: 20px; padding-top: 16px; }
#hb-step-2 .booking-nav .btn { flex: none; min-width: 160px; }
/* Wider stype-cards spacing */
#hb-step-2 .stype-cards { gap: 14px; }
#hb-step-2 .stype-card { padding: 22px 10px 18px; }
/* CTA section cards: white + shadow, cursor pointer on hover */
#cta-stype-cards { max-width: 540px; margin-left: auto; margin-right: auto; gap: 14px; }
#cta-stype-cards .stype-card {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-color: transparent;
  padding: 24px 12px 20px;
}
#cta-stype-cards .stype-card:hover {
  border-color: transparent;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
#cta-stype-cards .stype-card.is-selected {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1), 0 0 0 1px var(--gold);
}
/* Date + time: calendar-only first, then time-only after date picked */
#hb-step-2 #hb2-panel-dt.is-active { display: block; }
/* Calendar: shown until date picked, then hidden */
#hb-step-2 #hb2-panel-dt .dt-view--cal {
  display: block !important;
  max-width: 300px;
  margin: 0 auto;
}
#hb-step-2 #hb2-panel-dt.has-date .dt-view--cal { display: none !important; }
/* Time: hidden until date picked, then shown */
#hb-step-2 #hb2-panel-dt .dt-view--time { display: none !important; }
#hb-step-2 #hb2-panel-dt.has-date .dt-view--time { display: block !important; }
/* Compact calendar — smaller cells to reduce step height */
#hb-step-2 .cal__day { font-size: 0.68rem; aspect-ratio: unset; height: 28px; }
#hb-step-2 .cal__header { margin-bottom: 2px; padding: 4px 0; }
#hb-step-2 .cal__month { font-size: 0.76rem; }
#hb-step-2 .cal__dow { font-size: 0.55rem; padding: 1px 0 3px; }
#hb-step-2 .cal__grid { gap: 1px; }
/* Compact time slots */
#hb-step-2 .time-group { margin-bottom: 12px; }
#hb-step-2 .time-group__label { margin-bottom: 5px; font-size: 0.65rem; }
#hb-step-2 .time-slot { padding: 5px 11px; font-size: 0.76rem; }
/* Hide nav inside cal/time sub-views */
#hb-step-2 #hb2-panel-dt .dt-view--cal .booking-nav { display: none; }
#hb-step-2 #hb2-panel-dt .dt-view--time .booking-nav { display: none; }
#hb-step-2 #hb2-panel-dt .dt-view--time p { font-size: 0.7rem; margin-top: 6px; }
/* Hide "Change date" button — calendar always visible */
#hb-step-2 #hb2-btn-dt-cal-back { display: none; }
/* Time slots column heading */
#hb-step-2 .dt-view--time .dt-date-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
}
/* Confirm step: compact, no internal scroll */
#hb-step-2 .booking-body { overflow-y: visible; }
#hb-step-2 #hb2-panel-4.is-active {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}
#hb-step-2 #hb2-panel-4 .step-header { align-self: stretch; margin-bottom: 8px; }
/* Compact table rows */
#hb-step-2 #hb2-panel-4 .summary-table td { padding: 5px 0; }
#hb-step-2 #hb2-panel-4 .summary-table .summary-total td { padding-top: 10px; }
#hb-step-2 #hb2-panel-4 .summary-table { width: 100%; max-width: none; margin-bottom: 0; }
@media (min-width: 768px) {
  #hb-step-2 #hb2-panel-4 .summary-table { max-width: 360px; }
}
/* Hide elements that add height but aren't needed in the compact home widget */
#hb-step-2 #hb2-panel-4 #hb2-editing-note { display: none; }
#hb-step-2 #hb2-panel-4 .summary-wa-note { display: none; }
#hb-step-2 #hb2-panel-4 > #hb2-whatsapp { width: 100%; max-width: 360px; margin-top: 16px; }
#hb2-cal-display { font-size: 0.8rem; color: var(--gold); font-weight: 500; margin-top: 10px; min-height: 16px; }

/* Calendar */
.cal { width: 100%; }
.cal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cal__month { font-size: 0.9rem; font-weight: 600; }
.cal__nav {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: #fff;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-muted);
  transition: all 0.18s;
}
.cal__nav:hover { border-color: var(--text-muted); color: var(--text); }
.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal__dow {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  padding: 4px 0 8px;
}
.cal__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.18s;
  border: 1px solid transparent;
  background: #fff;
}
.cal__day:hover:not(.is-disabled):not(.is-selected) { background: var(--bg-warm); border-color: var(--border); }
.cal__day.is-disabled { color: var(--text-light); cursor: default; opacity: 0.45; }
.cal__day.is-selected { background: var(--gold); color: #fff; border-color: var(--gold); }
.cal__day.is-today { border-color: var(--border); font-weight: 600; }
.cal__day.is-empty { cursor: default; }

/* Time slots */
.time-group { margin-bottom: 20px; }
.time-group__label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-light);
  margin-bottom: 8px;
}
.time-slots { display: flex; flex-wrap: wrap; gap: 7px; }
.time-slot {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s;
  background: #fff;
}
.time-slot:hover:not(.is-booked) { border-color: var(--gold); color: var(--gold); }
.time-slot.is-selected { background: var(--gold); color: #fff; border-color: var(--gold); }
.time-slot.is-booked { color: var(--text-light); text-decoration: line-through; cursor: default; opacity: 0.5; }

/* Booking summary */
.summary-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.summary-table td { padding: 9px 0; font-size: 0.87rem; vertical-align: top; }
.summary-table td:first-child { color: var(--text-muted); width: 40%; }
.summary-table td:last-child { font-weight: 500; text-align: right; }
.summary-table .summary-total td { border-top: 1px solid var(--border); padding-top: 14px; }
.summary-total td { font-weight: 600; font-size: 0.95rem; }
.summary-total td:last-child { color: var(--gold); font-family: var(--font-heading); font-size: 1.2rem; }

.editing-note-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: color-mix(in srgb, var(--gold) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 28%, transparent);
  border-radius: 8px;
  padding: 10px 13px;
  margin-top: 8px;
  margin-bottom: 16px;
}
.editing-note-box__icon {
  font-size: 1rem;
  line-height: 1.55;
  flex-shrink: 0;
}
.editing-note-box p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.summary-wa-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

/* Booking footer nav */
.booking-nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}
.booking-nav .btn { flex: 1; }

/* Price display */
.live-price {
  padding: 14px 22px;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.live-price__label { font-size: 0.78rem; color: var(--text-muted); }
.live-price__total { font-family: var(--font-heading); font-size: 1.2rem; color: var(--text); }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .map-layout { grid-template-columns: 1fr; }
  .map-wrap { max-width: 560px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tour-body { grid-template-columns: 1fr; gap: 40px; }
  .band__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .wrap { padding: 0 20px; }
  .section { padding: 72px 0; }
  .nav__logo { font-size: 1.15rem; }
  .nav__icon-link { width: 36px; height: 36px; }
  .nav__icon-link svg { width: 20px; height: 20px; }
  .hero__title { font-size: clamp(2rem, 5vw, 3rem); }
  .sg-btn { width: 44px; height: 44px; }
  .sg-btn:disabled { opacity: 0.35; }
}

.nav__hamburger {
  display: none;
}
@media (max-width: 768px) {
  /* Show mobile elements */
  .tour-sticky-book { display: flex !important; align-items: center; justify-content: center; }
  .mobile-book-btn { display: flex !important; align-items: center; justify-content: center; }
  .nav__mobile-menu .nav__book { display: inline-block !important; }
  .nav__links a.nav__book { display: none !important; }

  :root { --nav-h: 60px; }
  .wrap { padding: 0 18px; }
  .section { padding: 60px 0; }

  .tours-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .nav__links { display: none; }
  .nav__logo { font-size: 1.1rem; }

  /* Hero background: reduce extension on mobile */
  .hero__bg {
    bottom: -60px !important;
  }

  .hero__overlay {
    bottom: -60px !important;
  }

  /* Hamburger menu */
  .nav__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    margin-left: auto;
    padding: 0;
  }

  .nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
    border-radius: 1px;
  }

  .nav__hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav__hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav__hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* When menu is open, always show nav with solid background */
  .nav__hamburger.is-open {
    z-index: 201;
  }
  .nav:has(.nav__hamburger.is-open) {
    background: rgba(255,255,255,0.98);
    backdrop-filter: none;
    border-bottom-color: var(--border);
    z-index: 200;
    overflow: visible;
  }
  .nav:has(.nav__hamburger.is-open) .nav__logo { color: var(--text); }
  .nav:has(.nav__hamburger.is-open) .nav__logo em { color: var(--gold); }
  .nav:has(.nav__hamburger.is-open) .nav__hamburger span { background: var(--text); }

  .nav--transparent .nav__hamburger span {
    background: #fff;
  }

  /* Mobile menu — full-screen overlay */
  .nav__mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 24px 40px;
    gap: 0;
    z-index: 199; /* below nav (200) so logo + ✕ stay on top */
    overflow-y: auto;
    animation: menuFadeIn 0.22s ease;
  }

  @keyframes menuFadeIn {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
  }

  .nav__mobile-menu.is-open {
    display: flex;
  }

  .nav__mobile-menu a {
    display: block;
    padding: 18px 24px;
    color: var(--text);
    font-size: 1.35rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
    text-align: center;
    width: 100%;
    max-width: 340px;
    border-radius: 10px;
    transition: color 0.18s, background 0.18s;
  }

  .nav__mobile-menu a:hover,
  .nav__mobile-menu a:active {
    color: var(--gold);
    background: none;
  }

  .nav__mobile-menu .nav__book {
    background: var(--gold);
    color: #fff !important;
    border-radius: 100px;
    font-size: 1rem;
    margin-top: 28px;
    padding: 16px 40px;
    display: inline-block;
    width: auto;
  }

  .nav__mobile-menu .nav__book:hover {
    background: var(--gold-dark);
    color: #fff !important;
  }

  .nav__icon-link { width: 36px; height: 36px; }
  .nav__icon-link svg { width: 20px; height: 20px; }
  .nav__logo { font-size: 1.1rem; }
  .hero__title { font-size: 2rem; }
  .hero__content { flex-direction: column; padding-top: calc(var(--nav-h) + 20px); padding-bottom: 48px; gap: 24px; }
  .hero__text { justify-content: flex-end; }
  .hero-booking { width: 100%; margin-bottom: -24px; border-radius: 12px; }
  .hero + .section { padding-top: 72px; }

  /* On mobile the booking widget is hidden — remove the desktop negative pull
     that would otherwise drag the social gallery up over the hero text */
  .booking-band { margin-bottom: 0; padding: 0; }
  .booking-band + .social-gallery-section { padding-top: 48px; }

  .band__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .band__item::before { display: none; }
  .band__item { padding: 0; }
  .band__item:nth-child(1), .band__item:nth-child(2) { border-bottom: 1px solid var(--border); padding-bottom: 20px; }

  .tour-highlights { grid-template-columns: 1fr; }

  .dur-options { grid-template-columns: 1fr; }

  .hb-widget-title { padding: 14px 16px 10px; font-size: 0.72rem; }

  .map-layout { gap: 32px; }

  /* ...existing code... */

  .mobile-book-btn { display: flex; }
  #booking-widget { display: none; }

  /* Improve form fields */
  .stype-card { padding: 20px 10px 16px; }
  .stype-card__icon { width: 48px; height: 48px; }
  .dur-option label { padding: 16px 14px; }
  .dur-option__time { font-size: 1rem; }

  /* Improve time slots */
  .time-slot {
    padding: 10px 12px;
    font-size: 0.85rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Improve buttons */
  .btn {
    min-height: 44px;
    font-size: 0.9rem;
    padding: 12px 20px;
  }

  /* Improve step counter visibility */
  .step-counter { font-size: 0.68rem; }

  /* Social gallery improvements */
  .sg-btn {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  /* Location carousel */
  .loc-carousel-btn {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 600px) {
  .wrap { padding: 0 16px; }
  .section { padding: 48px 0; }
  .hero__title { font-size: 1.8rem; }
  .hero__content { padding-bottom: 40px; gap: 16px; }

  /* Ensure hero background doesn't extend into content */
  .hero__bg {
    bottom: -40px !important;
  }

  .hero__overlay {
    bottom: -40px !important;
  }

  /* Increase padding and ensure proper layering */
  .booking-band + .social-gallery-section {
    padding-top: 60px !important;
  }

  /* Booking modal improvements */
  .booking-modal__content {
    max-height: 85vh;
    border-radius: 24px 24px 0 0;
  }

  .booking-modal__close {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  /* Improve form spacing */
  .stype-card {
    padding: 18px 8px 14px;
    gap: 8px;
  }
  .stype-card__name { font-size: 0.85rem; }
  .stype-card__desc { font-size: 0.68rem; }

  /* Better calendar */
  .cal__day {
    font-size: 0.75rem;
    height: 32px;
    aspect-ratio: unset;
  }
  .cal__dow { font-size: 0.6rem; }
  .cal__month { font-size: 0.85rem; }

  /* Duration options */
  .dur-option label {
    padding: 14px 12px;
    gap: 6px;
  }
  .dur-option__time { font-size: 0.95rem; }
  .dur-option__location { font-size: 0.68rem; }
  .dur-option__photos { font-size: 0.68rem; }
  .dur-option__price { font-size: 1rem; }

  /* Better mobile booking button */
  .mobile-book-btn {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 12px 18px;
    font-size: 0.92rem;
    display: flex;
  }

  /* Footer improvements */
  .footer__bottom { font-size: 0.72rem; }

  /* Social gallery on smaller screens */
  .sg-card {
    flex: 0 0 calc((100% - 32px) / 2.2);
  }

  @media (orientation: landscape) {
    .hero { min-height: 250px; }
    .booking-modal__content { max-height: 80vh; }
  }
}

@media (max-width: 480px) {
  .wrap { padding: 0 14px; }
  .hero__title { font-size: 1.7rem; }
  h2 { font-size: 1.6rem; }
  .tours-grid { gap: 12px; }

  /* Ensure hero background doesn't extend beyond hero section on extra small screens */
  .hero__bg {
    bottom: -30px !important;
  }

  .hero__overlay {
    bottom: -30px !important;
  }

  /* Ensure social gallery has enough clearance */
  .booking-band + .social-gallery-section {
    padding-top: 50px !important;
  }

  /* Ultra-small screen adjustments */
  .nav__logo { font-size: 1rem; }
  .nav__logo em { font-size: 1rem; }

  /* Section padding */
  .section { padding: 40px 0; }

  /* Booking form */
  .field-label { font-size: 0.72rem; letter-spacing: 0.06em; }
  .step-counter { font-size: 0.6rem; }

  .stype-card {
    padding: 16px 6px 12px;
    gap: 6px;
  }

  /* Calendar optimization */
  .cal__day {
    height: 28px;
    font-size: 0.7rem;
  }
  .cal__nav {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  /* Better time slots */
  .time-slot {
    padding: 8px 10px;
    font-size: 0.8rem;
    min-height: 40px;
  }

  .time-group__label { font-size: 0.65rem; }

  /* Summary table */
  .summary-table {
    font-size: 0.85rem;
  }
  .summary-table td {
    padding: 8px 0;
  }

  /* Buttons */
  .btn {
    padding: 10px 16px;
    font-size: 0.88rem;
  }

  /* Modal close button better positioned */
  .booking-modal__close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  /* Landscape adjustments */
  @media (orientation: landscape) {
    .hero { height: 50vh; min-height: 200px; }
    .hero__title { font-size: 1.4rem; }
  }
}

@media (max-width: 375px) {
  :root { --nav-h: 56px; }
  .wrap { padding: 0 12px; }

  .nav__logo { font-size: 0.95rem; }
  .nav__logo em { font-size: 0.95rem; }

  .hero__title { font-size: 1.6rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }

  .section { padding: 36px 0; }

  /* Ensure hero content is properly visible */
  .hero__bg {
    bottom: -20px !important;
  }

  .hero__overlay {
    bottom: -20px !important;
  }

  .booking-band + .social-gallery-section {
    padding-top: 50px !important;
  }

  /* Tighter buttons on small screens */
  .btn {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .stype-card {
    padding: 14px 6px 10px;
  }
  .stype-card__icon { width: 40px; height: 40px; }

  .mobile-book-btn {
    padding: 11px 16px;
    font-size: 0.88rem;
    display: flex;
  }

  /* Tighter calendar */
  .cal__day { height: 26px; font-size: 0.65rem; }

  /* Reduce padding on forms */
  .booking-body { padding: 16px 14px; }

  p { font-size: 0.95rem; }
}

@media (max-width: 320px) {
  :root { --nav-h: 54px; }
  .wrap { padding: 0 10px; }

  .nav__logo { font-size: 0.9rem; }
  .nav__book { display: none; }

  .hero__title { font-size: 1.5rem; }

  .section { padding: 32px 0; }

  /* Ensure hero doesn't overlap on tiny screens */
  .hero__bg {
    bottom: -20px !important;
  }

  .hero__overlay {
    bottom: -20px !important;
  }

  .booking-band + .social-gallery-section {
    padding-top: 50px !important;
  }

  .btn {
    padding: 9px 12px;
    font-size: 0.8rem;
    min-height: 40px;
  }

  .mobile-book-btn {
    padding: 10px 14px;
    font-size: 0.85rem;
    bottom: 10px;
    left: 10px;
    right: 10px;
    display: flex;
  }

  .time-slot { font-size: 0.75rem; }
  .field-label { font-size: 0.68rem; }

  p { font-size: 0.9rem; }

  .eyebrow { font-size: 0.65rem; }
}

/* === TOUR PAGE SPECIFIC RESPONSIVE IMPROVEMENTS === */

/* Photoshow/Gallery Improvements */
@media (max-width: 768px) {
  .photoshow { margin: 32px 0; }
  .photoshow__stage {
    height: 320px;
    border-radius: 12px;
  }
  .photoshow__arrow {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .photoshow__counter {
    font-size: 0.72rem;
    padding: 3px 8px;
  }
}

@media (max-width: 600px) {
  .photoshow { margin: 24px 0; }
  .photoshow__stage {
    height: 280px;
    border-radius: 10px;
  }

  .photoshow__strip {
    gap: 6px;
    padding-bottom: 2px;
  }

  .photoshow__thumb {
    flex: 0 0 calc((100% - 42px) / 5);
    border-radius: 6px;
    border-width: 2px;
  }

  .photoshow__thumb img {
    border-radius: 4px;
  }

  .photoshow__arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .photoshow__stage {
    height: 240px;
    border-radius: 8px;
  }

  .photoshow__arrow { display: none; }

  .photoshow__counter {
    font-size: 0.68rem;
    padding: 2px 6px;
    bottom: 8px;
    right: 8px;
  }

  .photoshow__strip {
    gap: 4px;
    margin-top: 6px;
  }

  .photoshow__thumb {
    flex: 0 0 calc((100% - 32px) / 4);
    border-radius: 4px;
  }
}

/* Calendar Improvements for Responsiveness */
@media (max-width: 768px) {
  .cal__day {
    font-size: 0.75rem;
    height: 32px;
  }
  .cal__dow {
    font-size: 0.6rem;
    padding: 3px 0 6px;
  }
  .cal__nav {
    width: 28px;
    height: 28px;
  }
  .cal__month { font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .cal { width: 100%; }
  .cal__day {
    font-size: 0.65rem;
    height: 28px;
  }
  .cal__dow {
    font-size: 0.55rem;
    padding: 2px 0 4px;
  }
}

/* Tour Page Layout Improvements */
@media (max-width: 768px) {
  .tour-body { grid-template-columns: 1fr; gap: 32px; padding-top: 24px; padding-bottom: 24px; }
  .tour-detail { width: 100%; }
  .booking-widget { position: static; top: auto; margin-top: 0; }
  .tour-hero { margin-bottom: 0; }
  .tour-highlights { grid-template-columns: 1fr; gap: 12px; }
  .tour-include-item { font-size: 0.85rem; }
  .route-stops { gap: 20px; }
  .route-stop { gap: 14px; }
  .route-stop__dot {
    width: 26px;
    height: 26px;
    font-size: 0.65rem;
  }
}

@media (max-width: 600px) {
  .tour-hero__title { font-size: 2rem; }
  .tour-desc { font-size: 0.95rem; line-height: 1.7; margin-bottom: 32px; }

  .tour-include-item {
    font-size: 0.84rem;
    gap: 9px;
  }

  .tour-include-item::before {
    width: 16px;
    height: 16px;
    font-size: 0.6rem;
  }

  .route-stop { gap: 12px; padding-bottom: 18px; }
  .route-stop__dot { width: 24px; height: 24px; }
  .route-stop__name { font-size: 0.88rem; }
  .route-stop__desc { font-size: 0.78rem; }
}

@media (max-width: 600px) {
  .tour-hero { height: 32vh; min-height: 200px; margin-bottom: 24px; }
  .tour-hero__content { padding-bottom: 40px; }
  .tour-hero__title { font-size: 1.6rem; }
  .tour-hero__sub { font-size: 0.9rem; }

  .tour-desc { font-size: 0.92rem; }
  .section-label { margin-bottom: 16px; }
}

/* Location Carousel Improvements */
@media (max-width: 768px) {
  .loc-carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .loc-carousel-wrap { margin-top: 32px; padding-top: 28px; }
  .loc-carousel-header { margin-bottom: 10px; }

  .location-photos {
    gap: 6px;
    margin-bottom: 12px;
  }

  .loc-photo {
    flex: 0 0 calc((100% - 12px) / 2);
  }

  .loc-carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .loc-carousel-nav { display: flex; gap: 4px; }
  .loc-carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .loc-photo {
    flex: 0 0 calc((100% - 6px) / 2);
    border-radius: 6px;
  }

  .loc-photo figcaption {
    font-size: 0.65rem;
    padding: 12px 6px 4px;
  }

  .loc-photos-note {
    font-size: 0.75rem;
    margin-top: 2px;
  }
}

/* Booking Widget Modal Improvements */
@media (max-width: 768px) {
  .booking-modal__content {
    max-height: 85vh;
    padding-bottom: 16px;
  }

  .booking-modal__close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 600px) {
  .booking-modal.is-open {
    align-items: stretch;
  }

  .booking-modal__content {
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Summary Table Improvements */
@media (max-width: 768px) {
  .summary-table {
    font-size: 0.88rem;
    width: 100%;
  }
  .summary-table td {
    padding: 8px 0;
  }
}

@media (max-width: 480px) {
  .summary-table {
    font-size: 0.84rem;
  }
  .summary-table td {
    padding: 7px 0;
    word-break: break-word;
  }
  .summary-table td:last-child {
    text-align: right;
  }
}

/* === MOBILE BOOKING BUTTON & MODAL === */
.mobile-book-btn {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 14px 20px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: var(--r-lg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  z-index: 7500;
  box-shadow: 0 4px 16px rgba(232, 160, 32, 0.35);
  transition: background 0.18s, transform 0.12s;
  min-height: 44px;
}
.mobile-book-btn:active { transform: translateY(1px); }
.mobile-book-btn:hover { background: var(--gold-dark); }

/* Tour page sticky "Book a session" button */
.tour-sticky-book {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 15px 20px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: var(--r-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 7500;
  box-shadow: 0 4px 20px rgba(232, 160, 32, 0.45), 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.18s, transform 0.12s, box-shadow 0.18s, opacity 0.3s;
  min-height: 52px;
  gap: 8px;
  letter-spacing: 0.01em;
}
.tour-sticky-book:active { transform: translateY(1px); }
.tour-sticky-book:hover { background: var(--gold-dark); }
.tour-sticky-book svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

@media (max-width: 768px) {
  /* Hide inline booking widget on mobile — shown via modal instead */

  /* Hide hero booking card */
  .hero-booking { display: none; }

  /* Hide social gallery nav arrows on mobile */
  .social-gallery-nav { display: none; }

  /* Show tour sticky book button */
  .tour-sticky-book {
    display: flex;
  }

  /* Keep mobile FAB elevated to avoid overlap with sticky button */
  .wa-fab {
    bottom: 84px;
  }
}

@media (max-width: 480px) {
  .wa-fab {
    bottom: 80px;
    right: 16px;
  }
}

.booking-modal .booking-widget {
  display: block !important; /* override mobile #booking-widget { display: none } */
  position: static;
  top: auto;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
}

.booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-end;
  animation: modalFadeIn 0.2s ease-out;
  overflow: hidden;
}
.booking-modal.is-open {
  display: flex;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.booking-modal__content {
  width: 100%;
  background: #fff;
  border-radius: 20px 20px 0 0;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding-bottom: 20px;
  position: relative;
  z-index: 9001;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.booking-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9002;
  transition: background 0.15s, transform 0.12s;
  padding: 0;
  min-width: 36px;
  min-height: 36px;
  flex-shrink: 0;
}
.booking-modal__close:hover { background: rgba(0, 0, 0, 0.8); }
.booking-modal__close:active { transform: scale(0.95); }

