@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Outfit:wght@300;400;500;600&display=swap");

html {
  font-size: 15px;
  position: relative;
  min-height: 100%;
  background: var(--cream-bg);
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem var(--cream-bg), 0 0 0 0.25rem color-mix(in srgb, var(--teal) 45%, transparent);
}

body {
  color: var(--black);
  font-family: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 300;
  line-height: 1.9;
  background: var(--cream-bg);
  margin-bottom: 0;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

:root {
  --teal: #008080;
  --teal-d: #006666;
  --teal-l: #339999;
  --teal-line: rgba(0, 128, 128, 0.18);
  --cream-bg: #fffdf5;
  --cream-card: #fffdf5;
  --cream-tag: #fee9be;
  --cream-sep: #f0d898;
  --grey-line: #cdc4b0;
  --black: #111111;
  --grey: #555555;
  --grey-l: #888888;
  --white: #ffffff;
  --sb-radius: 18px;
  --sb-shadow: 0 10px 30px color-mix(in srgb, var(--black) 8%, transparent);
  --sb-regions-purple: #8367dc;
  --sb-teal: var(--teal);
  --sb-sand: var(--cream-sep);
  --sb-copper: var(--cream-sep);
  --sb-ink: var(--black);
  --sb-muted: var(--grey);
  --sb-card: var(--cream-card);
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  color: var(--black);
  text-transform: none !important;
}

body a {
  color: var(--teal);
}

body a:hover {
  color: var(--teal-d);
}

main p,
.sb-subtitle,
.sb-card-text,
.sb-list li,
.sb-footer-text {
  font-size: 0.9rem;
  color: var(--grey);
}

.sb-main {
  min-height: calc(100vh - 64px);
}

.sb-nav {
  background: color-mix(in srgb, var(--cream-card) 92%, var(--white)) !important;
  backdrop-filter: blur(8px);
  border-bottom-color: var(--teal) !important;
}

.sb-nav .navbar-brand,
.sb-nav .nav-link,
.sb-nav .sb-brand-text,
.sb-nav .sb-cart-btn {
  color: var(--black) !important;
}

.sb-nav .navbar-toggler {
  border-color: var(--grey-line);
}

@media (max-width: 991.98px) {
  .sb-nav .navbar-toggler {
    margin-left: auto;
  }
}

.sb-nav.border-bottom {
  border-bottom: 1px solid var(--teal) !important;
}

.sb-logo {
  width: 65px;
  height: 65px;
  object-fit: contain;
  transform: scale(1.25);
  transform-origin: center;
}

@media (max-width: 576px) {
  .sb-logo {
    width: 48px;
    height: 48px;
    transform: scale(1.25);
  }
}

.sb-brand-text {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--black);
}

.navbar .nav-link {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 500;
  color: var(--black);
  opacity: 0.92;
}

.navbar .nav-link:hover {
  color: var(--teal);
  opacity: 1;
}

.sb-btn {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  font-weight: 600;
  border-radius: 999px;
  padding: 0.55rem 1rem;
}

.sb-btn:hover {
  background: var(--teal-d);
  border-color: var(--teal-d);
  color: var(--white);
}

.sb-btn-outline {
  font-family: "Outfit", system-ui, sans-serif;
  background: transparent;
  border-color: var(--teal-line);
  color: var(--teal);
  font-weight: 600;
  border-radius: 999px;
  padding: 0.55rem 1rem;
}

.sb-btn-outline:hover {
  background: color-mix(in srgb, var(--teal) 8%, transparent);
  border-color: var(--teal);
  color: var(--teal-d);
}

.sb-contact-row {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--black);
  cursor: pointer;
}

.sb-contact-link {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 120ms ease, border-color 120ms ease, opacity 120ms ease;
  opacity: 0.92;
}

.sb-contact-row:hover {
  color: var(--teal-d);
}

.sb-contact-row:hover .sb-contact-link {
  color: var(--teal-d);
  border-bottom-color: var(--teal-line);
  opacity: 1;
}

.sb-contact-link:hover {
  color: var(--teal-d);
  border-bottom-color: var(--teal-line);
  opacity: 1;
}

.sb-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--black);
  font-size: 1.2rem;
  padding: 0.3rem 0.5rem;
  opacity: 0.9;
  text-decoration: none;
  line-height: 1;
}

.sb-cart-btn:hover {
  color: var(--teal);
  opacity: 1;
}

.sb-section {
  padding: 3.25rem 0;
}

@media (min-width: 992px) {
  .sb-section {
    padding: 4.5rem 0;
  }
}

.sb-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--teal);
  background: var(--cream-bg);
}

.sb-hero .sb-section {
  padding: 2rem 0;
}

@media (min-width: 992px) {
  .sb-hero .sb-section {
    padding: 3rem 0;
  }
}

.sb-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.sb-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--cream-bg) 55%, transparent) 0%,
    var(--cream-bg) 72%,
    var(--cream-bg) 100%
  );
}

.sb-hero .container {
  position: relative;
  z-index: 1;
}

.sb-hero-card {
  background: var(--cream-card);
  border: 1px solid var(--grey-line);
  border-radius: var(--sb-radius);
  box-shadow: var(--sb-shadow);
  padding: 1rem;
}

.sb-hero-layout {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 992px) {
  .sb-hero-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.75rem;
    align-items: center;
  }
}

.sb-hero-definition {
  background: var(--cream-card);
  border: 1px solid var(--grey-line);
  border-radius: var(--sb-radius);
  box-shadow: var(--sb-shadow);
  padding: 1rem;
}

.sb-hero-definition .sb-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 300;
  line-height: 1.05;
  color: var(--black);
}

.sb-hero-definition .sb-title.display-6 {
  font-size: clamp(3rem, 7vw, 5.5rem) !important;
}

.sb-hero-accent {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-style: italic;
  font-weight: 300;
  color: var(--teal);
}

.sb-hero-definition .sb-subtitle {
  color: var(--grey);
}

@media (min-width: 992px) {
  .sb-hero-definition {
    padding: 1.5rem;
  }
}

.sb-hero-cards {
  width: 100%;
}

.sb-hero-carousel {
  position: relative;
  width: 100%;
}

.sb-hero-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.sb-hero-carousel-viewport::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.sb-hero-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 260px);
  gap: 0.85rem;
  padding: 0.25rem 0.25rem 2.25rem;
}

.sb-hero-carousel-track > * {
  scroll-snap-align: start;
}

@media (min-width: 1200px) {
  .sb-hero-carousel-track {
    grid-auto-columns: minmax(230px, 280px);
  }
}

.sb-hero-carousel-btn {
  position: absolute;
  bottom: 0.55rem;
  left: 0.35rem;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--grey-line);
  background: color-mix(in srgb, var(--cream-card) 88%, var(--black));
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  box-shadow: var(--sb-shadow);
  z-index: 3;
}

.sb-hero-carousel-btn:hover {
  background: var(--cream-card);
  border-color: var(--teal-line);
  color: var(--teal);
}

.sb-hero-carousel-btn--next {
  left: calc(0.35rem + 54px);
}

.sb-hero-carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.sb-hero-carousel-counter {
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--teal);
  opacity: 0.95;
  z-index: 3;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.sb-reveal-card {
  position: relative;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream-bg);
  border: 1px solid var(--grey-line);
  box-shadow: var(--sb-shadow);
  cursor: pointer;
  user-select: none;
}

.sb-reveal-card:focus {
  outline: none;
}

.sb-reveal-card:focus-visible {
  box-shadow: 0 0 0 0.15rem var(--teal-line), var(--sb-shadow);
}

.sb-reveal-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 450ms ease;
}

.sb-reveal-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,31,36,0.05), rgba(11,31,36,0.80));
  opacity: 0.95;
  transition: opacity 220ms ease;
}

.sb-reveal-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.95rem 1rem;
  gap: 0.35rem;
}

.sb-reveal-card-number {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  opacity: 0.85;
}

.sb-reveal-card-title {
  font-weight: 900;
  letter-spacing: -0.2px;
  color: rgba(255,255,255,0.96);
}

.sb-reveal-card-body {
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 260ms ease, opacity 220ms ease;
}

.sb-reveal-card:hover .sb-reveal-card-img {
  transform: scale(1.06);
}

.sb-reveal-card:hover .sb-reveal-card-body {
  max-height: 220px;
  opacity: 1;
}

.sb-reveal-card.is-open .sb-reveal-card-body {
  max-height: 220px;
  opacity: 1;
}

@media (max-width: 576px) {
  .sb-hero .sb-section {
    padding: 1.5rem 0;
  }

  .sb-hero-definition {
    padding: 0.95rem;
  }

  .sb-hero-definition .sb-subtitle {
    font-size: 1rem;
  }

  .sb-hero-carousel-viewport {
    padding: 0 0.75rem;
    scroll-padding-left: 0.75rem;
    scroll-padding-right: 0.75rem;
  }

  .sb-hero-carousel-track {
    grid-auto-columns: 100%;
    gap: 0.75rem;
    padding: 0.25rem 0 3rem;
  }

  .sb-hero-carousel-btn {
    width: 44px;
    height: 44px;
  }

  .sb-hero-carousel-btn--next {
    left: calc(0.35rem + 52px);
  }

  .sb-reveal-card {
    height: auto;
    aspect-ratio: 4 / 5;
  }
}

.sb-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.65rem;
}

.sb-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--black);
}

.sb-subtitle {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 300;
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.9;
}

.sb-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .sb-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .sb-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.sb-card {
  background: var(--cream-card);
  border: 1px solid var(--grey-line);
  border-radius: var(--sb-radius);
  box-shadow: var(--sb-shadow);
  overflow: hidden;
}

.sb-media-frame {
  height: 220px;
  background: color-mix(in srgb, var(--black) 6%, var(--cream-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sb-media-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.page-about .sb-media-img {
  object-fit: cover;
}

.page-destination .sb-section {
  padding-top: 1.5rem;
}

@media (min-width: 992px) {
  .page-destination .sb-section {
    padding-top: 2rem;
  }
}

.sb-blogpost-article {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.sb-blogpost-body {
  white-space: pre-wrap;
  text-align: center;
}

.sb-destination-tile {
  position: relative;
  display: block;
  border-radius: var(--sb-radius);
  overflow: hidden;
  background: var(--cream-bg);
  text-decoration: none;
  color: inherit;
  height: 280px;
}

.sb-destination-tile:hover {
  color: inherit;
}

.sb-destination-tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: var(--cream-bg);
}

.sb-home-destinations .sb-destination-tile {
  height: 420px;
}

.sb-home-destinations .sb-destination-tile-img {
  height: 100%;
}

.sb-destination-tile-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, rgba(11,31,36,0), rgba(11,31,36,0.72));
}

.sb-destination-tile-title {
  font-weight: 900;
  letter-spacing: -0.2px;
  color: rgba(255,255,255,0.96);
}

.sb-destination-tile-subtitle {
  margin-top: 0.35rem;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 0.92rem;
}

.sb-destination-tile-overlay .sb-badge {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255,255,255,0.92);
}

.sb-itinerary-tile {
  position: relative;
  display: block;
  border-radius: var(--sb-radius);
  overflow: hidden;
  background: var(--cream-bg);
  height: 420px;
}

