/* ================================================================
   True Blue Tour — Global Variables
================================================================ */

:root {
  --tbt-bg: #f7f4ef;
  --tbt-ink: #111111;
  --tbt-primary: #1479b8;
  --tbt-accent: #365c6c;
  --tbt-secondary: #e6ded2;
  --tbt-muted: #6b7a84;
  --tbt-border: #e0dbd3;
  --tbt-card: #ffffff;
  --tbt-serif: "Cormorant Garamond", Georgia, serif;
  --tbt-sans: "Inter", Arial, sans-serif;
}

/* ================================================================
   True Blue Tour — Premium Header
================================================================ */

.tbt-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 251, 247, 0.96);
  border-bottom: 1px solid rgba(224, 219, 211, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.tbt-site-header__inner {
  max-width: 1280px;
  height: 60px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 300px 1fr 140px;
  align-items: center;
  gap: 24px;
  transition: height 220ms ease;
}

.tbt-site-header__left {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.tbt-site-header__brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  flex-shrink: 0;
  text-decoration: none;
}

.tbt-site-header__brand img {
  display: block;
  max-height: 34px;
  width: auto;
  transition: max-height 220ms ease;
}

.tbt-site-header__brand-text {
  font-family: var(--tbt-serif);
  font-size: 25px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.015em;
  color: var(--tbt-ink);
  transition: font-size 220ms ease;
}

.tbt-site-header__since {
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tbt-muted);
  white-space: nowrap;
}

.tbt-site-header__nav {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.tbt-site-header__menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.tbt-site-header__menu > li {
  position: relative;
  margin: 0;
  padding: 0;
}

.tbt-site-header__menu > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  text-decoration: none;
  font-family: var(--tbt-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tbt-muted);
  transition: color 180ms ease;
}

.tbt-site-header__menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0.24em;
  bottom: 14px;
  height: 1px;
  background: var(--tbt-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.tbt-site-header__menu > li > a:hover,
.tbt-site-header__menu > .current-menu-item > a,
.tbt-site-header__menu > .current_page_item > a,
.tbt-site-header__menu > .current-menu-ancestor > a {
  color: var(--tbt-ink);
}

.tbt-site-header__menu > li > a:hover::after,
.tbt-site-header__menu > .current-menu-item > a::after,
.tbt-site-header__menu > .current_page_item > a::after,
.tbt-site-header__menu > .current-menu-ancestor > a::after {
  transform: scaleX(1);
}

/* Dropdown */

.tbt-site-header__menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  padding: 14px 0;
  margin: 0;
  list-style: none;
  background: #ffffff;
  border: 1px solid var(--tbt-border);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 180ms ease;
}

.tbt-site-header__menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.tbt-site-header__menu .sub-menu a {
  display: block;
  padding: 11px 20px;
  text-decoration: none;
  font-family: var(--tbt-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--tbt-muted);
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.tbt-site-header__menu .sub-menu a:hover {
  color: var(--tbt-ink);
  background: var(--tbt-bg);
}

/* Header Actions */

.tbt-site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

.tbt-site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 17px;
  border: 1px solid var(--tbt-ink);
  background: transparent;
  color: var(--tbt-ink);
  text-decoration: none;
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: all 180ms ease;
}

.tbt-site-header__cta:hover {
  background: var(--tbt-ink);
  border-color: var(--tbt-ink);
  color: #ffffff;
}

/* Hamburger */

.tbt-site-header__toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--tbt-border);
  background: transparent;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.tbt-site-header__toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--tbt-ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.tbt-site-header.is-menu-open .tbt-site-header__toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.tbt-site-header.is-menu-open .tbt-site-header__toggle span:nth-child(2) {
  opacity: 0;
}

.tbt-site-header.is-menu-open .tbt-site-header__toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */

.tbt-mobile-menu {
  display: none;
  border-top: 1px solid var(--tbt-border);
  background: rgba(247, 244, 239, 0.98);
}

.tbt-mobile-menu__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px 32px;
}

.tbt-mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tbt-mobile-menu__list li {
  border-bottom: 1px solid var(--tbt-border);
}

.tbt-mobile-menu__list a {
  display: flex;
  padding: 18px 0;
  text-decoration: none;
  font-family: var(--tbt-serif);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 300;
  color: var(--tbt-ink);
}

.tbt-mobile-menu__cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  background: var(--tbt-primary);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--tbt-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.tbt-mobile-menu__cta:hover {
  background: var(--tbt-accent);
  color: #ffffff;
}

/* Tour Sticky State */

.tbt-site-header.is-tour-nav-active .tbt-site-header__inner {
  height: 54px;
}

.tbt-site-header.is-tour-nav-active .tbt-site-header__brand-text {
  font-size: 22px;
}

.tbt-site-header.is-tour-nav-active .tbt-site-header__brand img {
  max-height: 28px;
}

.tbt-site-header.is-tour-nav-active .tbt-site-header__nav,
.tbt-site-header.is-tour-nav-active .tbt-site-header__since,
.tbt-site-header.is-tour-nav-active .tbt-site-header__cta {
  display: none;
}

.tbt-site-header.is-tour-nav-active .tbt-site-header__actions {
  min-width: auto;
  gap: 0;
}

.tbt-site-header.is-tour-nav-active .tbt-site-header__toggle {
  display: inline-flex;
}

.tbt-site-header.is-tour-nav-active + .tbt-v0-tour .tbt-v0-nav,
.tbt-site-header.is-tour-nav-active ~ .tbt-v0-tour .tbt-v0-nav {
  top: 54px;
}

/* Header Responsive */

@media (max-width: 1120px) {
  .tbt-site-header__inner {
    grid-template-columns: 260px 1fr 130px;
    gap: 18px;
  }

  .tbt-site-header__menu {
    gap: 22px;
  }

  .tbt-site-header__menu > li > a {
    font-size: 10px;
    letter-spacing: 0.2em;
  }
}

@media (max-width: 1023px) {
  .tbt-site-header__inner {
    height: 58px;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
  }

  .tbt-site-header__left {
    gap: 12px;
  }

  .tbt-site-header__brand img {
    max-height: 34px;
  }

  .tbt-site-header__nav,
  .tbt-site-header__since,
  .tbt-site-header__cta {
    display: none;
  }

  .tbt-site-header__actions {
    min-width: 0;
    gap: 0;
  }

  .tbt-site-header__toggle {
    display: inline-flex;
  }

  .tbt-mobile-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 280ms ease;
  }

  .tbt-site-header.is-menu-open .tbt-mobile-menu {
    max-height: 560px;
  }
}

@media (max-width: 640px) {
  .tbt-site-header__inner {
    padding: 0 18px;
  }

  .tbt-site-header__brand-text {
    font-size: 23px;
  }
}

/* ================================================================
   True Blue Tour — Homepage Base
================================================================ */

.tbt-home {
  background: var(--tbt-bg);
  color: var(--tbt-ink);
  font-family: var(--tbt-sans);
}

.tbt-home-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 36px;
}

/* ================================================================
   Homepage Buttons
================================================================ */

.tbt-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  text-decoration: none;
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 180ms ease;
  /* Mobile-overflow guard — long CTAs like "TAILOR-MADE ENQUIRY" must
     never push the page wider than the viewport. */
  max-width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tbt-home-btn--primary {
  background: var(--tbt-primary);
  border: 1px solid var(--tbt-primary);
  color: #ffffff;
}

.tbt-home-btn--primary:hover {
  background: var(--tbt-accent);
  border-color: var(--tbt-accent);
  color: #ffffff;
}

.tbt-home-btn--ghost {
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.tbt-home-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
  color: #ffffff;
}

.tbt-home-btn--light {
  background: #ffffff;
  border: 1px solid #ffffff;
  color: var(--tbt-accent);
}

.tbt-home-btn--light:hover {
  background: transparent;
  color: #ffffff;
}

/* ================================================================
   Homepage Hero
================================================================ */

.tbt-home-hero {
  position: relative;
  height: 480px;
  min-height: 480px;
  max-height: 480px;
  overflow: hidden;
  background: #0b1b22;
}

.tbt-home-hero__video,
.tbt-home-hero__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tbt-home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.10) 0%,
      rgba(0, 0, 0, 0.28) 42%,
      rgba(0, 0, 0, 0.54) 100%
    );
}

.tbt-home-hero__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 92px;
  z-index: 2;
}

.tbt-home-hero__shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 36px;
}

.tbt-home-hero__regions {
  display: none;
}

.tbt-home-hero__title {
  max-width: 640px;
  margin: 0;
  font-family: var(--tbt-serif);
  font-size: clamp(40px, 4.2vw, 58px);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: 0.005em;
  text-align: left;
  color: #ffffff;
}

.tbt-home-hero__subtitle {
  max-width: 520px;
  margin: 16px 0 0;
  font-family: var(--tbt-sans);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-align: left;
  color: rgba(255, 255, 255, 0.78);
}

.tbt-home-hero__actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

/* ================================================================
   Homepage Trust Bar
================================================================ */

.tbt-home-trust {
  background: #ffffff;
  border-bottom: 1px solid var(--tbt-border);
}

.tbt-home-trust__inner {
  min-height: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 24px;
}

.tbt-home-trust__inner span {
  position: relative;
  padding-left: 14px;
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tbt-muted);
  white-space: nowrap;
}

.tbt-home-trust__inner span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  border-radius: 999px;
  background: var(--tbt-primary);
}

/* ================================================================
   Homepage Sections
================================================================ */

.tbt-home-section {
  padding: 72px 0 78px;
  background: var(--tbt-bg);
}

.tbt-home-section--featured {
  background: #ffffff;
}

.tbt-home-section--destinations {
  background: #e7e4dd;
}

.tbt-home-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.tbt-home-eyebrow {
  margin: 0 0 12px;
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--tbt-muted);
}

.tbt-home-section__head h2,
.tbt-home-story__copy h2,
.tbt-home-cta h2 {
  margin: 0;
  font-family: var(--tbt-serif);
  font-size: clamp(31px, 3.2vw, 40px);
  line-height: 1.12;
  font-weight: 300;
  color: var(--tbt-ink);
}

.tbt-home-section__link {
  text-decoration: none;
  font-family: var(--tbt-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--tbt-muted);
  transition: color 180ms ease;
}

.tbt-home-section__link:hover {
  color: var(--tbt-primary);
}

/* ================================================================
   Featured Tour Cards
================================================================ */

.tbt-home-tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tbt-home-tour-card {
  background: #ffffff;
  border: 1px solid var(--tbt-border);
}

.tbt-home-tour-card__image {
  position: relative;
  display: block;
  height: 215px;
  overflow: hidden;
  text-decoration: none;
  background: #ddd;
}

.tbt-home-tour-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.tbt-home-tour-card:hover .tbt-home-tour-card__image img {
  transform: scale(1.035);
}

.tbt-home-tour-card__image span {
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 14px;
  background: #ffffff;
  color: var(--tbt-ink);
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.tbt-home-tour-card__body {
  padding: 22px 24px 24px;
}

.tbt-home-tour-card__meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  font-family: var(--tbt-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tbt-home-tour-card__meta strong {
  color: var(--tbt-primary);
  font-weight: 500;
}

.tbt-home-tour-card__meta span,
.tbt-home-tour-card__meta em {
  color: var(--tbt-muted);
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: none;
}

.tbt-home-tour-card h3 {
  margin: 0 0 14px;
  font-family: var(--tbt-serif);
  font-size: 23px;
  line-height: 1.22;
  font-weight: 400;
  color: var(--tbt-ink);
}

.tbt-home-tour-card h3 a {
  color: inherit;
  text-decoration: none;
}

.tbt-home-tour-card p {
  min-height: 64px;
  margin: 0 0 22px;
  font-family: var(--tbt-sans);
  font-size: 13.5px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--tbt-muted);
}

.tbt-home-tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--tbt-border);
}