.sb-itinerary-tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: var(--cream-bg);
}

.sb-itinerary-tile-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, rgba(11,31,36,0), rgba(11,31,36,0.78));
}

.sb-itinerary-tile-title {
  font-weight: 900;
  letter-spacing: -0.2px;
  color: rgba(255,255,255,0.96);
}

.sb-itinerary-tile-subtitle {
  margin-top: 0.35rem;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 0.92rem;
}

.sb-itinerary-tile-overlay .sb-badge {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255,255,255,0.92);
}

.sb-itinerary-detail-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border-radius: var(--sb-radius);
  overflow: hidden;
  background: var(--cream-bg);
  box-shadow: var(--sb-shadow);
}

.sb-itinerary-detail-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sb-itinerary-detail-media-empty {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--teal) 12%, var(--cream-bg)),
    color-mix(in srgb, var(--cream-tag) 55%, var(--cream-bg))
  );
}

.sb-itinerary-detail-panel {
  height: 100%;
  border-radius: var(--sb-radius);
  background: var(--cream-card);
  border: 1px solid var(--grey-line);
  box-shadow: var(--sb-shadow);
  padding: 1.2rem 1.25rem;
}

.sb-itinerary-detail-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--black);
}

.sb-itinerary-detail-text {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 300;
  color: var(--grey);
}

@media (min-width: 992px) {
  .sb-itinerary-detail-media {
    min-height: 420px;
  }
}

.sb-experience-tile {
  position: relative;
  display: block;
  border-radius: var(--sb-radius);
  overflow: hidden;
  background: var(--cream-bg);
  text-decoration: none;
  color: inherit;
  height: 320px;
}

.sb-experience-tile:hover {
  color: inherit;
}

.sb-experience-tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: var(--cream-bg);
}

.sb-experience-tile-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, rgba(11,31,36,0), rgba(11,31,36,0.72));
}

.sb-experience-tile-title {
  font-weight: 900;
  letter-spacing: -0.2px;
  color: rgba(255,255,255,0.96);
}

.sb-experience-tile-subtitle {
  margin-top: 0.35rem;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 0.92rem;
}

.sb-experience-tile-overlay .sb-badge {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255,255,255,0.92);
}

.sb-experience-hero {
  border-radius: var(--sb-radius);
  overflow: hidden;
  background: var(--cream-bg);
}

.sb-experience-hero--bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.sb-experience-hero-img {
  width: 100%;
  height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 767.98px) {
  .sb-experience-hero-img {
    height: 320px;
  }
}

.sb-section--after-hero {
  padding-top: 0.5rem;
}

.sb-exp-tabs.nav-tabs {
  gap: 2.25rem;
  justify-content: center;
  padding: 0.65rem 0.75rem 1.1rem;
  margin-bottom: 0.75rem;
  background: var(--cream-bg);
  border: 1px solid var(--grey-line);
  border-bottom: none;
  border-radius: var(--sb-radius) var(--sb-radius) 0 0;
}

.sb-exp-tabs .nav-link {
  border: none !important;
  border-color: transparent !important;
  background: transparent !important;
  background-color: transparent !important;
  padding: 0.25rem 0;
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  color: var(--grey);
  text-transform: none;
  position: relative;
  border-radius: 0;
  box-shadow: none;
  outline: none;
}

.sb-exp-tabs .nav-link:hover,
.sb-exp-tabs .nav-link:focus {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.sb-exp-tabs .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 3px;
  width: 0;
  background: var(--teal);
  border-radius: 999px;
  transition: width 180ms ease;
}

.sb-exp-tabs .nav-link:hover::after {
  width: 100%;
}

.sb-exp-tabs .nav-link.active {
  color: var(--teal);
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.sb-exp-tabs .nav-link.active::after {
  width: 100%;
}

.sb-exp-tab-content {
  border: 1px solid var(--grey-line);
  border-top: 1px solid var(--grey-line);
  border-radius: 0 0 var(--sb-radius) var(--sb-radius);
  overflow: hidden;
  background: var(--cream-card);
}

.sb-exp-image-col {
  background: var(--cream-bg);
}

.sb-exp-image {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sb-exp-detail-col {
  background: var(--cream-card);
}

.sb-exp-detail-body {
  padding: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sb-exp-panel-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--teal);
}

@media (max-width: 991.98px) {
  .sb-exp-detail-body {
    padding: 1.25rem;
  }
}

.sb-home-experiences .sb-exp-tabs.nav-tabs {
  gap: 1.75rem;
  padding: 0.55rem 0.75rem 0.85rem;
}

.sb-home-experiences .sb-exp-tabs .nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

.sb-home-experiences .sb-exp-tabs .nav-link::after {
  height: 2px;
  bottom: -12px;
}

.sb-home-experiences .sb-exp-tab-content {
  background: var(--cream-bg);
}

.sb-exp-stack-wrap {
  position: relative;
  min-height: 420px;
  margin-inline: auto;
  max-width: 980px;
}

.sb-exp-stack-card {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  overflow: hidden;
  transform-origin: center;
  transition: transform 360ms ease, opacity 360ms ease, box-shadow 360ms ease;
  box-shadow: 0 18px 36px color-mix(in srgb, var(--black) 20%, transparent);
  opacity: 0;
  pointer-events: none;
}

.sb-exp-stack-card[data-order] {
  transform: translateX(calc(var(--sb-stack-index, 0) * 36px)) scale(calc(1 - (var(--sb-stack-index, 0) * 0.06)));
}

.sb-exp-stack-card.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 5;
  transform: translateX(0) scale(1);
}

.sb-exp-stack-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sb-exp-stack-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    color-mix(in srgb, var(--cream-bg) 82%, transparent),
    color-mix(in srgb, var(--cream-bg) 35%, transparent)
  );
}

.sb-exp-stack-body {
  position: absolute;
  inset: auto auto 1.2rem 1.2rem;
  max-width: min(560px, calc(100% - 2.4rem));
  color: var(--black);
  z-index: 2;
}

.sb-exp-stack-duration {
  font-family: "Outfit", system-ui, sans-serif;
  text-transform: uppercase;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--teal);
  opacity: 0.95;
}

.sb-exp-stack-title {
  margin: 0.4rem 0 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  color: var(--black);
}

.sb-exp-stack-subtitle {
  margin: 0.55rem 0 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--grey);
  opacity: 1;
}

.sb-home-experiences .sb-exp-tab-content .row {
  align-items: center !important;
}

.sb-home-experiences .sb-exp-image-col,
.sb-home-experiences .sb-exp-detail-col {
  padding: 1.75rem;
}

.sb-home-experiences .sb-exp-image-col {
  background: transparent;
}

.sb-home-experiences .sb-exp-detail-col {
  background: transparent;
}

.sb-home-experiences .sb-exp-detail-body {
  padding: 0;
  text-align: center;
  align-items: center;
}

.sb-home-experiences .sb-exp-image {
  height: clamp(220px, 28vw, 340px);
  max-height: none;
  border-radius: 16px;
}

.sb-home-section {
  padding: 1.75rem 0;
}

.sb-home-section .sb-title.h1 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  text-transform: none;
  font-weight: 400;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--black);
}

.sb-home-section--band {
  background: var(--cream-card);
  border-top: 1px solid var(--teal);
  border-bottom: 1px solid var(--teal);
}

.sb-home-section--warm {
  background: var(--cream-bg);
  border-top: 1px solid var(--teal);
  border-bottom: 1px solid var(--teal);
}

.sb-home-section--subtle {
  background: var(--cream-bg);
  border-top: 1px solid var(--teal);
  border-bottom: 1px solid var(--teal);
}

/* Home page — teal section dividers & borders */
.page-home .sb-hero {
  border-bottom-color: var(--teal);
}

.page-home .sb-home-section--band,
.page-home .sb-home-section--warm,
.page-home .sb-home-section--subtle {
  border-top-color: var(--teal);
  border-bottom-color: var(--teal);
}

.page-home .sb-home-section:not(.sb-home-section--subtle) {
  border-top: 1px solid var(--teal);
}

.page-home .sb-hero-definition,
.page-home .sb-hero-card,
.page-home .sb-hero-carousel-btn,
.page-home .sb-reveal-card,
.page-home .sb-dest-filter:not(.is-active),
.page-home .sb-cta-panel,
.page-home .sb-card,
.page-home .sb-journey-card,
.page-home .sb-journey-card__footer,
.page-home .sb-btn-outline,
.page-home .sb-footer,
.page-home .sb-footer-bottom {
  border-color: var(--teal);
}

.page-seasons .sb-month-tabs.nav-tabs,
.page-seasons .sb-month-tab-content {
  border-color: var(--teal);
}

.page-home .sb-hero-carousel-btn:hover {
  border-color: var(--teal);
}

.sb-about-media-placeholder {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--teal) 12%, var(--cream-bg)),
    color-mix(in srgb, var(--cream-sep) 48%, var(--cream-bg))
  );
}

.sb-home-reviews .sb-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 340px));
  justify-content: center;
}

.sb-home-reviews .sb-card,
.sb-home-reviews .sb-cta-panel {
  background: var(--cream-card);
  border: 1px solid var(--teal-line);
}

.sb-home-reviews .sb-card-body,
.sb-home-reviews .sb-cta-panel {
  text-align: center;
}

.sb-home-reviews .sb-card-title {
  color: var(--black) !important;
}

.sb-home-reviews .sb-card-text,
.sb-home-reviews .text-muted {
  color: var(--grey) !important;
}

.sb-home-reviews .sb-badge {
  background: var(--cream-tag);
  color: var(--teal);
}

@media (max-width: 991.98px) {
  .sb-exp-stack-wrap {
    min-height: 360px;
  }
  .sb-home-experiences .sb-exp-image-col,
  .sb-home-experiences .sb-exp-detail-col {
    padding: 1.25rem;
  }
  .sb-home-experiences .sb-exp-image {
    height: 240px;
  }
}

.sb-experience-rich table {
  width: 100%;
  border-collapse: collapse;
  background: var(--cream-card);
  color: var(--black);
  border: 1px solid var(--teal-line);
}

.sb-experience-rich th,
.sb-experience-rich td {
  border: 1px solid var(--grey-line);
  padding: 0.5rem 0.62rem;
  vertical-align: top;
  line-height: 1.35;
}

.sb-experience-rich th {
  background: var(--teal);
  color: var(--white);
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 600;
  text-align: left;
}

.sb-experience-rich tbody tr:nth-child(even) td {
  background: color-mix(in srgb, var(--cream-tag) 35%, var(--cream-bg));
}

@media (min-width: 992px) {
  .sb-home-section {
    padding: 2.25rem 0;
  }
}

.sb-month-tabs.nav-tabs {
  border-bottom: none;
  gap: 1.35rem;
  justify-content: flex-start;
  padding: 0.55rem 0.75rem 0.75rem;
  margin-bottom: 0.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  background: var(--cream-bg);
  border: 1px solid var(--grey-line);
  border-bottom: none;
  border-radius: var(--sb-radius) var(--sb-radius) 0 0;
}

@media (min-width: 768px) {
  .sb-month-tabs.nav-tabs {
    justify-content: center;
  }
}