.tbt-home-tour-card__footer strong {
  font-family: var(--tbt-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--tbt-ink);
}

.tbt-home-tour-card__footer a {
  text-decoration: none;
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tbt-primary);
}

/* ================================================================
   Destination Cards
================================================================ */

.tbt-home-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tbt-home-dest-card {
  position: relative;
  display: block;
  height: 205px;
  overflow: hidden;
  background: #202020;
  text-decoration: none;
}

.tbt-home-dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, opacity 700ms ease;
}

.tbt-home-dest-card:hover img {
  transform: scale(1.035);
}

.tbt-home-dest-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.22) 48%,
      rgba(0, 0, 0, 0.68) 100%
    );
}

.tbt-home-dest-card__content {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: #ffffff;
}

.tbt-home-dest-card__content strong {
  display: block;
  font-family: var(--tbt-serif);
  font-size: 23px;
  line-height: 1.1;
  font-weight: 400;
}

.tbt-home-dest-card__content em {
  display: block;
  margin-top: 7px;
  font-family: var(--tbt-sans);
  font-size: 11px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.72);
}

/* ================================================================
   Homepage Story
================================================================ */

.tbt-home-section--story {
  background: var(--tbt-bg);
}

.tbt-home-story {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.tbt-home-story__copy > p:not(.tbt-home-eyebrow) {
  max-width: 600px;
  margin: 24px 0 36px;
  font-family: var(--tbt-sans);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--tbt-muted);
}

.tbt-home-story__points {
  display: grid;
  gap: 24px;
}

.tbt-home-story__points article {
  padding-left: 28px;
  border-left: 2px solid var(--tbt-primary);
}

.tbt-home-story__points strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--tbt-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--tbt-ink);
}

.tbt-home-story__points span {
  display: block;
  max-width: 520px;
  font-family: var(--tbt-sans);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--tbt-muted);
}

.tbt-home-story__image {
  min-height: 480px;
  overflow: hidden;
  background: #ddd;
}

.tbt-home-story__image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

/* ================================================================
   Homepage CTA
================================================================ */

.tbt-home-cta {
  padding: 76px 0;
  background: #063f48;
  color: #ffffff;
}

.tbt-home-cta .tbt-home-shell {
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  gap: 56px;
}

.tbt-home-cta .tbt-home-eyebrow {
  color: rgba(255, 255, 255, 0.48);
}

.tbt-home-cta h2 {
  max-width: 720px;
  color: #ffffff;
}

/* ================================================================
   Homepage Responsive
================================================================ */

@media (max-width: 1023px) {
  .tbt-home-shell,
  .tbt-home-hero__shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .tbt-home-hero {
    height: 500px;
    min-height: 500px;
    max-height: 500px;
  }

  .tbt-home-hero__content {
    bottom: 72px;
  }

  .tbt-home-hero__title {
    font-size: clamp(38px, 7vw, 52px);
  }

  .tbt-home-trust__inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 22px 0;
    gap: 16px 28px;
  }

  .tbt-home-tour-grid,
  .tbt-home-dest-grid,
  .tbt-home-story,
  .tbt-home-cta .tbt-home-shell {
    grid-template-columns: 1fr;
  }

  .tbt-home-tour-card__image,
  .tbt-home-dest-card {
    height: 220px;
  }

  .tbt-home-story {
    gap: 44px;
  }

  .tbt-home-story__image,
  .tbt-home-story__image img {
    min-height: 420px;
  }

  .tbt-home-cta .tbt-home-shell {
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .tbt-home-shell,
  .tbt-home-hero__shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tbt-home-hero {
    height: 460px;
    min-height: 460px;
    max-height: 460px;
  }

  .tbt-home-hero__content {
    bottom: 48px;
  }

  .tbt-home-hero__title {
    font-size: 36px;
    line-height: 1.06;
  }

  .tbt-home-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .tbt-home-btn {
    width: 100%;
  }

  .tbt-home-trust__inner {
    grid-template-columns: 1fr;
  }

  .tbt-home-section {
    padding: 64px 0;
  }

  .tbt-home-section__head {
    display: block;
    margin-bottom: 34px;
  }

  .tbt-home-section__link {
    display: inline-flex;
    margin-top: 18px;
  }

  .tbt-home-story__copy > p:not(.tbt-home-eyebrow) {
    font-size: 15px;
  }

  .tbt-home-cta {
    padding: 72px 0;
  }
}
/* ================================================================
   True Blue Tour — Tours Archive / Destinations Page
================================================================ */

.tbt-archive {
  background: var(--tbt-bg);
  color: var(--tbt-ink);
  font-family: var(--tbt-sans);
}

.tbt-archive-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 36px;
}

.tbt-archive-eyebrow {
  margin: 0 0 18px;
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tbt-muted);
}

.tbt-archive-hero {
  padding: 76px 0 72px;
  background: #ffffff;
  border-bottom: 1px solid var(--tbt-border);
}

.tbt-archive-hero__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 72px;
  align-items: end;
}

.tbt-archive-hero h1 {
  margin: 0;
  font-family: var(--tbt-serif);
  font-size: clamp(44px, 5vw, 66px);
  line-height: 1.03;
  font-weight: 300;
  letter-spacing: 0.005em;
  color: var(--tbt-ink);
}

.tbt-archive-hero p:not(.tbt-archive-eyebrow) {
  margin: 0 0 8px;
  font-family: var(--tbt-sans);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--tbt-muted);
}

.tbt-archive-tabs {
  position: sticky;
  top: 68px;
  z-index: 30;
  background: rgba(247, 244, 239, 0.96);
  border-bottom: 1px solid var(--tbt-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.tbt-archive-tabs__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 56px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tbt-archive-tabs__inner::-webkit-scrollbar {
  display: none;
}

.tbt-archive-tabs__inner a {
  position: relative;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  text-decoration: none;
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tbt-muted);
  transition: color 180ms ease;
}

.tbt-archive-tabs__inner a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0.22em;
  bottom: 0;
  height: 1px;
  background: var(--tbt-ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.tbt-archive-tabs__inner a:hover,
.tbt-archive-tabs__inner a.is-active {
  color: var(--tbt-ink);
}

.tbt-archive-tabs__inner a:hover::after,
.tbt-archive-tabs__inner a.is-active::after {
  transform: scaleX(1);
}

.tbt-archive-list {
  padding: 72px 0 84px;
  background: var(--tbt-bg);
}

.tbt-archive-featured-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: #ffffff;
  border: 1px solid var(--tbt-border);
  margin-bottom: 64px;
}

.tbt-archive-featured-card__image {
  position: relative;
  display: block;
  min-height: 380px;
  overflow: hidden;
  text-decoration: none;
  background: #ddd;
}

.tbt-archive-featured-card__image img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.tbt-archive-featured-card:hover .tbt-archive-featured-card__image img {
  transform: scale(1.035);
}

.tbt-archive-featured-card__image span,
.tbt-archive-card__image span {
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 14px;
  background: #ffffff;
  color: var(--tbt-ink);
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.tbt-archive-featured-card__content {
  padding: 62px 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tbt-archive-card__meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  font-family: var(--tbt-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tbt-archive-card__meta strong {
  color: var(--tbt-primary);
  font-weight: 500;
}

.tbt-archive-card__meta span,
.tbt-archive-card__meta em {
  color: var(--tbt-muted);
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: none;
}

.tbt-archive-featured-card h2,
.tbt-archive-card h2 {
  margin: 0;
  font-family: var(--tbt-serif);
  font-weight: 400;
  color: var(--tbt-ink);
}

.tbt-archive-featured-card h2 {
  font-size: 34px;
  line-height: 1.15;
}

.tbt-archive-card h2 {
  font-size: 23px;
  line-height: 1.22;
}

.tbt-archive-featured-card h2 a,
.tbt-archive-card h2 a {
  color: inherit;
  text-decoration: none;
}

.tbt-archive-featured-card p,
.tbt-archive-card p {
  margin: 18px 0 0;
  font-family: var(--tbt-sans);
  font-weight: 300;
  color: var(--tbt-muted);
}

.tbt-archive-featured-card p {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.8;
}

.tbt-archive-card p {
  min-height: 76px;
  font-size: 13.5px;
  line-height: 1.65;
}

.tbt-archive-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--tbt-border);
}

.tbt-archive-card__footer strong {
  font-family: var(--tbt-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--tbt-ink);
}

.tbt-archive-card__footer a {
  text-decoration: none;
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tbt-primary);
}

.tbt-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tbt-archive-card {
  background: #ffffff;
  border: 1px solid var(--tbt-border);
}

.tbt-archive-card__image {
  position: relative;
  display: block;
  height: 215px;
  overflow: hidden;
  background: #ddd;
  text-decoration: none;
}

.tbt-archive-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.tbt-archive-card:hover .tbt-archive-card__image img {
  transform: scale(1.035);
}

.tbt-archive-card__body {
  padding: 22px 24px 24px;
}

.tbt-archive-empty {
  padding: 64px;
  background: #ffffff;
  border: 1px solid var(--tbt-border);
}

.tbt-archive-empty h2 {
  margin: 0 0 12px;
  font-family: var(--tbt-serif);
  font-size: 36px;
  font-weight: 300;
}

.tbt-archive-empty p {
  max-width: 520px;
  color: var(--tbt-muted);
}

.tbt-archive-empty a {
  color: var(--tbt-primary);
  text-decoration: none;
}

.tbt-archive-cta {
  padding: 76px 0;
  background: var(--tbt-bg);
}

.tbt-archive-cta .tbt-archive-shell {
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  gap: 56px;
  padding-top: 56px;
  padding-bottom: 56px;
  border: 1px solid var(--tbt-border);
  background: rgba(255, 255, 255, 0.28);
}

.tbt-archive-cta h2 {
  max-width: 520px;
  margin: 0;
  font-family: var(--tbt-serif);
  font-size: clamp(31px, 3.2vw, 40px);
  line-height: 1.12;
  font-weight: 300;
  color: var(--tbt-ink);
}

.tbt-archive-cta p:not(.tbt-archive-eyebrow) {
  max-width: 600px;
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--tbt-muted);
}

.tbt-archive-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  background: var(--tbt-ink);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  .tbt-archive-shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .tbt-archive-hero {
    padding: 64px 0;
  }

  .tbt-archive-hero__grid,
  .tbt-archive-featured-card,
  .tbt-archive-grid,
  .tbt-archive-cta .tbt-archive-shell {
    grid-template-columns: 1fr;
  }

  .tbt-archive-featured-card__content {
    padding: 36px 30px;
  }

  .tbt-archive-tabs {
    top: 66px;
  }

  .tbt-archive-grid {
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .tbt-archive-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tbt-archive-hero h1 {
    font-size: 40px;
  }

  .tbt-archive-list {
    padding: 52px 0 64px;
  }

  .tbt-archive-featured-card {
    margin-bottom: 36px;
  }

  .tbt-archive-featured-card__image,
  .tbt-archive-featured-card__image img {
    min-height: 260px;
  }

  .tbt-archive-card__image {
    height: 210px;
  }

  .tbt-archive-cta .tbt-archive-shell {
    gap: 28px;
    padding-top: 42px;
    padding-bottom: 42px;
  }
}
/* ================================================================
   True Blue Tour — About Page
================================================================ */