.sb-month-tabs .nav-link {
  border: none !important;
  border-color: transparent !important;
  background: transparent !important;
  background-color: transparent !important;
  padding: 0.25rem 0;
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--grey);
  text-transform: none;
  position: relative;
  white-space: nowrap;
  border-radius: 0;
  box-shadow: none;
  outline: none;
}

@media (min-width: 992px) {
  .sb-month-tabs .nav-link {
    font-size: 1.05rem;
  }
}

.sb-month-tabs .nav-link:hover,
.sb-month-tabs .nav-link:focus {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.sb-month-tabs .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 3px;
  width: 0;
  background: var(--teal);
  border-radius: 999px;
  transition: width 180ms ease;
}

.sb-month-tabs .nav-link:hover::after {
  width: 100%;
}

.sb-month-tabs .nav-link.active {
  color: var(--teal);
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.sb-month-tabs .nav-link.active::after {
  width: 100%;
}

.sb-month-tab-content {
  border: 1px solid var(--grey-line);
  border-radius: var(--sb-radius);
  overflow: hidden;
  background: var(--cream-card);
}

.sb-month-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1rem 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--black);
}

.sb-twemoji-icon {
  display: block;
  flex-shrink: 0;
}

.sb-dest-filter .sb-twemoji-icon {
  width: 1rem;
  height: 1rem;
}

.sb-month-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1rem;
}

@media (max-width: 991.98px) {
  .sb-month-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .sb-month-grid {
    grid-template-columns: 1fr;
  }
}

.sb-month-destination-tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream-bg);
  height: 320px;
}

.sb-month-destination-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sb-month-destination-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.85rem 0.9rem;
  background: linear-gradient(180deg, rgba(11,31,36,0), rgba(11,31,36,0.8));
}

.sb-month-destination-title {
  font-weight: 900;
  letter-spacing: -0.2px;
  color: rgba(255,255,255,0.96);
}

.sb-month-destination-subtitle {
  margin-top: 0.25rem;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 0.92rem;
}

.sb-activity-tile {
  position: relative;
  display: block;
  border-radius: var(--sb-radius);
  overflow: hidden;
  background: var(--cream-bg);
  height: 360px;
}

.sb-activity-tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: var(--cream-bg);
}

.sb-activity-tile-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, rgba(11,31,36,0), rgba(11,31,36,0.78));
}

.sb-activity-tile-title {
  font-weight: 900;
  letter-spacing: -0.2px;
  color: rgba(255,255,255,0.96);
}

.sb-activity-tile-subtitle {
  margin-top: 0.35rem;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 0.92rem;
}

.sb-activity-tile-overlay .sb-badge {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255,255,255,0.92);
}

.sb-destination-hero {
  border-radius: var(--sb-radius);
  overflow: hidden;
  background: var(--cream-bg);
}

.sb-destination-hero-img {
  width: 100%;
  max-height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
  background: var(--cream-bg);
}

.sb-destination-carousel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.6rem;
}

.sb-destination-carousel-img {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  background: var(--cream-bg);
}

.sb-destination-hero .carousel-control-prev,
.sb-destination-hero .carousel-control-next {
  width: 12%;
}

@media (max-width: 576px) {
  .sb-destination-tile {
    height: 220px;
  }
  .sb-destination-tile-img {
    height: 100%;
  }
  .sb-home-destinations .sb-destination-tile {
    height: 320px;
  }
  .sb-home-destinations .sb-destination-tile-img {
    height: 100%;
  }
  .sb-itinerary-tile {
    height: 340px;
  }
  .sb-itinerary-tile-img {
    height: 100%;
  }
  .sb-activity-tile {
    height: 300px;
  }
  .sb-activity-tile-img {
    height: 100%;
  }
  .sb-destination-hero-img {
    max-height: 380px;
  }
  .sb-destination-carousel-grid {
    grid-template-columns: 1fr;
  }
  .sb-destination-carousel-img {
    height: 190px;
  }
}

.sb-card-body {
  padding: 1rem;
}

.sb-card-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.sb-card-text {
  color: var(--grey);
  margin: 0;
}

.sb-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--cream-tag);
  color: var(--teal);
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sb-badge--muted {
  background: color-mix(in srgb, var(--white) 18%, transparent);
  color: var(--white);
  border: 1px solid color-mix(in srgb, var(--white) 35%, transparent);
}

.sb-dest-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  align-items: center;
}

.sb-dest-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--grey-line);
  background: var(--cream-card);
  color: var(--black);
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.sb-dest-filter:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.sb-dest-filter.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.sb-dest-filter.is-active .sb-dest-filter-icon {
  opacity: 1;
}

.sb-dest-filter-icon {
  font-size: 1rem;
  opacity: 0.85;
}

.sb-list li {
  margin: 0.25rem 0;
  color: var(--grey);
}

.sb-list {
  padding-left: 1.1rem;
  margin: 0;
}

.sb-cta-panel {
  border-radius: var(--sb-radius);
  border: 1px solid var(--grey-line);
  background: var(--cream-card);
  box-shadow: var(--sb-shadow);
  padding: 1.25rem;
}

@media (min-width: 992px) {
  .sb-cta-panel {
    padding: 2rem;
  }
}

.sb-footer {
  position: relative;
  color: var(--black);
  background: var(--cream-bg);
  border-top: 1px solid var(--grey-line);
}

.sb-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: color-mix(in srgb, var(--cream-card) 82%, transparent);
  pointer-events: none;
}

.sb-footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('/images/footer-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.42;
  pointer-events: none;
}

.sb-footer .container {
  position: relative;
  z-index: 1;
}

.sb-logo-footer {
  width: 70px;
  height: 70px;
  filter: drop-shadow(0 4px 12px color-mix(in srgb, var(--black) 12%, transparent));
  transform: scale(1.25);
  transform-origin: center;
}

.sb-footer-brand {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--black);
}

.sb-footer-title {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal-d);
  margin-bottom: 0.6rem;
  text-shadow: 0 1px 0 var(--cream-card);
}

.sb-footer-text {
  color: var(--black);
  text-shadow: none;
}

.sb-footer a,
.sb-footer a:visited {
  color: var(--teal-d) !important;
  text-shadow: 0 1px 0 var(--cream-card);
}

.sb-footer a:hover {
  color: var(--teal) !important;
}

.sb-footer-link,
.sb-footer-link:visited {
  display: block;
  color: var(--teal-d);
  text-decoration: none;
  line-height: 1.3;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 600;
  text-shadow: 0 1px 0 var(--cream-card);
}

.sb-footer-link:hover {
  color: var(--teal);
  text-decoration: underline;
}

.sb-footer .bi {
  color: var(--teal-d);
}

.sb-footer-bottom {
  border-top: 1px solid var(--grey-line);
  color: var(--black);
  text-shadow: none;
}

/* ----- Kenya regions (interactive map page) ----- */

.sb-regions-lead {
  line-height: 1.65;
  color: var(--grey);
}

.sb-regions-map-hint {
  color: var(--grey-l);
}

.sb-regions-map-shell {
  background: var(--cream-card);
  border: 1px solid var(--grey-line);
  border-radius: var(--sb-radius);
  padding: clamp(0.85rem, 3vw, 1.85rem);
  overflow: visible;
}

.sb-regions-map-wrap {
  position: relative;
  margin-inline: auto;
  max-width: min(760px, 100%);
  min-height: 280px;
  overflow: visible;
}

.sb-regions-map-legend {
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--grey-line);
}

.sb-regions-map-legend__title {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.85rem;
}

.sb-regions-map-legend__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sb-regions-map-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.sb-regions-map-legend__swatch {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 3px;
  border: 1px solid color-mix(in srgb, var(--black) 18%, var(--grey-line));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--white) 35%, transparent);
}

.sb-regions-map-legend__dot {
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--teal);
  border: 1.5px solid color-mix(in srgb, var(--cream-bg) 92%, var(--white));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--black) 18%, var(--grey-line));
}

.sb-regions-map-legend__label {
  font-size: 0.92rem;
  line-height: 1.3;
  color: var(--black);
}

.sb-regions-map-legend__item--city {
  margin-left: auto;
}

@media (max-width: 767.98px) {
  .sb-regions-map-legend__item--city {
    margin-left: 0;
  }
}

.sb-regions-svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 22px color-mix(in srgb, var(--black) 10%, transparent));
}

.sb-regions-map-provinces .sb-map-region {
  fill: var(--sb-region-fill, #d8f0f0);
  stroke: color-mix(in srgb, var(--black) 22%, var(--grey-line));
  stroke-width: 0.85px;
  cursor: pointer;
  transition: fill 0.15s ease, stroke 0.15s ease, filter 0.15s ease;
}

.sb-regions-map-provinces .sb-map-region:hover,
.sb-regions-map-provinces .sb-map-region.is-hovered,
.sb-regions-map-provinces .sb-map-region.is-active,
.sb-regions-map-provinces .sb-map-region:focus-visible {
  fill: color-mix(in srgb, var(--teal) 18%, var(--sb-region-fill, #d8f0f0));
  stroke: color-mix(in srgb, var(--teal) 55%, var(--black));
  filter: brightness(0.97);
}

.sb-regions-map-provinces .sb-map-region:focus {
  outline: none;
}

.sb-regions-map-provinces .sb-map-region:focus:not(:focus-visible) {
  outline: none;
}

.sb-regions-map-labels {
  pointer-events: none;
}

.sb-map-city-dot {
  fill: var(--teal);
  stroke: color-mix(in srgb, var(--cream-bg) 92%, var(--white));
  stroke-width: 1.5px;
  paint-order: stroke fill;
}

.sb-map-nairobi-leader {
  stroke: color-mix(in srgb, var(--black) 35%, var(--grey));
  stroke-width: 0.75px;
  fill: none;
}

.sb-regions-svg .sb-map-city-pin--nairobi .sb-map-label--city {
  font-size: 11px;
  letter-spacing: 0.01em;
}

.sb-regions-svg .sb-map-label--region {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.01em;
  fill: color-mix(in srgb, var(--black) 78%, var(--grey));
  stroke: none;
  paint-order: normal;
}

.sb-regions-svg .sb-map-label--city {
  font-family: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.02em;
  fill: color-mix(in srgb, var(--black) 70%, var(--grey));
  stroke: color-mix(in srgb, var(--cream-bg) 90%, var(--white));
  stroke-width: 2px;
  paint-order: stroke fill;
  opacity: 0.9;
}

.sb-regions-float {
  position: absolute;
  z-index: 5;
  inset-inline-end: clamp(8px, 2vw, 18px);
  top: 50%;
  translate: 0 -50%;
  width: min(392px, calc(100vw - 2rem));
  max-height: min(572px, 78vh);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(1rem, 3vw, 1.35rem);
  background: var(--cream-card);
  color: var(--black);
  border: 1px solid var(--grey-line);
  border-radius: 16px;
  box-shadow:
    0 24px 55px color-mix(in srgb, var(--black) 18%, transparent),
    0 6px 16px color-mix(in srgb, var(--black) 10%, transparent);
}

.sb-regions-float-close {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid var(--grey-line);
  background: var(--cream-bg);
  color: var(--grey);
  line-height: 1;
  font-size: 1.4rem;
  font-weight: 400;
}

.sb-regions-float-close:hover {
  background: color-mix(in srgb, var(--sb-regions-purple) 9%, var(--cream-bg));
}

.sb-regions-float-bar {
  height: 3px;
  width: clamp(140px, 45%, 200px);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--sb-regions-purple),
    color-mix(in srgb, var(--cream-sep) 55%, var(--teal))
  );
}

.sb-regions-float-badge {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.2rem 0.62rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--sb-regions-purple) 14%, var(--cream-bg));
  color: var(--sb-regions-purple);
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.72rem;
}