.tbt-about {
  background: var(--tbt-bg);
  color: var(--tbt-ink);
  font-family: var(--tbt-sans);
}

.tbt-about-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 36px;
}

.tbt-about-eyebrow {
  margin: 0 0 18px;
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tbt-muted);
}

.tbt-about-hero {
  padding: 54px 0 52px;
  background: #ffffff;
  border-bottom: 1px solid var(--tbt-border);
}

.tbt-about-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: end;
}

.tbt-about-hero h1 {
  margin: 0;
  max-width: 560px;
  font-family: var(--tbt-serif);
  font-size: clamp(38px, 4.2vw, 54px);
  line-height: 1.06;
  font-weight: 300;
  letter-spacing: 0.005em;
  color: var(--tbt-ink);
}

.tbt-about-hero p:not(.tbt-about-eyebrow) {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--tbt-muted);
}

.tbt-about-story {
  padding: 84px 0;
  background: var(--tbt-bg);
}

.tbt-about-story__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: start;
}

.tbt-about-story__image {
  margin: 0;
}

.tbt-about-story__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.tbt-about-story__image figcaption {
  margin-top: 12px;
  font-family: var(--tbt-serif);
  font-size: 13px;
  font-style: italic;
  color: var(--tbt-muted);
}

.tbt-about-story__copy {
  padding-top: 26px;
}

.tbt-about-quote {
  margin: 0;
  max-width: 620px;
  font-family: var(--tbt-serif);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.35;
  font-weight: 300;
  color: var(--tbt-ink);
}

.tbt-about-rule {
  width: 36px;
  height: 1px;
  margin: 28px 0;
  background: var(--tbt-primary);
}

.tbt-about-story__copy p:not(.tbt-about-quote) {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--tbt-muted);
}

.tbt-about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 28px;
}

.tbt-about-links a,
.tbt-about-cta a,
.tbt-about-standard a {
  text-decoration: none;
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tbt-primary);
}

.tbt-about-foundation {
  padding: 84px 0;
  background: #ffffff;
  border-top: 1px solid var(--tbt-border);
  border-bottom: 1px solid var(--tbt-border);
}

.tbt-about-foundation__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.tbt-about-foundation h2 {
  margin: 0;
  font-family: var(--tbt-serif);
  font-size: clamp(34px, 3.6vw, 46px);
  line-height: 1.12;
  font-weight: 300;
  color: var(--tbt-ink);
}

.tbt-about-foundation p {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--tbt-muted);
}

.tbt-about-stats {
  padding: 62px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--tbt-border);
}

.tbt-about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.tbt-about-stats__grid div {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--tbt-border);
}

.tbt-about-stats__grid div:first-child {
  border-left: 0;
}

.tbt-about-stats strong {
  font-family: var(--tbt-serif);
  font-size: 44px;
  line-height: 1;
  font-weight: 300;
  color: var(--tbt-primary);
}

.tbt-about-stats span {
  margin-top: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tbt-muted);
}

.tbt-about-operate {
  padding: 84px 0;
  background: var(--tbt-bg);
}

.tbt-about-operate__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 42px;
  margin-top: 50px;
}

.tbt-about-operate article {
  padding: 32px 0;
  border-top: 1px solid var(--tbt-border);
}

.tbt-about-operate h3 {
  margin: 0 0 14px;
  font-family: var(--tbt-serif);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 400;
  color: var(--tbt-ink);
}

.tbt-about-operate p {
  max-width: 520px;
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--tbt-muted);
}

.tbt-about-standard {
  padding: 86px 0;
  background: #030303;
  color: #ffffff;
}

.tbt-about-standard .tbt-about-eyebrow {
  color: rgba(255,255,255,0.42);
}

.tbt-about-standard__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 76px;
  align-items: center;
}

.tbt-about-standard h2 {
  margin: 0 0 30px;
  max-width: 560px;
  font-family: var(--tbt-serif);
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.12;
  font-weight: 300;
  color: #ffffff;
}

.tbt-about-standard p {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(255,255,255,0.58);
}

.tbt-about-standard ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.tbt-about-standard li {
  margin-bottom: 8px;
  font-family: var(--tbt-serif);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
}

.tbt-about-standard blockquote {
  margin: 0 0 34px;
  padding-left: 40px;
  border-left: 1px solid rgba(255,255,255,0.18);
  font-family: var(--tbt-serif);
  font-size: 23px;
  line-height: 1.5;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
}

.tbt-about-signature {
  margin-bottom: 34px !important;
  font-family: var(--tbt-sans) !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
  font-weight: 500 !important;
  color: #ffffff !important;
}

.tbt-about-signature span {
  display: inline-block;
  margin-top: 2px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.tbt-about-standard a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,0.24);
  color: #ffffff;
}

.tbt-about-standard a:hover {
  background: #ffffff;
  color: #000000;
}

.tbt-about-cta {
  padding: 76px 0;
  background: var(--tbt-bg);
}

.tbt-about-cta .tbt-about-shell {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 56px;
  border: 1px solid var(--tbt-border);
  background: rgba(255,255,255,0.32);
}

.tbt-about-cta h2 {
  margin: 0;
  max-width: 620px;
  font-family: var(--tbt-serif);
  font-size: clamp(31px, 3.2vw, 40px);
  line-height: 1.12;
  font-weight: 300;
  color: var(--tbt-ink);
}

.tbt-about-cta p:not(.tbt-about-eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--tbt-muted);
}

.tbt-about-cta .tbt-about-shell > div:last-child {
  display: grid;
  gap: 14px;
}

.tbt-about-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid var(--tbt-border);
  color: var(--tbt-ink);
}

.tbt-about-cta a:first-child {
  background: var(--tbt-primary);
  border-color: var(--tbt-primary);
  color: #ffffff;
}

.tbt-about-cta a:first-child:hover {
  background: var(--tbt-accent);
  border-color: var(--tbt-accent);
}

@media (max-width: 1023px) {
  .tbt-about-shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .tbt-about-hero__grid,
  .tbt-about-story__grid,
  .tbt-about-foundation__grid,
  .tbt-about-standard__grid,
  .tbt-about-cta .tbt-about-shell {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .tbt-about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tbt-about-stats__grid div:nth-child(3) {
    border-left: 0;
  }

  .tbt-about-operate__grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .tbt-about-story__image img {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .tbt-about-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tbt-about-hero {
    padding: 46px 0;
  }

  .tbt-about-hero h1 {
    font-size: 38px;
  }

  .tbt-about-story,
  .tbt-about-foundation,
  .tbt-about-operate,
  .tbt-about-standard,
  .tbt-about-cta {
    padding: 64px 0;
  }

  .tbt-about-story__image img {
    height: 320px;
  }

  .tbt-about-stats__grid {
    grid-template-columns: 1fr;
  }

  .tbt-about-stats__grid div,
  .tbt-about-stats__grid div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--tbt-border);
  }

  .tbt-about-stats__grid div:first-child {
    border-top: 0;
  }

  .tbt-about-cta .tbt-about-shell {
    padding-top: 42px;
    padding-bottom: 42px;
  }
}
/* ================================================================
   True Blue Tour — Global Footer
================================================================ */

.tbt-footer {
  background: #050505;
  color: rgba(255,255,255,0.68);
  font-family: var(--tbt-sans);
}

.tbt-footer-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 36px;
}

/* Top Trust Line */

.tbt-footer-trust-line {
  /* Sits flush above the memberships marquee — share the same near-
     black background as the rest of the footer so the strip reads as
     one continuous band. */
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
}

/* Trust Logo Section */

.tbt-footer-logos {
  padding: 42px 0;
  background: #0b0b0b;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tbt-footer-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.tbt-footer-logo-group h3 {
  margin: 0 0 18px;
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}

.tbt-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tbt-footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.035);
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255,255,255,0.72);
}

/* Main Footer */

.tbt-footer-main {
  padding: 68px 0 42px;
  background: #050505;
}

.tbt-footer-brand-row {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  padding-bottom: 58px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.tbt-footer-brand h2 {
  margin: 0;
  font-family: var(--tbt-serif);
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
  color: #ffffff;
}

.tbt-footer-est {
  margin: 12px 0 24px !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.26em !important;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38) !important;
}

.tbt-footer-brand p:not(.tbt-footer-est),
.tbt-footer-newsletter p {
  max-width: 420px;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(255,255,255,0.58);
}

.tbt-footer-newsletter h3 {
  margin: 0 0 12px;
  font-family: var(--tbt-serif);
  font-size: 26px;
  font-weight: 300;
  color: #ffffff;
}

.tbt-footer-newsletter__lead {
  margin-bottom: 8px !important;
  color: rgba(255,255,255,0.78) !important;
}

.tbt-footer-newsletter__form {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 10px;
  margin-top: 24px;
}

.tbt-footer-newsletter__form input {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  padding: 0 14px;
  font-family: var(--tbt-sans);
  font-size: 13px;
  color: #ffffff;
  outline: none;
}

.tbt-footer-newsletter__form input::placeholder {
  color: rgba(255,255,255,0.36);
}

.tbt-footer-newsletter__form input:focus {
  border-color: rgba(255,255,255,0.42);
}

.tbt-footer-newsletter__form button {
  height: 44px;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #050505;
  cursor: pointer;
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 180ms ease;
}

.tbt-footer-newsletter__form button:hover {
  background: transparent;
  color: #ffffff;
}

/* Navigation Columns */

.tbt-footer-nav-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.25fr;
  gap: 36px;
  padding-top: 54px;
}

.tbt-footer-col h3,
.tbt-footer-contact h3 {
  margin: 0 0 22px;
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}

.tbt-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tbt-footer-col li {
  margin-bottom: 12px;
}

.tbt-footer-col a,
.tbt-footer-contact a,
.tbt-footer-social a,
.tbt-footer-bottom a {
  text-decoration: none;
  color: rgba(255,255,255,0.58);
  transition: color 180ms ease;
}

.tbt-footer-col a:hover,
.tbt-footer-contact a:hover,
.tbt-footer-social a:hover,
.tbt-footer-bottom a:hover {
  color: #ffffff;
}

.tbt-footer-col a {
  font-size: 13px;
  line-height: 1.5;
}

.tbt-footer-contact p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.58);
}

.tbt-footer-contact__button {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,0.24);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff !important;
}

.tbt-footer-contact__button:hover {
  background: #ffffff;
  color: #050505 !important;
}

/* Social */

.tbt-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.tbt-footer-social a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Bottom Legal */

.tbt-footer-bottom {
  padding: 22px 0;
  background: #000000;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.tbt-footer-bottom .tbt-footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.tbt-footer-bottom p {
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.40);
}

.tbt-footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.tbt-footer-bottom a {
  font-size: 12px;
  color: rgba(255,255,255,0.40);
}

/* Responsive */

@media (max-width: 1023px) {
  .tbt-footer-shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .tbt-footer-logo-grid,
  .tbt-footer-brand-row,
  .tbt-footer-nav-row {
    grid-template-columns: 1fr 1fr;
  }

  .tbt-footer-contact {
    grid-column: span 2;
  }

  .tbt-footer-bottom .tbt-footer-shell {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .tbt-footer-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tbt-footer-trust-line__items {
    justify-content: center;
    text-align: center;
    font-size: 10.5px;
    gap: 6px 12px;
  }

  .tbt-footer-logos {
    padding: 34px 0;
  }

  .tbt-footer-logo-grid,
  .tbt-footer-brand-row,
  .tbt-footer-nav-row,
  .tbt-footer-newsletter__form {
    grid-template-columns: 1fr;
  }

  .tbt-footer-contact {
    grid-column: auto;
  }

  .tbt-footer-main {
    padding-top: 52px;
  }

  .tbt-footer-brand-row {
    gap: 42px;
    padding-bottom: 42px;
  }

  .tbt-footer-nav-row {
    gap: 32px;
    padding-top: 42px;
  }

  .tbt-footer-social {
    gap: 16px 22px;
  }
}
/* ================================================================
   True Blue Tour — Contact Page
================================================================ */

.tbt-contact {
  background: var(--tbt-bg);
  color: var(--tbt-ink);
  font-family: var(--tbt-sans);
}

.tbt-contact-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 36px;
}

.tbt-contact-eyebrow {
  margin: 0 0 18px;
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tbt-muted);
}

.tbt-contact-hero {
  padding: 58px 0 64px;
  background: #ffffff;
  border-bottom: 1px solid var(--tbt-border);
}

.tbt-contact-hero h1 {
  max-width: 620px;
  margin: 0;
  font-family: var(--tbt-serif);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.04;
  font-weight: 300;
  letter-spacing: 0.005em;
  color: var(--tbt-ink);
}

.tbt-contact-main {
  padding: 72px 0 84px;
  background: var(--tbt-bg);
}

.tbt-contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.tbt-contact-side {
  position: sticky;
  top: 98px;
}

.tbt-contact-steps {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--tbt-border);
}

.tbt-contact-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  margin-bottom: 26px;
}

.tbt-contact-step:last-child {
  margin-bottom: 0;
}

.tbt-contact-step span {
  font-family: var(--tbt-serif);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 300;
  color: rgba(17,17,17,0.18);
}

.tbt-contact-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--tbt-muted);
}

.tbt-contact-details {
  display: grid;
  gap: 22px;
  padding: 34px 0;
  border-bottom: 1px solid var(--tbt-border);
}

.tbt-contact-details div {
  position: relative;
  padding-left: 28px;
}

.tbt-contact-details div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--tbt-primary);
  border-radius: 999px;
}

.tbt-contact-details span {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tbt-muted);
}

.tbt-contact-details a,
.tbt-contact-details p {
  margin: 0;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
  color: var(--tbt-ink);
}

.tbt-contact-protected {
  margin-top: 34px;
  padding: 28px;
  background: #e7e4dd;
}

.tbt-contact-protected p:not(.tbt-contact-eyebrow) {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--tbt-muted);
}

/* Form */

.tbt-contact-form-wrap {
  background: transparent;
}

.tbt-contact-form {
  display: grid;
  gap: 28px;
}

.tbt-contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.tbt-contact-field label,
.tbt-contact-options legend {
  display: block;
  margin: 0 0 10px;
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tbt-muted);
}

.tbt-contact-field label span {
  color: var(--tbt-primary);
}

.tbt-contact-field input,
.tbt-contact-field select,
.tbt-contact-field textarea {
  width: 100%;
  border: 1px solid var(--tbt-border);
  background: rgba(255,255,255,0.64);
  padding: 0 16px;
  font-family: var(--tbt-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--tbt-ink);
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.tbt-contact-field input,
.tbt-contact-field select {
  height: 50px;
}

.tbt-contact-field textarea {
  min-height: 128px;
  padding-top: 16px;
  resize: vertical;
}

.tbt-contact-field input::placeholder,
.tbt-contact-field textarea::placeholder {
  color: rgba(107,122,132,0.55);
}

.tbt-contact-field input:focus,
.tbt-contact-field select:focus,
.tbt-contact-field textarea:focus {
  border-color: rgba(20,121,184,0.55);
  background: #ffffff;
}

.tbt-contact-options {
  border: 0;
  margin: 0;
  padding: 0;
}

.tbt-contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tbt-contact-options legend {
  width: 100%;
}

.tbt-contact-options label {
  cursor: pointer;
}

.tbt-contact-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tbt-contact-options span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--tbt-border);
  background: rgba(255,255,255,0.42);
  font-size: 13px;
  font-weight: 300;
  color: var(--tbt-muted);
  transition: all 180ms ease;
}

.tbt-contact-options input:checked + span {
  border-color: var(--tbt-primary);
  background: rgba(20,121,184,0.08);
  color: var(--tbt-primary);
}

.tbt-contact-options span:hover {
  border-color: rgba(20,121,184,0.45);
  color: var(--tbt-ink);
}

.tbt-contact-submit {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.tbt-contact-submit button {
  min-height: 46px;
  padding: 0 30px;
  border: 1px solid var(--tbt-primary);
  background: var(--tbt-primary);
  color: #ffffff;
  cursor: pointer;
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 180ms ease;
}

.tbt-contact-submit button:hover {
  background: var(--tbt-accent);
  border-color: var(--tbt-accent);
}

.tbt-contact-submit p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--tbt-muted);
}

/* Inline status message written by enquiry.js after submit */
.tbt-contact-form__status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.45;
}

.tbt-contact-form__status.is-loading,
.tbt-contact-form__status.is-success,
.tbt-contact-form__status.is-error {
  display: block;
}

.tbt-contact-form__status.is-loading {
  background: #f4f6f8;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.tbt-contact-form__status.is-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.tbt-contact-form__status.is-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Bottom CTA */

.tbt-contact-bottom {
  padding: 72px 0;
  background: #ffffff;
  border-top: 1px solid var(--tbt-border);
}

.tbt-contact-bottom .tbt-contact-shell {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  align-items: center;
}

.tbt-contact-bottom h2 {
  max-width: 560px;
  margin: 0;
  font-family: var(--tbt-serif);
  font-size: clamp(31px, 3.2vw, 40px);
  line-height: 1.12;
  font-weight: 300;
  color: var(--tbt-ink);
}

.tbt-contact-bottom a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid var(--tbt-ink);
  background: var(--tbt-ink);
  color: #ffffff;
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.tbt-contact-bottom a:hover {
  background: transparent;
  color: var(--tbt-ink);
}

/* Responsive */

@media (max-width: 1023px) {
  .tbt-contact-shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .tbt-contact-grid,
  .tbt-contact-bottom .tbt-contact-shell {
    grid-template-columns: 1fr;
  }

  .tbt-contact-side {
    position: static;
  }
}

@media (max-width: 640px) {
  .tbt-contact-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tbt-contact-hero {
    padding: 52px 0;
  }

  .tbt-contact-hero h1 {
    font-size: 40px;
  }

  .tbt-contact-main {
    padding: 56px 0 64px;
  }

  .tbt-contact-form__row {
    grid-template-columns: 1fr;
  }

  .tbt-contact-options span {
    width: 100%;
    justify-content: center;
  }

  .tbt-contact-options label {
    flex: 1 1 100%;
  }

  .tbt-contact-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .tbt-contact-submit button {
    width: 100%;
  }

  .tbt-contact-bottom {
    padding: 58px 0;
  }
}
/* ================================================================
   True Blue Tour — Destination Detail Pages
================================================================ */

.tbt-destination {
  background: var(--tbt-bg);
  color: var(--tbt-ink);
  font-family: var(--tbt-sans);
}

.tbt-destination-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 36px;
}

.tbt-destination-eyebrow {
  margin: 0 0 16px;
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tbt-muted);
}

.tbt-destination-hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: #08171d;
}

.tbt-destination-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tbt-destination-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.08) 0%,
      rgba(0,0,0,0.26) 42%,
      rgba(0,0,0,0.62) 100%
    );
}

.tbt-destination-hero__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 78px;
  z-index: 2;
}

.tbt-destination-hero .tbt-destination-eyebrow {
  color: rgba(255,255,255,0.72);
}

.tbt-destination-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--tbt-serif);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.04;
  font-weight: 300;
  color: #ffffff;
}

.tbt-destination-hero__intro {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
}

.tbt-destination-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.tbt-destination-hero__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,0.46);
  color: #ffffff;
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.tbt-destination-hero__actions a:first-child {
  background: var(--tbt-primary);
  border-color: var(--tbt-primary);
}

.tbt-destination-trust {
  background: #ffffff;
  border-bottom: 1px solid var(--tbt-border);
}

.tbt-destination-trust div div {
  min-height: 62px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}

.tbt-destination-trust span {
  position: relative;
  padding-left: 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tbt-muted);
}

.tbt-destination-trust span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  border-radius: 999px;
  background: var(--tbt-primary);
}

.tbt-destination-section {
  padding: 82px 0;
}

.tbt-destination-section:nth-of-type(even) {
  background: #ffffff;
}

.tbt-destination-two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.tbt-destination-section h2 {
  margin: 0;
  font-family: var(--tbt-serif);
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.12;
  font-weight: 300;
  color: var(--tbt-ink);
}

.tbt-destination-body p {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--tbt-muted);
}

.tbt-destination-glance {
  background: #ffffff;
  border-top: 1px solid var(--tbt-border);
  border-bottom: 1px solid var(--tbt-border);
}

.tbt-destination-glance__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--tbt-border);
  border-left: 1px solid var(--tbt-border);
  background: #ffffff;
}

.tbt-destination-glance__grid article {
  min-height: 118px;
  padding: 20px 20px 22px;
  border-right: 1px solid var(--tbt-border);
  border-bottom: 1px solid var(--tbt-border);
}

.tbt-destination-glance__grid span {
  display: block;
  margin-bottom: 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tbt-muted);
}

.tbt-destination-glance__grid strong {
  display: block;
  font-family: var(--tbt-serif);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 300;
  color: var(--tbt-ink);
}

.tbt-destination-section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 42px;
}

.tbt-destination-section__head a,
.tbt-destination-link-button {
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tbt-primary);
}

.tbt-destination-region-grid,
.tbt-destination-season-grid,
.tbt-destination-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tbt-destination-region-grid {
  margin-top: 30px;
}

.tbt-destination-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.tbt-destination-tour-card,
.tbt-destination-card-grid article,
.tbt-destination-region-grid article,
.tbt-destination-season-grid article,
.tbt-destination-article-grid article {
  background: #ffffff;
  border: 1px solid var(--tbt-border);
}

.tbt-destination-tour-card__image {
  position: relative;
  display: block;
  height: 215px;
  overflow: hidden;
  background: #ddd;
  text-decoration: none;
}

.tbt-destination-tour-card__image img,
.tbt-destination-region-grid img,
.tbt-destination-article-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tbt-destination-tour-card__image span {
  position: absolute;
  left: 18px;
  top: 18px;
  min-height: 25px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: var(--tbt-ink);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.tbt-destination-tour-card__body {
  padding: 22px 24px 24px;
}

.tbt-destination-tour-card__meta {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 10px;
  color: var(--tbt-muted);
}

.tbt-destination-tour-card h3,
.tbt-destination-card-grid h3,
.tbt-destination-region-grid h3,
.tbt-destination-season-grid span,
.tbt-destination-notes h3,
.tbt-destination-faq h3,
.tbt-destination-article-grid h3 {
  margin: 0 0 12px;
  font-family: var(--tbt-serif);
  font-size: 23px;
  line-height: 1.22;
  font-weight: 400;
  color: var(--tbt-ink);
}

.tbt-destination-tour-card h3 a,
.tbt-destination-article-grid a {
  color: inherit;
  text-decoration: none;
}

.tbt-destination-tour-card p,
.tbt-destination-card-grid p,
.tbt-destination-region-grid p,
.tbt-destination-season-grid p,
.tbt-destination-notes p,
.tbt-destination-faq p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--tbt-muted);
}

.tbt-destination-tour-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--tbt-border);
}