.sb-regions-float-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.35rem, 4vw, 1.62rem);
  font-weight: 400;
  line-height: 1.14;
  margin: 0.55rem 0 0;
  letter-spacing: -0.015em;
  color: var(--black);
}

.sb-regions-float-sub {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.42;
  margin: 0.45rem 0 0;
}

.sb-regions-float-quote {
  margin: 0.75rem 0 0;
  font-size: 0.93rem;
  color: var(--grey);
  line-height: 1.5;
}

.sb-regions-float-sect-label {
  margin-top: 1rem;
  font-size: 0.65rem;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
}

.sb-regions-float-overview {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  line-height: 1.53;
  color: var(--grey);
}

.sb-regions-float-highlights {
  margin: 0.55rem 0 0;
  padding-inline-start: 1.08rem;
  font-size: 0.87rem;
  line-height: 1.52;
  color: var(--grey);
}

.sb-regions-float-highlights li + li {
  margin-top: 0.4rem;
}

.sb-regions-float-actions {
  margin-top: 1.05rem;
  display: flex;
  flex-wrap: wrap;
}

.sb-regions-float-add {
  width: 100%;
  text-decoration: none;
  text-align: center;
}

@media (max-width: 991.98px) {
  .sb-regions-float {
    top: auto;
    bottom: clamp(12px, 3vw, 18px);
    translate: none;
    inset-inline: auto auto;
    width: calc(100% - 28px);
    left: 50%;
    translate: -50% 0;
    max-height: min(540px, 68vh);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sb-map-region {
    transition: none;
  }
}

.sb-regions-pill {
  display: inline-flex;
  padding: 0.25rem 0.72rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--sb-regions-purple) 16%, var(--cream-tag));
  color: var(--sb-regions-purple);
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
}

.sb-regions-muted-label {
  color: var(--grey-l);
}

.sb-regions-list-sub {
  color: var(--grey);
}

.sb-regions-body p {
  color: var(--grey);
}

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

.sb-regions-highlight-list {
  padding-inline-start: 1.1rem;
  color: var(--grey);
}

.sb-regions-highlight-list .sb-regions-hl-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 600;
  color: var(--black);
}

.sb-regions-contact-line {
  color: var(--grey-l);
}

.sb-admin-thumb {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--grey-line);
}

.sb-regions-inline-eyebrow {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
}

.sb-regions-bottom-brand {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--black);
  opacity: 0.88;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.sb-regions-hero .sb-kicker {
  letter-spacing: 0.3em;
}

/* ----- Seasons page ----- */

.page-seasons .sb-section {
  padding-top: 1.25rem;
  padding-bottom: 3rem;
}

@media (min-width: 992px) {
  .page-seasons .sb-section {
    padding-top: 1.75rem;
    padding-bottom: 4rem;
  }
}

.page-seasons .sb-seasons-category-tabs.nav-tabs {
  border-bottom: none;
  gap: 2rem;
  justify-content: center;
  padding: 0 0 0.25rem;
  margin-bottom: 0;
  flex-wrap: nowrap;
  background: transparent;
  border: none;
  border-radius: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .page-seasons .sb-seasons-category-tabs.nav-tabs {
    gap: 2.5rem;
  }
}

.page-seasons .sb-seasons-category-tabs .nav-link {
  border: none !important;
  background: transparent !important;
  padding: 0.35rem 0;
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--grey);
  position: relative;
  white-space: nowrap;
  border-radius: 0;
  box-shadow: none;
}

@media (min-width: 992px) {
  .page-seasons .sb-seasons-category-tabs .nav-link {
    font-size: 1.55rem;
  }
}

.page-seasons .sb-seasons-category-tabs .nav-link:hover,
.page-seasons .sb-seasons-category-tabs .nav-link:focus {
  color: var(--teal);
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.page-seasons .sb-seasons-category-tabs .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 3px;
  width: 0;
  background: var(--teal);
  border-radius: 999px;
  transition: width 180ms ease;
}

.page-seasons .sb-seasons-category-tabs .nav-link:hover::after,
.page-seasons .sb-seasons-category-tabs .nav-link.active::after {
  width: 100%;
}

.page-seasons .sb-seasons-category-tabs .nav-link.active {
  color: var(--teal);
  background: transparent !important;
  border: none !important;
}

.page-seasons .sb-seasons-category-content {
  padding-top: 0.75rem;
}

.page-seasons .sb-seasons-monthly-guide .sb-title.h1 {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.page-seasons .sb-seasons-monthly-guide .sb-subtitle {
  margin-top: 0 !important;
  margin-bottom: 0;
}

.page-seasons .sb-seasons-monthly-guide .sb-month-tabs {
  margin-top: 1rem !important;
}

.page-seasons .sb-seasons-overview-guide {
  max-width: none;
}

.page-seasons .sb-title.display-6 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--black);
}

.page-seasons .sb-subtitle,
.page-seasons .sb-seasons-climate__lead,
.page-seasons .sb-seasons-row__text {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
}

.page-seasons .sb-seasons-eyebrow {
  display: block;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.page-seasons .sb-seasons-best__head {
  margin-bottom: 1rem;
}

.page-seasons .sb-seasons-best__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .page-seasons .sb-seasons-best__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

.page-seasons .sb-seasons-best-card {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  border: 1px solid #e8e0d0;
  background: #fff9ee;
  box-shadow: none;
}

.page-seasons .sb-seasons-media {
  position: relative;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--teal) 72%, var(--black)) 0%,
    color-mix(in srgb, var(--teal) 45%, var(--teal-d)) 100%
  );
  min-height: 140px;
}

.page-seasons .sb-seasons-media--tall {
  height: 100%;
  min-height: clamp(200px, 36vw, 320px);
}

.page-seasons .sb-seasons-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-seasons .sb-seasons-media:has(img) .sb-seasons-media__note {
  opacity: 0;
  pointer-events: none;
}

.page-seasons .sb-seasons-media:has(img) .sb-seasons-media__label {
  opacity: 0;
  pointer-events: none;
}

.page-seasons .sb-seasons-media__label {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  left: 0.75rem;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--white) 88%, transparent);
  text-shadow: 0 1px 2px color-mix(in srgb, var(--black) 35%, transparent);
}

.page-seasons .sb-seasons-media__note {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--white) 42%, transparent);
}

.page-seasons .sb-seasons-best-card__body {
  padding: 1.05rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.page-seasons .sb-seasons-best-card__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.page-seasons .sb-seasons-best-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
}

.page-seasons .sb-seasons-best-card__icon img {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}

.page-seasons .sb-seasons-best-card__title {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase !important;
  font-style: normal;
  color: var(--teal);
  margin: 0;
  line-height: 1.2;
}

.page-seasons .sb-seasons-best-card__dates {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--teal);
  margin: 0 0 0.45rem;
  line-height: 1.2;
}

.page-seasons .sb-seasons-best-card__picks {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--grey);
  margin: 0;
  line-height: 1.45;
}

.page-seasons .sb-seasons-best-card__picks-prefix {
  font-weight: 600;
  color: var(--black);
}

.page-seasons .sb-seasons-climate {
  border-radius: var(--sb-radius);
  border: 1px solid var(--grey-line);
  background: color-mix(in srgb, var(--cream-card) 92%, var(--white));
  box-shadow: var(--sb-shadow);
}

.page-seasons .sb-seasons-climate__inner {
  padding: 1.35rem 1.35rem 1.5rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .page-seasons .sb-seasons-climate__inner {
    padding: 2rem 2rem 2.25rem;
  }
}

@media (min-width: 576px) {
  .page-seasons .sb-seasons-climate__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-seasons .sb-seasons-climate__grid {
    grid-column: 1 / -1;
  }
}

.page-seasons .sb-seasons-climate__lead {
  margin: 0;
  max-width: none;
}

.page-seasons .sb-seasons-climate__lead:last-of-type {
  margin-bottom: 0;
}

.page-seasons .sb-seasons-climate__grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .page-seasons .sb-seasons-climate__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.page-seasons .sb-seasons-climate-card {
  border-radius: calc(var(--sb-radius) - 6px);
  border: 1px solid var(--grey-line);
  background: color-mix(in srgb, var(--white) 55%, var(--cream-card));
  padding: 1rem 1.1rem;
}

.page-seasons .sb-seasons-climate-card__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--teal);
  margin: 0 0 0.35rem;
}

.page-seasons .sb-seasons-climate-card p {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.55;
}

.page-seasons .sb-seasons-four {
  width: 100%;
}

.page-seasons .sb-seasons-four > .sb-seasons-eyebrow {
  padding-bottom: 1.25rem;
  margin-bottom: 0;
  border-bottom: 1px solid var(--teal);
}

.page-seasons .sb-seasons-four__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
  width: 100%;
}

@media (min-width: 768px) {
  .page-seasons .sb-seasons-four__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.page-seasons .sb-seasons-row {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--teal);
}

.page-seasons .sb-seasons-four__grid .sb-seasons-row {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  padding-bottom: 0;
  border-bottom: none;
  gap: 0;
  height: 100%;
  border-radius: var(--sb-radius);
  border: 1px solid var(--grey-line);
  background: color-mix(in srgb, var(--cream-card) 92%, var(--white));
  box-shadow: var(--sb-shadow);
  overflow: hidden;
}

.page-seasons .sb-seasons-four__grid .sb-seasons-row__copy {
  padding: 1.1rem 1.25rem 1.35rem;
  flex: 1;
}

.page-seasons .sb-seasons-four__grid .sb-seasons-row__text {
  max-width: none;
}

.page-seasons .sb-seasons-four__grid .sb-seasons-row__title {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.page-seasons .sb-seasons-row:first-of-type {
  margin-top: 1.25rem;
}

.page-seasons .sb-seasons-four__grid .sb-seasons-row:first-of-type {
  margin-top: 0;
}

.page-seasons .sb-seasons-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .page-seasons .sb-seasons-row {
    grid-template-columns: minmax(240px, 38%) 1fr;
    gap: 2rem;
  }

  .page-seasons .sb-seasons-four__grid .sb-seasons-row {
    grid-template-columns: none;
  }
}

.page-seasons .sb-seasons-four__grid .sb-seasons-media--tall {
  min-height: clamp(180px, 20vw, 240px);
  height: auto;
  border-radius: 0;
}

.page-seasons .sb-seasons-row__media {
  min-height: 0;
}

.page-seasons .sb-seasons-row__kicker {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.35rem;
}

.page-seasons .sb-seasons-row__kicker::before {
  content: "— ";
  letter-spacing: 0;
}

.page-seasons .sb-seasons-row__title {
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.page-seasons .sb-seasons-row__text {
  margin: 0 0 1rem;
  max-width: 52ch;
  font-size: 0.9rem;
}

.page-seasons .sb-seasons-row__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-seasons .sb-seasons-row__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.45rem 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--grey);
}