.tbt-destination-tour-card__footer strong {
  font-size: 14px;
  color: var(--tbt-ink);
}

.tbt-destination-tour-card__footer a {
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tbt-primary);
}

.tbt-destination-card-grid article,
.tbt-destination-season-grid article {
  padding: 28px;
}

/* ================================================================
   Destination Detail — Region Cards
================================================================ */

.tbt-destination-region-grid article {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--tbt-border);
}

.tbt-destination-region-grid article > a {
  display: block;
  height: 190px;
  overflow: hidden;
  background: #d8d4cc;
  text-decoration: none;
}

.tbt-destination-region-grid img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.tbt-destination-region-grid article:hover img {
  transform: scale(1.035);
}

.tbt-destination-region-grid article > div {
  padding: 24px;
}

.tbt-destination-region-grid h3 {
  margin: 0 0 12px;
  font-family: var(--tbt-serif);
  font-size: 23px;
  line-height: 1.22;
  font-weight: 400;
  color: var(--tbt-ink);
}

.tbt-destination-region-grid h3 a {
  color: inherit;
  text-decoration: none;
}

.tbt-destination-region-grid h3 a:hover {
  color: var(--tbt-primary);
}

.tbt-destination-region-grid p {
  margin: 0;
  font-family: var(--tbt-sans);
  font-size: 13.5px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--tbt-muted);
}

.tbt-destination-link-button {
  display: inline-flex;
  margin-top: 34px;
}

.tbt-destination-notes__list,
.tbt-destination-faq__list {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--tbt-border);
}

.tbt-destination-notes__list article,
.tbt-destination-faq__list article {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  padding: 28px 0;
  border-bottom: 1px solid var(--tbt-border);
}

.tbt-destination-article-grid img {
  display: block;
  height: 190px;
}

.tbt-destination-article-grid article {
  overflow: hidden;
}

.tbt-destination-article-grid a {
  display: block;
}

.tbt-destination-article-grid span {
  display: block;
  padding: 22px 24px 0;
  font-size: 10px;
  color: var(--tbt-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tbt-destination-article-grid h3 {
  padding: 10px 24px 26px;
}

.tbt-destination-final-cta {
  padding: 76px 0;
  background: #050505;
  color: #ffffff;
}

.tbt-destination-final-cta .tbt-destination-shell {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: center;
}

.tbt-destination-final-cta .tbt-destination-eyebrow {
  color: rgba(255,255,255,0.42);
}

.tbt-destination-final-cta h2 {
  margin: 0;
  font-family: var(--tbt-serif);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  font-weight: 300;
  color: #ffffff;
}

.tbt-destination-final-cta p {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
}

.tbt-destination-final-cta .tbt-destination-shell > div:last-child {
  display: grid;
  gap: 14px;
}

.tbt-destination-final-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,0.24);
  color: #ffffff;
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.tbt-destination-final-cta a:first-child {
  background: var(--tbt-primary);
  border-color: var(--tbt-primary);
}

@media (max-width: 1023px) {
  .tbt-destination-shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .tbt-destination-trust div div,
  .tbt-destination-two-col,
  .tbt-destination-tour-grid,
  .tbt-destination-card-grid,
  .tbt-destination-region-grid,
  .tbt-destination-season-grid,
  .tbt-destination-article-grid,
  .tbt-destination-final-cta .tbt-destination-shell {
    grid-template-columns: 1fr;
  }

  .tbt-destination-glance__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tbt-destination-notes__list article,
  .tbt-destination-faq__list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .tbt-destination-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tbt-destination-hero {
    height: 540px;
  }

  .tbt-destination-hero h1 {
    font-size: 40px;
  }

  .tbt-destination-hero__content {
    bottom: 48px;
  }

  .tbt-destination-section {
    padding: 64px 0;
  }

  .tbt-destination-glance__grid {
    grid-template-columns: 1fr;
  }

  .tbt-destination-section__head {
    display: block;
  }

  .tbt-destination-section__head a {
    display: inline-flex;
    margin-top: 20px;
  }
}

/* Destination tours: better balance when only 2 cards exist */
.tbt-destination-tour-grid {
  max-width: 820px;
}

.tbt-destination-tour-grid:has(.tbt-destination-tour-card:nth-child(3)) {
  max-width: none;
}
/* ================================================================
   Destination Journey Ideas — Visual Inspiration Rail
================================================================ */

.tbt-destination-ideas-visual {
  padding: 88px 0;
  background: #121817;
  color: #ffffff;
  overflow: hidden;
}

.tbt-destination-ideas-visual__inner {
  max-width: none;
  margin: 0;
  padding: 0 0 0 max(36px, calc((100vw - 1080px) / 2 + 36px));
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 42px;
  align-items: center;
}

.tbt-destination-ideas-visual__intro {
  min-width: 0;
}

.tbt-destination-ideas-visual__intro .tbt-destination-eyebrow {
  color: rgba(255,255,255,0.46);
}

.tbt-destination-ideas-visual__intro h2 {
  margin: 0;
  font-family: var(--tbt-serif);
  font-size: 38px;
  line-height: 1.08;
  font-weight: 300;
  color: #ffffff;
}

.tbt-destination-ideas-visual__intro p:not(.tbt-destination-eyebrow) {
  margin: 18px 0 26px;
  font-family: var(--tbt-sans);
  font-size: 13px;
  line-height: 1.75;
  font-style: italic;
  color: rgba(255,255,255,0.68);
}

.tbt-destination-ideas-visual__intro a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.35);
  text-decoration: none;
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  transition: all 180ms ease;
}

.tbt-destination-ideas-visual__intro a:hover {
  background: #ffffff;
  color: #121817;
}

.tbt-destination-ideas-visual__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 340px);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  padding: 4px 36px 18px 0;
}

.tbt-destination-ideas-visual__track::-webkit-scrollbar {
  height: 7px;
}

.tbt-destination-ideas-visual__track::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.08);
}

.tbt-destination-ideas-visual__track::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.28);
}

.tbt-destination-idea-card {
  position: relative;
  height: 450px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(20,121,184,0.35), rgba(0,0,0,0.78)),
    #1f2928;
  scroll-snap-align: start;
}

.tbt-destination-idea-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease, opacity 800ms ease;
}

.tbt-destination-idea-card:hover img {
  transform: scale(1.045);
}

.tbt-destination-idea-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.08) 0%,
      rgba(0,0,0,0.34) 42%,
      rgba(0,0,0,0.82) 100%
    );
}

.tbt-destination-idea-card__content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
}

.tbt-destination-idea-card__content p {
  margin: 0 0 10px;
  font-family: var(--tbt-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
}

.tbt-destination-idea-card__content h3 {
  margin: 0;
  font-family: var(--tbt-sans);
  font-size: 17px;
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
}

.tbt-destination-idea-card__content span {
  display: block;
  margin-top: 12px;
  font-family: var(--tbt-sans);
  font-size: 12px;
  line-height: 1.55;
  font-weight: 300;
  color: rgba(255,255,255,0.76);
}

.tbt-destination-idea-card__content a,
.tbt-destination-idea-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 18px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.48);
  text-decoration: none;
  font-family: var(--tbt-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  transition: all 180ms ease;
}

.tbt-destination-idea-card__link:hover .tbt-destination-idea-card__cta,
.tbt-destination-idea-card__content a:hover {
  background: #ffffff;
  color: #121817;
}

/* Whole-card click — wraps img + overlay + content. */
.tbt-destination-idea-card__link {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: block;
  text-decoration: none;
  color: inherit;
}

/* "X NIGHTS" badge top-right of card. */
.tbt-destination-idea-card__nights {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 3;
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

/* Responsive */

@media (max-width: 1023px) {
  .tbt-destination-ideas-visual__inner {
    grid-template-columns: 1fr;
    padding-left: 24px;
    padding-right: 24px;
  }

  .tbt-destination-ideas-visual__intro {
    max-width: 560px;
  }

  .tbt-destination-ideas-visual__track {
    grid-auto-columns: minmax(280px, 320px);
    padding-right: 24px;
  }
}

@media (max-width: 640px) {
  .tbt-destination-ideas-visual {
    padding: 64px 0;
  }

  .tbt-destination-ideas-visual__inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tbt-destination-ideas-visual__intro h2 {
    font-size: 32px;
  }

  .tbt-destination-ideas-visual__track {
    grid-auto-columns: 82vw;
  }

  .tbt-destination-idea-card {
    height: 400px;
  }
}
/* ================================================================
   Destination Proof Strip — Why With True Blue
================================================================ */

.tbt-destination-proof {
  padding: 58px 0 62px;
  background: #ffffff;
  border-top: 1px solid var(--tbt-border);
  border-bottom: 1px solid var(--tbt-border);
}

.tbt-destination-proof__head {
  max-width: 640px;
  margin: 0 auto 42px;
  text-align: center;
}

.tbt-destination-proof__head h2 {
  margin: 0;
  font-family: var(--tbt-serif);
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.08;
  font-weight: 300;
  color: var(--tbt-ink);
}

.tbt-destination-proof__head > p:not(.tbt-destination-eyebrow) {
  max-width: 540px;
  margin: 16px auto 0;
  font-family: var(--tbt-sans);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--tbt-muted);
}

.tbt-destination-proof__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  align-items: start;
}

.tbt-destination-proof__item {
  text-align: center;
  padding: 0 10px;
}

.tbt-destination-proof__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tbt-primary);
}

.tbt-destination-proof__icon svg {
  width: 58px;
  height: 58px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tbt-destination-proof__item h3 {
  max-width: 180px;
  margin: 0 auto 12px;
  font-family: var(--tbt-sans);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tbt-ink);
}

.tbt-destination-proof__item p {
  max-width: 190px;
  margin: 0 auto;
  font-family: var(--tbt-sans);
  font-size: 12.5px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--tbt-muted);
}

@media (max-width: 1023px) {
  .tbt-destination-proof__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 24px;
  }
}

@media (max-width: 640px) {
  .tbt-destination-proof {
    padding: 64px 0;
  }

  .tbt-destination-proof__head {
    text-align: left;
    margin-bottom: 38px;
  }

  .tbt-destination-proof__head > p:not(.tbt-destination-eyebrow) {
    margin-left: 0;
    margin-right: 0;
  }

  .tbt-destination-proof__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .tbt-destination-proof__item {
    text-align: left;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: start;
  }

  .tbt-destination-proof__icon {
    margin: 0;
  }

  .tbt-destination-proof__item h3,
  .tbt-destination-proof__item p {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .tbt-destination-proof__item h3 {
    margin-bottom: 8px;
  }
}
/* ================================================================
   Destination At a Glance — Editorial Facts Panel
================================================================ */

.tbt-destination-glance {
  background: #ffffff;
  border-top: 1px solid var(--tbt-border);
  border-bottom: 1px solid var(--tbt-border);
}

.tbt-destination-glance__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.tbt-destination-glance__intro h2 {
  max-width: 380px;
  margin: 0;
  font-family: var(--tbt-serif);
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
  font-weight: 300;
  color: var(--tbt-ink);
}

.tbt-destination-glance__list {
  border-top: 1px solid var(--tbt-border);
}

.tbt-destination-glance__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 18px 0;
  border-bottom: 1px solid var(--tbt-border);
}

.tbt-destination-glance__row span {
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tbt-muted);
}

.tbt-destination-glance__row strong {
  font-family: var(--tbt-serif);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 300;
  color: var(--tbt-ink);
}

@media (max-width: 1023px) {
  .tbt-destination-glance__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .tbt-destination-glance__row {
    grid-template-columns: 150px 1fr;
  }
}

@media (max-width: 640px) {
  .tbt-destination-glance__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
  }

  .tbt-destination-glance__row strong {
    font-size: 20px;
  }
}
/* ================================================================
   Destination Best Time — Seasonal Editorial List
================================================================ */

.tbt-destination-seasons {
  background: var(--tbt-bg);
}

.tbt-destination-seasons__head {
  max-width: 620px;
  margin-bottom: 42px;
}

.tbt-destination-seasons__head h2 {
  margin: 0;
  font-family: var(--tbt-serif);
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.12;
  font-weight: 300;
  color: var(--tbt-ink);
}

.tbt-destination-season-list {
  border-top: 1px solid var(--tbt-border);
}

.tbt-destination-season-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  padding: 26px 0;
  border-bottom: 1px solid var(--tbt-border);
}

.tbt-destination-season-row__label span {
  display: block;
  font-family: var(--tbt-serif);
  font-size: 30px;
  line-height: 1;
  font-weight: 300;
  color: var(--tbt-ink);
}

.tbt-destination-season-row__body p {
  max-width: 760px;
  margin: 0;
  font-family: var(--tbt-sans);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--tbt-muted);
}

@media (max-width: 760px) {
  .tbt-destination-season-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .tbt-destination-season-row__label span {
    font-size: 26px;
  }
}
/* ================================================================
   Destination Best Time — Compact Refinement
================================================================ */

.tbt-destination-seasons {
  padding-top: 58px !important;
  padding-bottom: 58px !important;
}

.tbt-destination-seasons__head {
  max-width: 560px !important;
  margin-bottom: 28px !important;
}

.tbt-destination-seasons__head h2 {
  font-size: clamp(30px, 3.1vw, 40px) !important;
  line-height: 1.08 !important;
}

.tbt-destination-season-row {
  grid-template-columns: 180px 1fr !important;
  gap: 44px !important;
  padding: 18px 0 !important;
}

.tbt-destination-season-row__label span {
  font-size: 25px !important;
}

.tbt-destination-season-row__body p {
  max-width: 720px !important;
  font-size: 13px !important;
  line-height: 1.62 !important;
}

@media (max-width: 760px) {
  .tbt-destination-seasons {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .tbt-destination-season-row {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 17px 0 !important;
  }

  .tbt-destination-season-row__label span {
    font-size: 24px !important;
  }
}
/* ================================================================
   True Blue Tour — Main Destinations Page
================================================================ */

.tbt-destinations-page {
  background: var(--tbt-bg);
  color: var(--tbt-ink);
  font-family: var(--tbt-sans);
}

.tbt-destinations-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 36px;
}

.tbt-destinations-eyebrow {
  margin: 0 0 14px;
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tbt-muted);
}

/* ================================================================
   Hero — same rhythm as homepage
================================================================ */

.tbt-destinations-hero {
  position: relative;
  height: 480px;
  min-height: 480px;
  max-height: 480px;
  overflow: hidden;
  background: #08171d;
}

.tbt-destinations-hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tbt-destinations-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.10) 0%,
      rgba(0, 0, 0, 0.28) 42%,
      rgba(0, 0, 0, 0.54) 100%
    );
}

.tbt-destinations-hero__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 92px;
  z-index: 2;
}

.tbt-destinations-hero .tbt-destinations-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 36px;
}

.tbt-destinations-hero .tbt-destinations-eyebrow {
  display: none;
}

.tbt-destinations-hero h1 {
  max-width: 640px;
  margin: 0;
  font-family: var(--tbt-serif);
  font-size: clamp(40px, 4.2vw, 58px);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: 0.005em;
  color: #ffffff;
}

.tbt-destinations-hero__intro {
  max-width: 520px;
  margin: 16px 0 0;
  font-family: var(--tbt-sans);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
}

.tbt-destinations-hero__actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

.tbt-destinations-hero__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  text-decoration: none;
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 180ms ease;
}

.tbt-destinations-hero__actions a:first-child {
  background: var(--tbt-primary);
  border: 1px solid var(--tbt-primary);
  color: #ffffff;
}

.tbt-destinations-hero__actions a:first-child:hover {
  background: var(--tbt-accent);
  border-color: var(--tbt-accent);
  color: #ffffff;
}

.tbt-destinations-hero__actions a:last-child {
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.tbt-destinations-hero__actions a:last-child:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
  color: #ffffff;
}

/* ================================================================
   Trust Bar
================================================================ */

.tbt-destinations-trust {
  background: #ffffff;
  border-bottom: 1px solid var(--tbt-border);
}

.tbt-destinations-trust__inner {
  min-height: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 24px;
}

.tbt-destinations-trust__inner span {
  position: relative;
  padding-left: 14px;
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--tbt-muted);
}

.tbt-destinations-trust__inner span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  border-radius: 999px;
  background: var(--tbt-primary);
}

/* ================================================================
   General Sections
================================================================ */

.tbt-destinations-section {
  padding: 78px 0;
}

.tbt-destinations-section__head {
  max-width: 720px;
  margin-bottom: 44px;
}

.tbt-destinations-section__head h2,
.tbt-destinations-philosophy h2,
.tbt-destinations-travel-styles__head h2,
.tbt-destinations-final-cta h2 {
  margin: 0;
  font-family: var(--tbt-serif);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 300;
  color: var(--tbt-ink);
}

/* ================================================================
   Destination Cards — Base
================================================================ */

.tbt-destinations-card {
  position: relative;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(20,121,184,0.22), rgba(0,0,0,0.88)),
    #101817;
  text-decoration: none;
  color: #ffffff;
}

.tbt-destinations-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}

.tbt-destinations-card:hover img {
  transform: scale(1.045);
}

.tbt-destinations-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.04) 0%,
      rgba(0,0,0,0.26) 45%,
      rgba(0,0,0,0.84) 100%
    );
}

.tbt-destinations-card__content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.tbt-destinations-card__meta {
  display: block;
  margin-bottom: 12px;
  font-family: var(--tbt-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.66);
}

.tbt-destinations-card strong {
  display: block;
  font-family: var(--tbt-serif);
  font-size: 28px;
  line-height: 1.08;
  font-weight: 400;
  color: #ffffff;
}

.tbt-destinations-card em {
  display: block;
  max-width: 260px;
  margin-top: 12px;
  font-family: var(--tbt-sans);
  font-size: 12px;
  line-height: 1.5;
  font-style: normal;
  font-weight: 300;
  color: rgba(255,255,255,0.76);
}

.tbt-destinations-card__link {
  display: inline-flex;
  margin-top: 20px;
  font-family: var(--tbt-sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
}

/* ================================================================
   Destination Cards — Hierarchical Layout
================================================================ */

.tbt-destinations-featured-grid,
.tbt-destinations-secondary-grid,
.tbt-destinations-other-grid {
  display: grid;
  gap: 18px;
  width: 100%;
}

.tbt-destinations-featured-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
}

.tbt-destinations-secondary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.tbt-destinations-other-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.tbt-destinations-subhead {
  margin: 46px 0 0;
}

.tbt-destinations-subhead .tbt-destinations-eyebrow {
  margin-bottom: 0;
}

.tbt-destinations-card--featured {
  height: 430px;
}

.tbt-destinations-card--featured strong {
  font-size: 34px;
}

.tbt-destinations-card--secondary {
  height: 310px;
}

.tbt-destinations-card--secondary strong {
  font-size: 28px;
}

.tbt-destinations-card--small,
.tbt-destinations-card--cta {
  height: 260px;
}

.tbt-destinations-card--small strong,
.tbt-destinations-card--cta strong {
  font-size: 25px;
}

.tbt-destinations-card--cta {
  background:
    linear-gradient(135deg, rgba(20,121,184,0.30), rgba(0,0,0,0.92)),
    #08171d;
  border: 1px solid rgba(20,121,184,0.22);
}

.tbt-destinations-card--cta .tbt-destinations-card__overlay {
  display: none;
}

.tbt-destinations-card--cta .tbt-destinations-card__content {
  top: 28px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.tbt-destinations-card:not(:has(img)) {
  background:
    linear-gradient(135deg, rgba(20,121,184,0.26), rgba(0,0,0,0.92)),
    #08171d;
}

/* ================================================================
   Philosophy
================================================================ */

.tbt-destinations-philosophy {
  background: #ffffff;
  border-top: 1px solid var(--tbt-border);
  border-bottom: 1px solid var(--tbt-border);
}

.tbt-destinations-philosophy__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: start;
}

.tbt-destinations-philosophy p {
  max-width: 520px;
  margin: 24px 0 0;
  font-family: var(--tbt-sans);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--tbt-muted);
}

.tbt-destinations-philosophy__points {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--tbt-border);
}

.tbt-destinations-philosophy__points article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--tbt-border);
}

.tbt-destinations-philosophy__points article > span {
  grid-column: 1;
  grid-row: 1 / span 2;
  font-family: var(--tbt-serif);
  font-size: 24px;
  line-height: 1;
  color: var(--tbt-primary);
}

.tbt-destinations-philosophy__points article > h3,
.tbt-destinations-philosophy__points article > p {
  grid-column: 2;
}

.tbt-destinations-philosophy__points h3 {
  margin: 0;
  font-family: var(--tbt-serif);
  font-size: 25px;
  line-height: 1.18;
  font-weight: 400;
  color: var(--tbt-ink);
}

.tbt-destinations-philosophy__points p {
  margin: 8px 0 0;
  max-width: 520px;
  font-size: 13.5px;
  line-height: 1.65;
}

/* ================================================================
   Travel Styles
================================================================ */

.tbt-destinations-travel-styles {
  padding: 72px 0;
  background: var(--tbt-bg);
}

.tbt-destinations-travel-styles__head {
  max-width: 680px;
  margin: 0 auto 42px;
  text-align: center;
}

.tbt-destinations-style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tbt-destinations-style-grid article {
  border-top: 1px solid var(--tbt-border);
  padding-top: 24px;
}

.tbt-destinations-style-grid h3 {
  margin: 0;
  font-family: var(--tbt-serif);
  font-size: 25px;
  line-height: 1.18;
  font-weight: 400;
  color: var(--tbt-ink);
}

.tbt-destinations-style-grid p {
  margin: 14px 0 0;
  font-size: 13.5px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--tbt-muted);
}

/* ================================================================
   Final CTA
================================================================ */

.tbt-destinations-final-cta {
  padding: 78px 0;
  text-align: center;
  background: #050505;
  color: #ffffff;
}

.tbt-destinations-final-cta .tbt-destinations-eyebrow {
  color: rgba(255,255,255,0.42);
}

.tbt-destinations-final-cta h2 {
  color: #ffffff;
}

.tbt-destinations-final-cta p {
  max-width: 560px;
  margin: 20px auto 0;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(255,255,255,0.68);
}

.tbt-destinations-final-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.tbt-destinations-final-cta__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,0.34);
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
}

.tbt-destinations-final-cta__actions a:first-child {
  background: var(--tbt-primary);
  border-color: var(--tbt-primary);
}

/* ================================================================
   Responsive
================================================================ */