.page-seasons .sb-seasons-row__list .bi {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--teal);
  font-size: 1rem;
}

.sb-seasons-cta-banner {
  background: linear-gradient(
    120deg,
    color-mix(in srgb, var(--teal) 88%, var(--black)) 0%,
    color-mix(in srgb, var(--teal) 55%, var(--teal-d)) 100%
  );
  color: var(--white);
  padding: 2.25rem 0;
  border-block: 1px solid color-mix(in srgb, var(--black) 18%, transparent);
}

@media (min-width: 992px) {
  .sb-seasons-cta-banner {
    padding: 2.75rem 0;
  }
}

.sb-seasons-cta-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .sb-seasons-cta-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.sb-seasons-cta-banner__kicker {
  display: block;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--white) 72%, transparent);
  margin-bottom: 0.5rem;
}

.sb-seasons-cta-banner__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  color: var(--white);
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.sb-seasons-cta-banner__sub {
  margin: 0;
  max-width: 46ch;
  font-size: 0.9rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--white) 82%, transparent);
}

.sb-seasons-cta-banner__action {
  flex-shrink: 0;
}

.sb-seasons-cta-banner__btn {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.6rem 1.35rem;
  background: var(--white);
  border: 2px solid var(--white);
  color: var(--teal);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.sb-seasons-cta-banner__btn:hover {
  background: transparent;
  color: var(--white);
  border-color: color-mix(in srgb, var(--white) 55%, transparent);
}

/* Destination detail — plan trip CTA (after extended description) */
.sb-destination-plan-cta {
  border-radius: var(--sb-radius);
  padding: 1.35rem 1.35rem 1.5rem;
  background: linear-gradient(135deg, var(--teal-d) 0%, color-mix(in srgb, var(--teal-d) 88%, var(--black)) 100%);
  color: var(--white);
  box-shadow: var(--sb-shadow);
}

@media (min-width: 768px) {
  .sb-destination-plan-cta {
    padding: 1.5rem 2rem 1.65rem;
  }
}

.sb-destination-plan-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.sb-destination-plan-cta-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}

.sb-destination-plan-cta-kicker {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--white) 70%, transparent);
  margin: 0.45rem 0 0;
  text-align: right;
  white-space: nowrap;
  line-height: 1.3;
  flex: 0 0 auto;
}

.sb-destination-plan-cta-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: var(--white);
  flex: 1 1 auto;
  min-width: 0;
}

.sb-destination-plan-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.75rem;
}

.sb-destination-plan-cta-text {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--white) 88%, transparent);
  margin: 0;
  flex: 1 1 14rem;
  min-width: 0;
  max-width: 48ch;
}

.btn.sb-destination-plan-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.75rem;
  flex: 0 0 auto;
  margin-left: auto;
  border-radius: var(--sb-radius);
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn.sb-destination-plan-cta-btn:hover {
  background: color-mix(in srgb, var(--white) 92%, transparent);
  color: var(--teal-d);
  border-color: var(--white);
}

/* ----- Curated journeys (experiences) ----- */

.sb-home-experiences-section {
  position: relative;
  overflow: hidden;
}

.sb-home-experiences-section > .container {
  position: relative;
  z-index: 1;
}

.sb-home-experiences-section::before {
  content: "";
  position: absolute;
  top: -4rem;
  right: -6%;
  width: min(48vw, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--cream-sep) 70%, transparent);
  box-shadow:
    0 0 0 42px color-mix(in srgb, var(--cream-sep) 22%, transparent),
    0 0 0 84px color-mix(in srgb, var(--cream-sep) 12%, transparent);
  pointer-events: none;
  opacity: 0.65;
}

.sb-journey-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  border-bottom: 1px solid var(--grey-line);
  padding-bottom: 0.65rem;
}

.sb-journey-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.15rem;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--grey-l);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.sb-journey-filter:hover {
  color: var(--teal);
}

.sb-journey-filter.is-active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.sb-journey-filter__emoji {
  font-size: 0.95rem;
  line-height: 1;
}

.sb-journey-count {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}

.sb-journey-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .sb-journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .sb-journey-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.sb-journey-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--sb-radius);
  border: 1px solid var(--grey-line);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--black) 5%, transparent);
}

.sb-journey-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: color-mix(in srgb, var(--teal) 55%, var(--teal-d));
  overflow: hidden;
  text-decoration: none;
}

.sb-journey-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sb-journey-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--teal) 70%, var(--black)),
    color-mix(in srgb, var(--teal-d) 85%, var(--black))
  );
}

.sb-journey-card__media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 36, 0.08), rgba(11, 31, 36, 0.35));
  pointer-events: none;
}

.sb-journey-card__badge {
  position: absolute;
  z-index: 2;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.5rem;
  border-radius: 4px;
}

.sb-journey-card__badge--featured {
  top: 0.65rem;
  left: 0.65rem;
  background: var(--teal);
  color: var(--white);
}

.sb-journey-card__badge--nights {
  top: 0.65rem;
  right: 0.65rem;
  background: color-mix(in srgb, var(--white) 92%, transparent);
  color: var(--black);
}

.sb-journey-card__body {
  padding: 1rem 1.05rem 1.1rem;
}

.sb-journey-card__kicker {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.35rem;
}

.sb-journey-card__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5rem;
}

.sb-journey-card__title a {
  color: var(--black);
  text-decoration: none;
}

.sb-journey-card__title a:hover {
  color: var(--teal-d);
}

.sb-journey-card__lead {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--grey);
  margin: 0 0 0.75rem;
}

.sb-journey-card__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.35rem;
  margin-bottom: 0.85rem;
}

.sb-journey-card__tag {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.45rem;
  border-radius: 4px;
  background: var(--cream-tag);
  color: var(--black);
}

.sb-journey-card__tag-arrow {
  color: var(--grey-l);
  font-size: 0.7rem;
}

.sb-journey-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
  margin-bottom: 0.85rem;
}

.sb-journey-card__meta-label {
  display: block;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.15rem;
}

.sb-journey-card__meta-value {
  font-size: 0.78rem;
  color: var(--black);
  line-height: 1.35;
}

.sb-journey-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--grey-line);
}

.sb-journey-card__link {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--teal);
}

.sb-journey-card__link:hover {
  color: var(--teal-d);
}

.sb-journey-card__price {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 0.88rem;
  color: var(--grey);
  white-space: nowrap;
}

/* Journey detail */

.page-journey-detail .sb-journey-detail-top {
  background: var(--cream-bg);
  border-bottom: 1px solid var(--grey-line);
}

.sb-journey-detail-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.sb-journey-detail-top__label,
.sb-journey-detail-top__back {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--teal);
}

.sb-journey-detail-hero {
  background: color-mix(in srgb, var(--teal) 50%, var(--teal-d));
  max-height: 280px;
  overflow: hidden;
}

.sb-journey-detail-hero__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.sb-journey-detail {
  background: var(--cream-bg);
}

.sb-journey-detail__kicker {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.5rem;
}

.sb-journey-detail__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.65rem;
  color: var(--black);
}

.sb-journey-detail__route {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1rem;
  color: var(--grey);
  margin: 0;
  max-width: 52ch;
}

.sb-journey-spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--grey-line);
  border-radius: calc(var(--sb-radius) - 4px);
  overflow: hidden;
  background: var(--white);
}

.sb-journey-spec__cell {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--grey-line);
  border-right: 1px solid var(--grey-line);
}

.sb-journey-spec__cell:nth-child(2n) {
  border-right: none;
}

.sb-journey-spec__cell:nth-last-child(-n + 2) {
  border-bottom: none;
}

.sb-journey-spec__label {
  display: block;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.25rem;
}

.sb-journey-spec__value {
  font-size: 0.82rem;
  color: var(--black);
  line-height: 1.45;
}

.sb-journey-detail-block__title {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase !important;
  color: var(--teal);
  margin: 0 0 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--teal-line);
}

.sb-journey-detail-prose p {
  margin: 0 0 0.75rem;
  max-width: 68ch;
}

.sb-journey-detail-block--timeline {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.sb-journey-detail-block--timeline .sb-journey-detail-block__title {
  text-align: left;
}

.sb-journey-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.sb-journey-timeline__item {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 1rem 1.15rem;
  padding-bottom: 1.35rem;
  position: relative;
  align-items: start;
}

.sb-journey-timeline__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 1.55rem;
  top: 3.25rem;
  bottom: 0;
  width: 1px;
  background: var(--grey-line);
}

.sb-journey-timeline__marker {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 6px;
  background: var(--teal);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
}

.sb-journey-timeline__marker-day {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.45rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.sb-journey-timeline__marker-num {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
}

.sb-journey-timeline__label {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.2rem;
}

.sb-journey-timeline__content {
  min-width: 0;
}

.sb-journey-timeline__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 500 !important;
  margin: 0 0 0.4rem;
  color: var(--black);
  line-height: 1.35;
  text-transform: none !important;
}

.sb-journey-timeline__text {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--grey);
  margin: 0 0 0.45rem;
  line-height: 1.6;
  max-width: none;
}

.sb-journey-timeline__text:last-child {
  margin-bottom: 0;
}

/* Parsed day-by-day fallback when HTML could not be split into blocks */
.page-journey-detail .sb-experience-rich--days {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.page-journey-detail .sb-experience-rich--days p,
.page-journey-detail .sb-experience-rich--days li {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--grey);
  max-width: none;
}

.page-journey-detail .sb-experience-rich--days h2,
.page-journey-detail .sb-experience-rich--days h3,
.page-journey-detail .sb-experience-rich--days strong {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--black);
}

.sb-journey-included {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sb-journey-included li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.45rem 0;
  font-size: 0.86rem;
  color: var(--grey);
}

.sb-journey-included .bi {
  color: var(--teal);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.sb-journey-detail-cta__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--sb-radius);
  background: linear-gradient(
    135deg,
    var(--teal-d) 0%,
    color-mix(in srgb, var(--teal-d) 88%, var(--black)) 100%
  );
  text-decoration: none;
  color: var(--white);
  transition: filter 0.15s ease, box-shadow 0.15s ease;
}

.sb-journey-detail-cta__link:hover,
.sb-journey-detail-cta__link:focus {
  color: var(--white);
  filter: brightness(1.06);
  box-shadow: var(--sb-shadow);
}

.sb-journey-detail-cta__link:hover .sb-journey-detail-cta__kicker,
.sb-journey-detail-cta__link:hover .sb-journey-detail-cta__title,
.sb-journey-detail-cta__link:hover .sb-journey-detail-cta__arrow,
.sb-journey-detail-cta__link:focus .sb-journey-detail-cta__kicker,
.sb-journey-detail-cta__link:focus .sb-journey-detail-cta__title,
.sb-journey-detail-cta__link:focus .sb-journey-detail-cta__arrow {
  color: var(--white);
}

.sb-journey-detail-cta__kicker {
  display: block;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.88;
  margin-bottom: 0.25rem;
}

.sb-journey-detail-cta__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}

.sb-journey-detail-cta__arrow {
  font-size: 1.35rem;
  flex-shrink: 0;
}

/* Flights page */
.page-flights .sb-main {
  background: var(--cream-bg);
}

.sb-flights-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom-color: transparent;
}

.sb-flights-hero__arcs {
  position: absolute;
  inset: -20% -10% auto;
  height: 120%;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 42%, transparent 58%, color-mix(in srgb, var(--grey-line) 35%, transparent) 59%, color-mix(in srgb, var(--grey-line) 35%, transparent) 60%, transparent 61%),
    radial-gradient(circle at 34% 58%, transparent 62%, color-mix(in srgb, var(--grey-line) 28%, transparent) 63%, color-mix(in srgb, var(--grey-line) 28%, transparent) 64%, transparent 65%),
    radial-gradient(circle at 52% 36%, transparent 66%, color-mix(in srgb, var(--grey-line) 22%, transparent) 67%, color-mix(in srgb, var(--grey-line) 22%, transparent) 68%, transparent 69%);
  opacity: 0.55;
}

.sb-flights-hero .container {
  position: relative;
  z-index: 1;
}

.sb-flights-hero__title {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
  white-space: nowrap;
}

.sb-flights-hero__lead {
  max-width: 34rem;
  margin: 1.35rem 0 0;
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.75;
}

/* Flights page — teal section dividers (matches home page) */
.sb-flights-airports-intro {
  border-bottom-color: var(--teal);
}

.sb-flights-airlines-section:not(.sb-flights-airlines-section--lead),
.sb-flights-domestic-section,
.sb-flights-extra-section,
.sb-flights-safari-routes-section,
.sb-flights-coast-routes-section,
.sb-flights-charter-section,
.sb-flights-charter-prices-section,
.sb-flights-charter-aircraft-section,
.sb-flights-charter-tips,
.sb-flights-charter-luggage {
  border-top-color: var(--teal);
}

.sb-flights-safari-routes-intro,
.sb-flights-coast-routes-intro {
  border-bottom-color: var(--teal);
}

.sb-flights-airline {
  border-bottom-color: var(--teal);
}

.sb-flights-body {
  padding: 0 0 4rem;
}

.sb-flights-panel {
  background: var(--cream-bg);
}

.sb-flights-panel__inner {
  padding: 1.75rem 0 0;
}

.sb-flights-airports-intro {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--teal);
}

.sb-flights-airports-intro__text {
  max-width: 42rem;
  margin: 0.85rem 0 0;
  color: var(--black);
  font-size: 0.98rem;
  line-height: 1.75;
}

.sb-flights-airport-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem 2rem;
  padding-top: 1.75rem;
}

@media (min-width: 768px) {
  .sb-flights-airport-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.sb-flights-airport {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--grey-line) 70%, transparent);
  background: var(--cream-bg);
}

.sb-flights-airport__media {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1.35rem;
  background: var(--teal);
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .sb-flights-airport__media {
    min-height: 300px;
  }
}

.sb-flights-airport__media--has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, color-mix(in srgb, var(--black) 58%, transparent), color-mix(in srgb, var(--black) 10%, transparent));
}

.sb-flights-airport__badge,
.sb-flights-airport__title {
  position: relative;
  z-index: 1;
}

.sb-flights-airport__badge {
  position: absolute;
  top: 1rem;
  left: 1.1rem;
  font-size: 0.82rem;
  color: var(--black);
  background: color-mix(in srgb, var(--cream-bg) 88%, white);
  padding: 0.2rem 0.55rem;
}

.sb-flights-airport__media--has-image .sb-flights-airport__badge {
  color: var(--white);
  background: color-mix(in srgb, var(--black) 35%, transparent);
}

.sb-flights-airport__title {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
}

.sb-flights-airport__body {
  flex: 1;
  padding: 1.25rem 1.35rem 1.5rem;
}

.sb-flights-airport__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  margin: 0;
  color: var(--black);
  font-size: 0.95rem;
  line-height: 1.65;
}

.sb-flights-airport__meta span:not(:last-child)::after {
  content: "·";
  margin-left: 0.85rem;
  color: var(--grey-l);
  font-weight: 400;
}

.sb-flights-airport__copy {
  margin-top: 1rem;
  color: var(--black);
  font-size: 0.98rem;
  line-height: 1.75;
}

.sb-flights-airport__copy p:last-child {
  margin-bottom: 0;
}

.sb-flights-airlines-section {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--teal);
}

.sb-flights-airlines-section--lead {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.sb-flights-sample-heading {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.sb-flights-notice {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  background: #fff3d6;
  color: var(--black);
  font-size: 0.95rem;
  line-height: 1.65;
}

.sb-flights-airline-list {
  margin-top: 0.35rem;
}

.sb-flights-airline {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--teal);
}

.sb-flights-airline:last-child {
  border-bottom: none;
}

.sb-flights-airline__name {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--black);
}

.sb-flights-airline__desc {
  margin: 0.45rem 0 0;
  color: var(--black);
  font-size: 0.98rem;
  line-height: 1.7;
}

.sb-flights-airline__link {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.92rem;
  text-decoration: none;
}

.sb-flights-airline__link:hover {
  text-decoration: underline;
}

.sb-flights-empty,
.sb-flights-rich-text {
  margin: 1.25rem 0 0;
  color: var(--grey);
}

.sb-flights-rich-text p:last-child {
  margin-bottom: 0;
}

.sb-admin-airline-row .sb-card-body {
  background: color-mix(in srgb, var(--cream-bg) 88%, white);
}

.sb-admin-airport-row .sb-card-body {
  background: color-mix(in srgb, var(--cream-bg) 88%, white);
}

/* Admin flights — collapsible repeater rows */
.sb-admin-repeater-row > .sb-card-body {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.sb-admin-repeater-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.sb-admin-repeater-toggle {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0.15rem 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: var(--black);
}

.sb-admin-repeater-toggle:hover,
.sb-admin-repeater-toggle:focus-visible {
  color: var(--teal-d);
}

.sb-admin-repeater-chevron {
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--teal);
  transition: transform 0.15s ease;
}

.sb-admin-repeater-row.is-expanded .sb-admin-repeater-chevron {
  transform: rotate(180deg);
}

.sb-admin-repeater-title {
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sb-admin-repeater-actions {
  flex-shrink: 0;
}

.sb-admin-repeater-fields {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--grey-line) 70%, transparent);
}

.sb-admin-repeater-row.is-expanded .sb-admin-repeater-fields {
  display: block;
}

.sb-admin-repeater-row .js-airport-label,
.sb-admin-repeater-row .js-airline-label,
.sb-admin-repeater-row .js-domestic-label,
.sb-admin-repeater-row .js-safari-route-label,
.sb-admin-repeater-row .js-safari-tip-label,
.sb-admin-repeater-row .js-coast-route-label,
.sb-admin-repeater-row .js-coast-tip-label,
.sb-admin-repeater-row .js-charter-price-label,
.sb-admin-repeater-row .js-charter-aircraft-label,
.sb-admin-repeater-row .js-charter-tip-label,
.sb-admin-repeater-row .js-charter-luggage-label,
.sb-admin-repeater-row .js-road-example-label,
.sb-admin-repeater-row .js-road-tip-label,
.sb-admin-repeater-row .js-rail-example-label,
.sb-admin-repeater-row .js-rail-stop-label,
.sb-admin-repeater-row .js-rail-tip-label,
.sb-admin-repeater-row .js-ferry-option-label,
.sb-admin-repeater-row .js-ferry-tip-label {
  display: none;
}

.sb-flights-domestic-section {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--teal);
}

.sb-flights-domestic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem 2rem;
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .sb-flights-domestic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.sb-flights-domestic-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem 1.35rem 1.5rem;
  border: 1px solid color-mix(in srgb, var(--grey-line) 70%, transparent);
  background: var(--cream-bg);
}

.sb-flights-domestic-card__title {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  line-height: 1.45;
}

.sb-flights-domestic-card__desc {
  margin: 0.55rem 0 0;
  color: var(--black);
  font-size: 0.95rem;
  line-height: 1.65;
}

.sb-flights-extra-section {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--teal);
}

.sb-flights-extra-section .sb-flights-rich-text {
  margin-top: 0.85rem;
  color: var(--black);
}

.sb-admin-domestic-row .sb-card-body {
  background: color-mix(in srgb, var(--cream-bg) 88%, white);
}

.sb-flights-safari-routes-section {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--teal);
}

.sb-flights-safari-routes-intro {
  margin-top: 0.85rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--teal);
}

.sb-flights-safari-routes-intro__text {
  max-width: 42rem;
  margin: 0;
  color: var(--black);
  font-size: 0.98rem;
  line-height: 1.75;
}

.sb-flights-safari-routes-intro__note {
  max-width: 42rem;
  margin: 0.85rem 0 0;
  color: var(--grey);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
}

.sb-flights-safari-route-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.sb-flights-safari-route {
  border: 1px solid color-mix(in srgb, var(--grey-line) 70%, transparent);
  background: color-mix(in srgb, var(--cream-bg) 92%, var(--white));
}

.sb-flights-safari-route__details {
  margin: 0;
}

.sb-flights-safari-route__summary {
  list-style: none;
  cursor: pointer;
}

.sb-flights-safari-route__summary::-webkit-details-marker {
  display: none;
}

.sb-flights-safari-route__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem 1.25rem;
  padding: 1.1rem 1.25rem;
}

.sb-flights-safari-route__icon img {
  display: block;
  width: 32px;
  height: 32px;
}

.sb-flights-safari-route__body {
  min-width: 0;
}

.sb-flights-safari-route__title {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--black);
}

.sb-flights-safari-route__subtext {
  margin: 0.35rem 0 0;
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.55;
}

.sb-flights-safari-route__price {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
  white-space: nowrap;
}

.sb-flights-safari-route__chevron {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid var(--grey-l);
  transition: transform 0.15s ease;
}

.sb-flights-safari-route__details[open] .sb-flights-safari-route__chevron {
  transform: rotate(180deg);
}

.sb-flights-safari-route__detail {
  padding: 0 1.25rem 1.15rem;
  color: var(--black);
  font-size: 0.95rem;
  line-height: 1.65;
  border-top: 1px solid color-mix(in srgb, var(--grey-line) 55%, transparent);
}

@media (max-width: 767px) {
  .sb-flights-safari-route__inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .sb-flights-safari-route__price,
  .sb-flights-safari-route__chevron {
    grid-column: 2;
  }

  .sb-flights-safari-route__price {
    justify-self: start;
  }

  .sb-flights-safari-route__chevron {
    position: absolute;
    right: 1.25rem;
    top: 1.35rem;
  }

  .sb-flights-safari-route__summary,
  .sb-flights-safari-route:not(.sb-flights-safari-route--expandable) {
    position: relative;
  }
}

.sb-admin-safari-route-row .sb-card-body {
  background: color-mix(in srgb, var(--cream-bg) 88%, white);
}

.sb-flights-safari-tips {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem 1.35rem;
  border-top: 1px solid var(--teal);
  background: #fff3d6;
  border-right: 1px solid color-mix(in srgb, var(--cream-sep) 55%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--cream-sep) 55%, transparent);
  border-left: 1px solid color-mix(in srgb, var(--cream-sep) 55%, transparent);
}

.sb-flights-safari-tips .sb-flights-sample-heading {
  margin: 0;
}