@media (max-width: 1023px) {
  .tbt-destinations-shell,
  .tbt-destinations-hero .tbt-destinations-shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .tbt-destinations-hero {
    height: 500px;
    min-height: 500px;
    max-height: 500px;
  }

  .tbt-destinations-hero__content {
    bottom: 72px;
  }

  .tbt-destinations-hero h1 {
    font-size: clamp(38px, 7vw, 52px);
  }

  .tbt-destinations-trust__inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 0;
    gap: 16px 28px;
  }

  .tbt-destinations-featured-grid,
  .tbt-destinations-secondary-grid,
  .tbt-destinations-other-grid,
  .tbt-destinations-philosophy__grid,
  .tbt-destinations-style-grid {
    grid-template-columns: 1fr;
  }

  .tbt-destinations-card--featured,
  .tbt-destinations-card--secondary,
  .tbt-destinations-card--small,
  .tbt-destinations-card--cta {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .tbt-destinations-shell,
  .tbt-destinations-hero .tbt-destinations-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tbt-destinations-hero {
    height: 460px;
    min-height: 460px;
    max-height: 460px;
  }

  .tbt-destinations-hero__content {
    bottom: 48px;
  }

  .tbt-destinations-hero h1 {
    font-size: 36px;
  }

  .tbt-destinations-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .tbt-destinations-hero__actions a,
  .tbt-destinations-final-cta__actions a {
    width: 100%;
  }

  .tbt-destinations-trust__inner {
    grid-template-columns: 1fr;
  }

  .tbt-destinations-section,
  .tbt-destinations-travel-styles,
  .tbt-destinations-final-cta {
    padding: 62px 0;
  }

  .tbt-destinations-card--featured,
  .tbt-destinations-card--secondary,
  .tbt-destinations-card--small,
  .tbt-destinations-card--cta {
    height: 300px;
  }

  .tbt-destinations-subhead {
    margin-top: 34px;
  }

  .tbt-destinations-philosophy__points article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tbt-destinations-philosophy__points article > span,
  .tbt-destinations-philosophy__points article > h3,
  .tbt-destinations-philosophy__points article > p {
    grid-column: 1;
  }
}
/* ================================================================
   Destination Detail — Featured Tours Grid Fix
================================================================ */

.tbt-destination .tbt-destination-tour-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
  max-width: 820px !important;
}

.tbt-destination .tbt-destination-tour-card {
  width: 100% !important;
  background: #ffffff;
  border: 1px solid var(--tbt-border);
}

.tbt-destination .tbt-destination-tour-card__image {
  height: 215px !important;
}

.tbt-destination .tbt-destination-tour-card__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

@media (max-width: 760px) {
  .tbt-destination .tbt-destination-tour-grid {
    grid-template-columns: 1fr !important;
    max-width: none !important;
  }
}
/* ================================================================
   Homepage Destinations Section — Shell Fix
================================================================ */

.tbt-home-section--destinations {
  background: #e7e4dd;
}

.tbt-home-section--destinations .tbt-home-shell {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 36px;
  padding-right: 36px;
}

.tbt-home-section--destinations .tbt-home-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.tbt-home-section--destinations .tbt-home-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 1023px) {
  .tbt-home-section--destinations .tbt-home-shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .tbt-home-section--destinations .tbt-home-dest-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .tbt-home-section--destinations .tbt-home-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tbt-home-section--destinations .tbt-home-section__head {
    display: block;
  }

  .tbt-home-section--destinations .tbt-home-section__link {
    display: inline-flex;
    margin-top: 18px;
  }
}

/* ================================================================
   Generic page template (page.php) — used for all non-templated pages.
   --tbt-page--bare removes the hero so shortcodes that bring their own
   headers (like [tbt_manage_booking]) don't show a duplicate title.
================================================================ */

.tbt-page__shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 36px;
}

.tbt-page__hero {
  background: var(--tbt-secondary);
  border-bottom: 1px solid var(--tbt-border);
  padding: 70px 0 60px;
}

.tbt-page__title {
  margin: 0;
  font-family: var(--tbt-serif);
  font-weight: 400;
  font-size: 52px;
  line-height: 1.1;
  color: var(--tbt-ink);
}

.tbt-page__body {
  padding: 60px 0 80px;
  background: var(--tbt-bg);
}

.tbt-page__content {
  font-family: var(--tbt-sans);
  color: var(--tbt-ink);
  line-height: 1.6;
  font-size: 17px;
}

.tbt-page__content p {
  margin: 0 0 18px 0;
}

.tbt-page__content h2,
.tbt-page__content h3 {
  font-family: var(--tbt-serif);
  font-weight: 500;
  color: var(--tbt-ink);
  margin-top: 36px;
}

.tbt-page__content a {
  color: var(--tbt-primary);
}

/* Bare variant — used by page-manage-booking.php. No hero, no body
   padding, because the shortcode's own panel already has margin. */
.tbt-page--bare {
  background: var(--tbt-bg);
  padding: 0;
}

@media (max-width: 720px) {
  .tbt-page__shell { padding: 0 20px; }
  .tbt-page__hero  { padding: 46px 0 36px; }
  .tbt-page__title { font-size: 36px; }
  .tbt-page__body  { padding: 40px 0 60px; }
}
/* ===========================================================
   Market-aware elements (Phase D')
   =========================================================== */

/* Utility bar — slim dark strip above the main header.
   Holds the trust line, phone CTA and Manage Booking link so the
   primary header (logo + nav + Enquire) stays uncluttered.
   Hidden below 768px — the phone is also in the footer + contact page. */
.tbt-utility-bar {
  background: var(--tbt-primary);
  color: rgba(255,255,255,0.85);
  font-family: var(--tbt-sans);
  font-size: 12px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.tbt-utility-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.tbt-utility-bar__trust {
  margin: 0;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.72);
}

.tbt-utility-bar__trust span {
  margin: 0 8px;
  color: rgba(255,255,255,0.45);
}

.tbt-utility-bar__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.tbt-utility-bar__phone {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  transition: color 160ms ease;
}

.tbt-utility-bar__phone:hover {
  color: #ffffff;
}

.tbt-utility-bar__phone-text {
  color: rgba(255,255,255,0.72);
  font-size: 11.5px;
}

.tbt-utility-bar__phone-number {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.tbt-utility-bar__manage {
  position: relative;
  text-decoration: none;
  color: rgba(255,255,255,0.78);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-left: 22px;
  transition: color 160ms ease;
}

.tbt-utility-bar__manage::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.18);
  transform: translateY(-50%);
}

.tbt-utility-bar__manage:hover {
  color: #ffffff;
}

@media (max-width: 900px) {
  .tbt-utility-bar__trust {
    display: none;
  }
  .tbt-utility-bar__inner {
    justify-content: flex-end;
  }
}

@media (max-width: 768px) {
  .tbt-utility-bar {
    display: none;
  }
}

/* Footer: region switcher — minimal dropdown on black bottom bar. */
.tbt-footer-market-switcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--tbt-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

.tbt-footer-market-switcher label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
}

.tbt-footer-market-switcher select {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  font-family: var(--tbt-sans);
  font-size: 12px;
  padding: 6px 28px 6px 10px;
  border-radius: 2px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.55) 50%),
                    linear-gradient(135deg, rgba(255,255,255,0.55) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  transition: border-color 160ms ease, color 160ms ease;
}

.tbt-footer-market-switcher select:hover,
.tbt-footer-market-switcher select:focus {
  border-color: rgba(255,255,255,0.38);
  color: #ffffff;
  outline: none;
}

.tbt-footer-market-switcher select option {
  background: #111111;
  color: #ffffff;
}

/* Footer: market-aware hours line — soft, small, above offices. */
.tbt-footer-contact__hours {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

/* ===========================================================
   Trust strips — admin-editable bullet rows
   The plugin renders <div class="<wrap-class>"><span>…</span><i>·</i>…</div>
   so each consumer site picks a wrap-class to inherit local styling.
   =========================================================== */

.tbt-footer-trust-line__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  font-family: var(--tbt-sans);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.tbt-footer-trust-line__items i {
  font-style: normal;
  color: rgba(255,255,255,0.30);
}

/* ===========================================================
   Memberships marquee — slow infinite horizontal scroll
   Sits in the footer just above the main footer-links block.
   The plugin doubles the list internally so the loop seams.
   =========================================================== */

.tbt-memberships {
  padding: 28px 0 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tbt-memberships__eyebrow {
  margin: 0 0 14px;
  text-align: center;
  font-family: var(--tbt-sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
}

.tbt-memberships__viewport {
  position: relative;
  overflow: hidden;
  /* fade edges so logos don't pop in/out abruptly */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}

.tbt-memberships__track {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  width: max-content;
  animation: tbt-memberships-scroll 48s linear infinite;
}

.tbt-memberships__viewport:hover .tbt-memberships__track {
  animation-play-state: paused;
}

@keyframes tbt-memberships-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.tbt-memberships-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  /* Fixed-width slot so items can't grow into each other when logos
     have wildly different aspect ratios. */
  width: 200px;
  min-height: 80px;
  padding: 0 8px;
  box-sizing: border-box;
}

.tbt-memberships-item > a,
.tbt-memberships-item > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  transition: opacity 200ms ease, filter 200ms ease;
}

.tbt-memberships-item__logo {
  display: block;
  max-height: 44px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Tint to white. Works best with transparent-background PNGs.
     If a logo arrives with a solid white/light background, the tint
     will turn the whole rectangle white — upload a transparent PNG
     instead, or add the .tbt-no-tint class to that membership row. */
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 200ms ease;
}

/* Per-row escape hatch — admin can future-add a "no tint" toggle. */
.tbt-memberships-item--no-tint .tbt-memberships-item__logo {
  filter: none;
  opacity: 1;
}

.tbt-memberships-item > a:hover .tbt-memberships-item__logo,
.tbt-memberships-item > span:hover .tbt-memberships-item__logo {
  opacity: 1;
}

.tbt-memberships-item__name {
  font-family: var(--tbt-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78);
}

.tbt-memberships-item__caption {
  font-family: var(--tbt-sans);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.40);
  text-align: center;
}

/* Embed-code variant — partner widget renders as-is with its own CSS.
   Don't tint logos, don't constrain min-width, don't force flex column. */
.tbt-memberships-item--embed {
  flex-direction: row;
  align-items: center;
  min-width: 0;
}
.tbt-memberships-item--embed > * {
  /* widgets sometimes ship as inline-block + own bg — let them breathe */
  display: inline-block;
}
.tbt-memberships-item--embed img,
.tbt-memberships-item--embed .tbt-memberships-item__logo {
  filter: none;
  opacity: 1;
}

/* Respect reduced-motion preference — no scroll for those users. */
@media (prefers-reduced-motion: reduce) {
  .tbt-memberships__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }
}

/* ===========================================================
   404 page — premium fallback when a URL goes missing.
   =========================================================== */

.tbt-404 {
  background: var(--tbt-bg);
}