.sb-flights-safari-tips__list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.sb-flights-safari-tips__list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--black);
  font-size: 0.95rem;
  line-height: 1.65;
}

.sb-flights-safari-tips__list li + li {
  margin-top: 0.55rem;
}

.sb-flights-safari-tips__list li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 600;
}

.sb-admin-safari-tip-row .sb-card-body {
  background: color-mix(in srgb, var(--cream-bg) 88%, white);
}

.sb-flights-coast-routes-section {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--teal);
}

.sb-flights-coast-routes-intro {
  margin-top: 0.85rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--teal);
}

.sb-flights-coast-routes-intro__text {
  max-width: 42rem;
  margin: 0;
  color: var(--black);
  font-size: 0.98rem;
  line-height: 1.75;
}

.sb-flights-coast-routes-intro__note {
  max-width: 42rem;
  margin: 0.85rem 0 0;
  color: var(--grey);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
}

.sb-flights-coast-route-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.sb-flights-coast-route {
  border: 1px solid color-mix(in srgb, var(--grey-line) 70%, transparent);
  background: color-mix(in srgb, var(--cream-bg) 92%, var(--white));
}

.sb-flights-coast-route__details {
  margin: 0;
}

.sb-flights-coast-route__summary {
  list-style: none;
  cursor: pointer;
}

.sb-flights-coast-route__summary::-webkit-details-marker {
  display: none;
}

.sb-flights-coast-route__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem 1.25rem;
  padding: 1.1rem 1.25rem;
}

.sb-flights-coast-route__thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--teal) 12%, var(--cream-bg));
  background-size: cover;
  background-position: center;
}

.sb-flights-coast-route__body {
  min-width: 0;
}

.sb-flights-coast-route__title {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--black);
}

.sb-flights-coast-route__subtext {
  margin: 0.35rem 0 0;
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.55;
}

.sb-flights-coast-route__price {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
  white-space: nowrap;
  justify-self: end;
  padding-right: 0.35rem;
}

.sb-flights-coast-route__chevron {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid var(--grey-l);
  transition: transform 0.15s ease;
}

.sb-flights-coast-route__details[open] .sb-flights-coast-route__chevron {
  transform: rotate(180deg);
}

.sb-flights-coast-route__detail {
  padding: 0 1.25rem 1.15rem;
  color: var(--black);
  font-size: 0.95rem;
  line-height: 1.65;
  border-top: 1px solid color-mix(in srgb, var(--grey-line) 55%, transparent);
}

@media (max-width: 767px) {
  .sb-flights-coast-route__inner {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
  }

  .sb-flights-coast-route__price {
    grid-column: 2;
    justify-self: end;
    padding-right: 2rem;
  }

  .sb-flights-coast-route__chevron {
    grid-row: 1;
    grid-column: 3;
  }
}

.sb-flights-coast-tips {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem 1.35rem;
  border-top: 1px solid var(--teal);
  background: #fff3d6;
  border-right: 1px solid color-mix(in srgb, var(--cream-sep) 55%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--cream-sep) 55%, transparent);
  border-left: 1px solid color-mix(in srgb, var(--cream-sep) 55%, transparent);
}

.sb-flights-coast-tips .sb-flights-sample-heading {
  margin: 0;
}

.sb-flights-coast-tips__list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.sb-flights-coast-tips__list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--black);
  font-size: 0.95rem;
  line-height: 1.65;
}

.sb-flights-coast-tips__list li + li {
  margin-top: 0.55rem;
}

.sb-flights-coast-tips__list li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 600;
}

.sb-admin-coast-route-row .sb-card-body,
.sb-admin-coast-tip-row .sb-card-body {
  background: color-mix(in srgb, var(--cream-bg) 88%, white);
}

.sb-flights-quote-cta {
  margin-top: 2.75rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--sb-radius);
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--teal-d) 92%, var(--black)) 0%,
    color-mix(in srgb, var(--teal-d) 78%, var(--black)) 100%
  );
  color: var(--white);
}

.sb-flights-quote-cta__kicker {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-sep);
}

.sb-flights-quote-cta__title {
  margin: 0.65rem 0 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
}

.sb-flights-quote-cta__text {
  max-width: 34rem;
  margin: 0.85rem 0 0;
  color: color-mix(in srgb, var(--white) 92%, transparent);
  font-size: 0.98rem;
  line-height: 1.65;
}

.sb-flights-quote-cta__btn {
  display: block;
  width: 100%;
  margin-top: 1.35rem;
  padding: 0.95rem 1.25rem;
  border: none;
  border-radius: 4px;
  background: var(--white);
  color: var(--teal-d);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.sb-flights-quote-cta__btn:hover,
.sb-flights-quote-cta__btn:focus {
  background: var(--cream-bg);
  color: var(--teal-d);
}

.sb-section--contact-flights .sb-contact-flights-hero {
  margin-top: 0;
}

.sb-contact-flights-hero .sb-flights-quote-cta__title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
}

.sb-contact-flights-intro {
  max-width: 34rem;
  color: var(--grey);
  font-size: 0.98rem;
  line-height: 1.65;
}

.sb-contact-flights-form-kicker {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.sb-contact-flights-type {
  background: color-mix(in srgb, var(--cream-bg) 88%, white);
  border-color: color-mix(in srgb, var(--teal) 22%, var(--grey-line));
  color: var(--teal-d);
  font-weight: 600;
}

.sb-contact-flights-form-card .sb-contact-flights-submit {
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--teal-d) 92%, var(--black)) 0%,
    color-mix(in srgb, var(--teal-d) 78%, var(--black)) 100%
  );
  border-color: transparent;
  color: var(--white);
}

.sb-contact-flights-form-card .sb-contact-flights-submit:hover,
.sb-contact-flights-form-card .sb-contact-flights-submit:focus {
  background: color-mix(in srgb, var(--teal-d) 88%, var(--black));
  border-color: transparent;
  color: var(--white);
}

.sb-flights-charter-section,
.sb-flights-charter-prices-section,
.sb-flights-charter-aircraft-section {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--teal);
}

.sb-flights-charter-intro {
  max-width: 42rem;
  margin: 0.85rem 0 0;
  color: var(--black);
  font-size: 0.98rem;
  line-height: 1.75;
}

.sb-flights-charter-includes {
  margin-top: 1.35rem;
  padding: 1.35rem 1.5rem;
  border-left: 4px solid var(--teal);
  background: color-mix(in srgb, var(--cream-bg) 94%, var(--white));
}

.sb-flights-charter-includes__title {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--black);
}

.sb-flights-charter-includes__body {
  margin-top: 0.75rem;
  color: var(--black);
  font-size: 0.98rem;
  line-height: 1.75;
}

.sb-flights-charter-price-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.sb-flights-charter-price-card {
  padding: 1.15rem 1.25rem;
  border: 1px solid color-mix(in srgb, var(--grey-line) 70%, transparent);
  background: var(--white);
}

.sb-flights-charter-price-card__title {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--black);
}

.sb-flights-charter-price-card__price {
  margin-top: 0.45rem;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
}

.sb-flights-charter-price-card__subtext {
  margin: 0.35rem 0 0;
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.55;
}

.sb-flights-charter-side-title {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--black);
}

.sb-flights-charter-aircraft-section {
  padding-left: 1.25rem;
  border-left: 4px solid var(--teal);
}

.sb-flights-charter-aircraft-list {
  margin-top: 0.85rem;
}

.sb-flights-charter-aircraft-item {
  margin: 0;
  color: var(--black);
  font-size: 0.98rem;
  line-height: 1.75;
}

.sb-flights-charter-aircraft-item + .sb-flights-charter-aircraft-item {
  margin-top: 0.85rem;
}

.sb-flights-charter-tips {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem 1.35rem;
  border-top: 1px solid var(--teal);
  background: #fff3d6;
  border-right: 1px solid color-mix(in srgb, var(--cream-sep) 55%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--cream-sep) 55%, transparent);
  border-left: 1px solid color-mix(in srgb, var(--cream-sep) 55%, transparent);
}

.sb-flights-charter-tips .sb-flights-sample-heading {
  margin: 0;
}

.sb-flights-charter-tips__list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.sb-flights-charter-tips__list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--black);
  font-size: 0.95rem;
  line-height: 1.65;
}

.sb-flights-charter-tips__list li + li {
  margin-top: 0.55rem;
}

.sb-flights-charter-tips__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.55rem;
  height: 2px;
  background: var(--teal);
}

.sb-flights-charter-luggage {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem 1.35rem;
  border-top: 1px solid var(--teal);
  background: color-mix(in srgb, var(--cream-bg) 94%, var(--white));
  border-right: 1px solid color-mix(in srgb, var(--grey-line) 55%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--grey-line) 55%, transparent);
  border-left: 1px solid color-mix(in srgb, var(--grey-line) 55%, transparent);
}

.sb-flights-charter-luggage .sb-flights-sample-heading {
  margin: 0;
}

.sb-flights-charter-luggage__list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.sb-flights-charter-luggage__list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--black);
  font-size: 0.95rem;
  line-height: 1.65;
}

.sb-flights-charter-luggage__list li + li {
  margin-top: 0.55rem;
}

.sb-flights-charter-luggage__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 600;
}

.sb-admin-charter-price-row .sb-card-body,
.sb-admin-charter-aircraft-row .sb-card-body,
.sb-admin-charter-tip-row .sb-card-body,
.sb-admin-charter-luggage-row .sb-card-body {
  background: color-mix(in srgb, var(--cream-bg) 88%, white);
}

/* ============================================
   Roads tab
   ============================================ */
.sb-flights-road-section {
  margin-top: 0.5rem;
}

.sb-flights-road-intro {
  margin-top: 0.85rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--teal);
}

.sb-flights-road-intro__text {
  max-width: 42rem;
  margin: 0;
  color: var(--black);
  font-size: 0.98rem;
  line-height: 1.75;
}

.sb-flights-road-intro__note {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.65;
}

.sb-flights-road-example-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.sb-flights-road-example {
  border: 1px solid color-mix(in srgb, var(--grey-line) 70%, transparent);
  background: color-mix(in srgb, var(--cream-bg) 92%, var(--white));
}

.sb-flights-road-example__details {
  margin: 0;
}

.sb-flights-road-example__summary {
  list-style: none;
  cursor: pointer;
}

.sb-flights-road-example__summary::-webkit-details-marker {
  display: none;
}

.sb-flights-road-example__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem 1.25rem;
  padding: 1.1rem 1.25rem;
}

.sb-flights-road-example__icon {
  grid-column: 1;
}

.sb-flights-road-example__icon img {
  display: block;
  width: 32px;
  height: 32px;
}

.sb-flights-road-example__body {
  grid-column: 2;
  min-width: 0;
}

.sb-flights-road-example__price {
  grid-column: 3;
  justify-self: end;
  padding-left: 1.5rem;
}

.sb-flights-road-example__chevron {
  grid-column: 4;
}

.sb-flights-road-example__title {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.3vw, 1.65rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--teal);
}

.sb-flights-road-example__subtext {
  margin: 0.35rem 0 0;
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.55;
}

.sb-flights-road-example__price {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
  white-space: nowrap;
}

.sb-flights-road-example__chevron {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid var(--grey-l);
  transition: transform 0.15s ease;
}