.tbt-404-shell {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.tbt-404-eyebrow {
  font-family: var(--tbt-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tbt-primary);
  margin: 0 0 18px;
}

.tbt-404-hero {
  padding: 96px 0 56px;
}

.tbt-404-hero h1 {
  font-family: var(--tbt-serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.4px;
  color: var(--tbt-ink);
  margin: 0 0 22px;
}

.tbt-404-lede {
  font-family: var(--tbt-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--tbt-muted);
  max-width: 580px;
  margin: 0 auto 36px;
}

/* Search */
.tbt-404-search {
  display: flex;
  align-items: stretch;
  max-width: 540px;
  margin: 0 auto 26px;
  background: #ffffff;
  border: 1px solid var(--tbt-border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

.tbt-404-search input[type="search"] {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 18px;
  font-family: var(--tbt-sans);
  font-size: 14px;
  color: var(--tbt-ink);
  outline: none;
}

.tbt-404-search input[type="search"]::placeholder {
  color: var(--tbt-muted);
  opacity: 0.7;
}

.tbt-404-search button {
  border: none;
  background: var(--tbt-ink);
  color: #ffffff;
  padding: 0 22px;
  font-family: var(--tbt-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease;
}

.tbt-404-search button:hover {
  background: var(--tbt-primary);
}

/* CTA buttons */
.tbt-404-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tbt-404-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  font-family: var(--tbt-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.tbt-404-btn--primary {
  background: var(--tbt-primary);
  color: #ffffff;
  border: 1px solid var(--tbt-primary);
}

.tbt-404-btn--primary:hover {
  background: #0e6196;
  border-color: #0e6196;
}

.tbt-404-btn--secondary {
  background: transparent;
  color: var(--tbt-ink);
  border: 1px solid var(--tbt-ink);
}

.tbt-404-btn--secondary:hover {
  background: var(--tbt-ink);
  color: #ffffff;
}

/* Destination shortcuts */
.tbt-404-destinations {
  padding: 36px 0 56px;
}

.tbt-404-destinations__list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.tbt-404-destinations__list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 22px 16px;
  background: #ffffff;
  border: 1px solid var(--tbt-border);
  border-radius: 3px;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.tbt-404-destinations__list a:hover {
  border-color: var(--tbt-primary);
  transform: translateY(-2px);
}

.tbt-404-destinations__name {
  font-family: var(--tbt-serif);
  font-size: 22px;
  color: var(--tbt-ink);
}

.tbt-404-destinations__count {
  font-family: var(--tbt-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tbt-muted);
}

/* Help block */
.tbt-404-help {
  padding: 56px 0 96px;
  border-top: 1px solid var(--tbt-border);
  margin-top: 18px;
}

.tbt-404-help h2 {
  font-family: var(--tbt-serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--tbt-ink);
}

.tbt-404-help p {
  max-width: 520px;
  margin: 0 auto 26px;
  font-family: var(--tbt-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--tbt-muted);
}

@media (max-width: 768px) {
  .tbt-404-shell { padding: 0 24px; }
  .tbt-404-hero  { padding: 64px 0 40px; }
  .tbt-404-hero h1 { font-size: 42px; }
  .tbt-404-lede { font-size: 15px; }
  .tbt-404-destinations__list { grid-template-columns: repeat(2, 1fr); }
  .tbt-404-help { padding: 44px 0 72px; }
  .tbt-404-help h2 { font-size: 28px; }
}

/* ===========================================================
   Booking flow page (page-booking.php)
   =========================================================== */

.tbt-booking-flow { background: var(--tbt-bg); }
.tbt-booking-flow__shell { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.tbt-booking-flow__eyebrow {
  font-family: var(--tbt-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tbt-primary);
  margin: 0 0 14px;
}

.tbt-booking-flow__hero,
.tbt-booking-flow__empty {
  padding: 88px 0 36px;
  text-align: center;
}
.tbt-booking-flow__hero h1,
.tbt-booking-flow__empty h1 {
  font-family: var(--tbt-serif);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.4px;
  color: var(--tbt-ink);
  margin: 0 0 18px;
}
.tbt-booking-flow__lede {
  font-family: var(--tbt-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--tbt-muted);
  max-width: 580px;
  margin: 0 auto;
}

.tbt-booking-flow__main { padding: 36px 0 88px; }

.tbt-booking-flow__grid {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

/* Trip summary */
.tbt-booking-summary {
  position: sticky;
  top: 100px;
  background: #ffffff;
  border: 1px solid var(--tbt-border);
  border-radius: 4px;
  overflow: hidden;
}
.tbt-booking-summary__image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.tbt-booking-summary__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.tbt-booking-summary__body { padding: 22px 24px 26px; }
.tbt-booking-summary__eyebrow {
  font-family: var(--tbt-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tbt-muted);
  margin: 0 0 6px;
}
.tbt-booking-summary h2 {
  font-family: var(--tbt-serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 8px;
}
.tbt-booking-summary h2 a { color: var(--tbt-ink); text-decoration: none; }
.tbt-booking-summary h2 a:hover { color: var(--tbt-primary); }
.tbt-booking-summary__subtitle {
  font-family: var(--tbt-sans);
  font-size: 14px;
  color: var(--tbt-muted);
  margin: 0 0 18px;
}

.tbt-booking-summary__facts {
  margin: 14px 0 0;
  padding: 16px 0;
  border-top: 1px solid var(--tbt-border);
  border-bottom: 1px solid var(--tbt-border);
}
.tbt-booking-summary__facts > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 5px 0;
}
.tbt-booking-summary__facts dt {
  font-family: var(--tbt-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tbt-muted);
  margin: 0;
}
.tbt-booking-summary__facts dd {
  margin: 0;
  font-family: var(--tbt-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--tbt-ink);
  text-align: right;
}

.tbt-booking-summary__pricing { padding-top: 18px; }
.tbt-booking-summary__price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  font-family: var(--tbt-sans);
  font-size: 14px;
  color: var(--tbt-ink);
}
.tbt-booking-summary__price-row span { color: var(--tbt-muted); font-size: 13px; }
.tbt-booking-summary__price-row--total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 2px solid var(--tbt-ink);
  font-size: 17px;
}
.tbt-booking-summary__price-row--total span { color: var(--tbt-ink); font-weight: 600; }
.tbt-booking-summary__price-row--total strong { font-size: 20px; font-weight: 700; }
.tbt-booking-summary__price-row--deposit { color: var(--tbt-muted); }
.tbt-booking-summary__price-row--deposit strong { color: var(--tbt-ink); font-weight: 600; }

.tbt-booking-summary__note {
  margin: 14px 0 0;
  padding: 10px 12px;
  background: #fff8eb;
  border: 1px solid #f3e3bb;
  border-radius: 3px;
  font-family: var(--tbt-sans);
  font-size: 12px;
  line-height: 1.5;
  color: #6b5318;
}
.tbt-booking-summary__protected {
  margin: 16px 0 0;
  font-family: var(--tbt-sans);
  font-size: 12px;
  color: var(--tbt-muted);
  line-height: 1.5;
}
.tbt-booking-summary__protected strong { color: var(--tbt-ink); display: inline; }

/* Form */
.tbt-booking-form-wrap { background: #ffffff; border: 1px solid var(--tbt-border); border-radius: 4px; padding: 36px 40px; }

.tbt-booking-form h3 {
  font-family: var(--tbt-serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--tbt-ink);
}
.tbt-booking-form__hint {
  font-family: var(--tbt-sans);
  font-size: 13px;
  color: var(--tbt-muted);
  margin: 0 0 22px;
}
.tbt-booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 14px;
}
.tbt-booking-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.tbt-booking-field label {
  font-family: var(--tbt-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tbt-ink);
}
.tbt-booking-field label span { color: #b32d2e; }
.tbt-booking-field input,
.tbt-booking-field select,
.tbt-booking-field textarea {
  font-family: var(--tbt-sans);
  font-size: 14px;
  padding: 11px 12px;
  border: 1px solid var(--tbt-border);
  border-radius: 3px;
  background: #ffffff;
  color: var(--tbt-ink);
  transition: border-color 160ms ease;
}
.tbt-booking-field input:focus,
.tbt-booking-field select:focus,
.tbt-booking-field textarea:focus {
  outline: none;
  border-color: var(--tbt-primary);
}

.tbt-booking-terms {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 10px 0 18px;
  font-family: var(--tbt-sans);
  font-size: 13px;
  color: var(--tbt-muted);
  line-height: 1.5;
}
.tbt-booking-terms input { margin-top: 3px; }
.tbt-booking-terms a { color: var(--tbt-primary); text-decoration: underline; }

.tbt-booking-submit { margin-top: 8px; }
.tbt-booking-submit button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 36px;
  background: var(--tbt-primary);
  color: #ffffff;
  border: none;
  border-radius: 3px;
  font-family: var(--tbt-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease;
}
.tbt-booking-submit button:hover { background: #0e6196; }
.tbt-booking-submit button:disabled { opacity: 0.65; cursor: progress; }
.tbt-booking-submit__hint {
  font-family: var(--tbt-sans);
  font-size: 12px;
  color: var(--tbt-muted);
  margin: 10px 0 0;
}

.tbt-booking-form__status {
  margin-top: 14px;
  font-family: var(--tbt-sans);
  font-size: 13px;
  line-height: 1.5;
}
.tbt-booking-status--ok  { color: #166534; }
.tbt-booking-status--err { color: #991b1b; }

/* Buttons used in empty state + success */
.tbt-booking-flow__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  font-family: var(--tbt-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.tbt-booking-flow__btn--primary {
  background: var(--tbt-primary);
  color: #ffffff;
  border: 1px solid var(--tbt-primary);
}
.tbt-booking-flow__btn--primary:hover { background: #0e6196; border-color: #0e6196; }

/* Success panel */
.tbt-booking-success {
  background: #ffffff;
  border: 1px solid var(--tbt-border);
  border-radius: 4px;
  padding: 44px 40px;
  text-align: center;
}
.tbt-booking-success__eyebrow {
  font-family: var(--tbt-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tbt-primary);
  margin: 0 0 14px;
}
.tbt-booking-success h2 {
  font-family: var(--tbt-serif);
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 14px;
  color: var(--tbt-ink);
}
.tbt-booking-success__lede {
  font-family: var(--tbt-sans);
  font-size: 15px;
  color: var(--tbt-muted);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 24px;
}
.tbt-booking-success__ref {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 28px;
  margin: 4px 0 16px;
  border: 1px dashed var(--tbt-primary);
  border-radius: 3px;
  background: rgba(20, 121, 184, 0.04);
}
.tbt-booking-success__ref span {
  font-family: var(--tbt-sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tbt-muted);
}
.tbt-booking-success__ref strong {
  font-family: Menlo, Monaco, monospace;
  font-size: 22px;
  letter-spacing: 1.4px;
  color: var(--tbt-ink);
}
.tbt-booking-success__hint {
  font-family: var(--tbt-sans);
  font-size: 13px;
  color: var(--tbt-muted);
  margin: 8px 0 18px;
}

/* How it works */
.tbt-booking-flow__steps { padding: 56px 0 88px; background: #ffffff; border-top: 1px solid var(--tbt-border); }
.tbt-booking-flow__steps-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tbt-booking-flow__steps-list li { text-align: left; }
.tbt-booking-flow__steps-list span {
  font-family: var(--tbt-serif);
  font-size: 36px;
  color: var(--tbt-primary);
  display: block;
  margin-bottom: 6px;
}
.tbt-booking-flow__steps-list h3 {
  font-family: var(--tbt-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--tbt-ink);
}
.tbt-booking-flow__steps-list p {
  font-family: var(--tbt-sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--tbt-muted);
  margin: 0;
}

@media (max-width: 960px) {
  .tbt-booking-flow__grid { grid-template-columns: 1fr; gap: 28px; }
  .tbt-booking-summary    { position: static; }
}
@media (max-width: 768px) {
  .tbt-booking-flow__shell { padding: 0 22px; }
  .tbt-booking-flow__hero  { padding: 64px 0 28px; }
  .tbt-booking-flow__hero h1,
  .tbt-booking-flow__empty h1 { font-size: 36px; }
  .tbt-booking-form-wrap { padding: 26px 22px; }
  .tbt-booking-form__row { grid-template-columns: 1fr; gap: 0; }
  .tbt-booking-flow__steps-list { grid-template-columns: 1fr; gap: 18px; }
  .tbt-booking-success { padding: 32px 22px; }
  .tbt-booking-success h2 { font-size: 26px; }
}