.sb-flights-road-example__details[open] .sb-flights-road-example__chevron {
  transform: rotate(180deg);
}

.sb-flights-road-example__detail {
  padding: 0.5rem 1.25rem 1.2rem;
  color: var(--black);
  font-size: 0.95rem;
  line-height: 1.65;
  border-top: 1px solid color-mix(in srgb, var(--grey-line) 55%, transparent);
}

.sb-flights-road-example__detail table {
  width: 100%;
  margin: 0.75rem 0;
  border-collapse: collapse;
  background: color-mix(in srgb, var(--cream-bg) 70%, white);
}

.sb-flights-road-example__detail table th,
.sb-flights-road-example__detail table td {
  padding: 0.55rem 0.85rem;
  text-align: left;
  border: 1px solid color-mix(in srgb, var(--grey-line) 60%, transparent);
  vertical-align: top;
}

.sb-flights-road-example__detail table th {
  background: color-mix(in srgb, var(--cream-bg) 92%, white);
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
}

@media (max-width: 767px) {
  .sb-flights-road-example__inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    position: relative;
  }

  .sb-flights-road-example__price,
  .sb-flights-road-example__chevron {
    grid-column: 2;
  }

  .sb-flights-road-example__price {
    justify-self: start;
  }

  .sb-flights-road-example__chevron {
    position: absolute;
    right: 1.25rem;
    top: 1.35rem;
  }
}

.sb-flights-road-tips {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem 1.35rem;
  border-top: 1px solid var(--teal);
  background: #fff3d6;
  border-right: 1px solid color-mix(in srgb, var(--cream-sep) 55%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--cream-sep) 55%, transparent);
  border-left: 1px solid color-mix(in srgb, var(--cream-sep) 55%, transparent);
}

.sb-flights-road-tips .sb-flights-sample-heading {
  margin: 0;
}

.sb-flights-road-tips__list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.sb-flights-road-tips__list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--black);
  font-size: 0.95rem;
  line-height: 1.65;
}

.sb-flights-road-tips__list li + li {
  margin-top: 0.55rem;
}

.sb-flights-road-tips__list li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 600;
}

/* ============================================
   Rail tab
   ============================================ */
.sb-flights-rail-section {
  margin-top: 0.5rem;
}

.sb-flights-rail-intro {
  margin-top: 0.85rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--teal);
}

.sb-flights-rail-intro__text {
  max-width: 42rem;
  margin: 0;
  color: var(--black);
  font-size: 0.98rem;
  line-height: 1.75;
}

.sb-flights-rail-example-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.sb-flights-rail-example {
  border: 1px solid color-mix(in srgb, var(--grey-line) 70%, transparent);
  background: color-mix(in srgb, var(--cream-bg) 92%, var(--white));
}

.sb-flights-rail-example__details {
  margin: 0;
}

.sb-flights-rail-example__summary {
  list-style: none;
  cursor: pointer;
}

.sb-flights-rail-example__summary::-webkit-details-marker {
  display: none;
}

.sb-flights-rail-example__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem 1.25rem;
  padding: 1.1rem 1.25rem;
}

.sb-flights-rail-example__icon {
  grid-column: 1;
}

.sb-flights-rail-example__icon img {
  display: block;
  width: 32px;
  height: 32px;
}

.sb-flights-rail-example__body {
  grid-column: 2;
  min-width: 0;
}

.sb-flights-rail-example__price {
  grid-column: 3;
  justify-self: end;
  padding-left: 1.5rem;
}

.sb-flights-rail-example__chevron {
  grid-column: 4;
}

.sb-flights-rail-example__title {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.3vw, 1.65rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--teal);
}

.sb-flights-rail-example__subtext {
  margin: 0.35rem 0 0;
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.55;
}

.sb-flights-rail-example__price {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
  white-space: nowrap;
}

.sb-flights-rail-example__chevron {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid var(--grey-l);
  transition: transform 0.15s ease;
}

.sb-flights-rail-example__details[open] .sb-flights-rail-example__chevron {
  transform: rotate(180deg);
}

.sb-flights-rail-example__detail {
  padding: 0.5rem 1.25rem 1.2rem;
  color: var(--black);
  font-size: 0.95rem;
  line-height: 1.65;
  border-top: 1px solid color-mix(in srgb, var(--grey-line) 55%, transparent);
}

.sb-flights-rail-example__detail table {
  width: 100%;
  margin: 0.75rem 0;
  border-collapse: collapse;
  background: color-mix(in srgb, var(--cream-bg) 70%, white);
}

.sb-flights-rail-example__detail table th,
.sb-flights-rail-example__detail table td {
  padding: 0.55rem 0.85rem;
  text-align: left;
  border: 1px solid color-mix(in srgb, var(--grey-line) 60%, transparent);
  vertical-align: top;
}

.sb-flights-rail-example__detail table th {
  background: color-mix(in srgb, var(--cream-bg) 92%, white);
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
}

@media (max-width: 767px) {
  .sb-flights-rail-example__inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    position: relative;
  }

  .sb-flights-rail-example__price,
  .sb-flights-rail-example__chevron {
    grid-column: 2;
  }

  .sb-flights-rail-example__price {
    justify-self: start;
  }

  .sb-flights-rail-example__chevron {
    position: absolute;
    right: 1.25rem;
    top: 1.35rem;
  }
}

.sb-flights-rail-stops {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--teal) 35%, transparent);
}

.sb-flights-rail-stops .sb-flights-sample-heading {
  margin: 0 0 1rem;
}

.sb-flights-rail-stops__list {
  position: relative;
  margin: 0;
  padding: 0 0 0 1.5rem;
  list-style: none;
}

.sb-flights-rail-stops__list::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.55rem;
  bottom: 0.55rem;
  width: 2px;
  background: color-mix(in srgb, var(--teal) 35%, transparent);
}

.sb-flights-rail-stop {
  position: relative;
  padding: 0.4rem 0 0.65rem;
}

.sb-flights-rail-stop + .sb-flights-rail-stop {
  border-top: 1px dashed color-mix(in srgb, var(--grey-line) 50%, transparent);
}

.sb-flights-rail-stop__marker {
  position: absolute;
  left: -1.5rem;
  top: 0.75rem;
  width: 12px;
  height: 12px;
  background: var(--teal);
  border-radius: 2px;
}

.sb-flights-rail-stop--endpoint .sb-flights-rail-stop__marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  left: -1.6rem;
  top: 0.7rem;
}

.sb-flights-rail-stop__title {
  margin: 0;
  font-weight: 600;
  color: var(--black);
  font-size: 1rem;
}

.sb-flights-rail-stop__desc {
  margin: 0.2rem 0 0;
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.55;
}

.sb-flights-rail-tips {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem 1.35rem;
  border-top: 1px solid var(--teal);
  background: #fff3d6;
  border-right: 1px solid color-mix(in srgb, var(--cream-sep) 55%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--cream-sep) 55%, transparent);
  border-left: 1px solid color-mix(in srgb, var(--cream-sep) 55%, transparent);
}

.sb-flights-rail-tips .sb-flights-sample-heading {
  margin: 0;
}

.sb-flights-rail-tips__list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.sb-flights-rail-tips__list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--black);
  font-size: 0.95rem;
  line-height: 1.65;
}

.sb-flights-rail-tips__list li + li {
  margin-top: 0.55rem;
}

.sb-flights-rail-tips__list li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 600;
}

.sb-flights-ferry-section {
  margin-top: 0.5rem;
}

.sb-flights-ferry-intro {
  margin-top: 0.85rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--teal);
}

.sb-flights-ferry-intro__text {
  max-width: 42rem;
  margin: 0;
  color: var(--black);
  font-size: 0.98rem;
  line-height: 1.75;
}

.sb-flights-ferry-example-list {
  margin-top: 1.25rem;
}

.sb-flights-ferry-tips {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem 1.35rem;
  border-top: 1px solid var(--teal);
  background: #fff3d6;
  border-right: 1px solid color-mix(in srgb, var(--cream-sep) 55%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--cream-sep) 55%, transparent);
  border-left: 1px solid color-mix(in srgb, var(--cream-sep) 55%, transparent);
}

.sb-flights-ferry-tips .sb-flights-sample-heading {
  margin: 0;
}

.sb-flights-ferry-tips__list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.sb-flights-ferry-tips__list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--black);
  font-size: 0.95rem;
  line-height: 1.65;
}

.sb-flights-ferry-tips__list li + li {
  margin-top: 0.55rem;
}

.sb-flights-ferry-tips__list li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 600;
}

.sb-admin-road-example-row .sb-card-body,
.sb-admin-road-tip-row .sb-card-body,
.sb-admin-rail-example-row .sb-card-body,
.sb-admin-rail-stop-row .sb-card-body,
.sb-admin-rail-tip-row .sb-card-body,
.sb-admin-ferry-tip-row .sb-card-body,
.sb-admin-ferry-option-row .sb-card-body {
  background: color-mix(in srgb, var(--cream-bg) 88%, white);
}

/* ============================================
   Site-wide: constrain teal divider lines to content width
   Sections with full-bleed backgrounds keep their backgrounds
   edge-to-edge, but the teal divider line is rendered via a
   pseudo-element constrained to the Bootstrap container's
   content width — so it visually aligns with the page heading
   on the left and the rightmost content (e.g. "View all") on
   the right, instead of running the full viewport width.
   ============================================ */
:root {
  --sb-content-max: 100%;
}
@media (min-width: 576px) {
  :root { --sb-content-max: 540px; }
}
@media (min-width: 768px) {
  :root { --sb-content-max: 720px; }
}
@media (min-width: 992px) {
  :root { --sb-content-max: 960px; }
}
@media (min-width: 1200px) {
  :root { --sb-content-max: 1140px; }
}
@media (min-width: 1400px) {
  :root { --sb-content-max: 1320px; }
}

/* Width of a content-aligned line: clamp to viewport on small
   screens; cap at the active Bootstrap container width.
   Subtract 1.5rem (= 2 * 0.75rem container padding) so the line
   aligns with the content inside the container, not the
   container's outer edge. */
.sb-home-section--band,
.sb-home-section--warm,
.sb-home-section--subtle,
.page-home .sb-home-section:not(.sb-home-section--subtle),
.sb-hero,
.sb-flights-hero {
  position: relative;
}

.sb-home-section--band,
.sb-home-section--warm,
.sb-home-section--subtle,
.page-home .sb-home-section--band,
.page-home .sb-home-section--warm,
.page-home .sb-home-section--subtle {
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.page-home .sb-home-section:not(.sb-home-section--subtle) {
  border-top-color: transparent;
}

.sb-hero,
.page-home .sb-hero {
  border-bottom-color: transparent;
}

.sb-home-section--band::before,
.sb-home-section--warm::before,
.sb-home-section--subtle::before,
.page-home .sb-home-section:not(.sb-home-section--subtle)::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: calc(min(100%, var(--sb-content-max)) - 1.5rem);
  background: var(--teal);
  pointer-events: none;
}

.sb-home-section--band::after,
.sb-home-section--warm::after,
.sb-home-section--subtle::after,
.sb-hero::after,
.sb-flights-hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: calc(min(100%, var(--sb-content-max)) - 1.5rem);
  background: var(--teal);
  pointer-events: none;
}