/* =========================================
   GLOBAL BASE
========================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", Arial, sans-serif;
  background: radial-gradient(circle at top, #151b2e 0, #05060a 45%, #020208 100%);
  color: #f5f5f5;
  line-height: 1.6;
}

a {
  color: #5cc6ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.container {
  width: min(96%, 1200px);
  margin: 0 auto;
}

/* =========================================
   TYPOGRAPHY
========================================= */

h1, h2, h3, h4 {
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.1rem);
}

h3 {
  font-size: 1.2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 0.6rem;
}

.section-intro,
.page-intro {
  max-width: 720px;
  margin: 0.25rem auto 1.5rem;
  color: #cfcfd8;
  font-size: 0.98rem;
}

.small-text {
  font-size: 0.85rem;
  color: #b3b3c0;
}

/* =========================================
   BUTTONS
========================================= */

.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #36b2ff, #8a5bff);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.55);
}

.btn-secondary {
  background: #181825;
  color: #f5f5f5;
  border-color: #2d3652;
}

.btn-secondary:hover {
  border-color: #5cc6ff;
}

.btn-outline {
  background: transparent;
  border-color: #3b4b75;
  color: #e0e0f0;
}

.btn-outline:hover {
  background: #1a2137;
}

.full-width {
  width: 100%;
}

/* =========================================
   LAYOUT HELPERS
========================================= */

.section {
  padding: 3rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, #111526 0, #060711 55%, #05060a 100%);
  padding: 3rem 0;
}

.grid {
  display: grid;
  gap: 1.8rem;
}

.grid.two {
  grid-template-columns: 1fr;
}

.grid.three {
  grid-template-columns: 1fr;
}

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

/* =========================================
   HEADER & NAV
========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5,6,12,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(80, 90, 130, 0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.25rem;
}

.logo-image {
  width: 210px;
  height: auto;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.main-nav a {
  color: #d3d6e8;
  font-size: 0.92rem;
  font-weight: 500;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
}

.main-nav a.active {
  color: #ffffff;
  border-color: #5cc6ff;
}

/* =========================================
   ANNOUNCEMENT BAR (HOME)
========================================= */

.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(90deg, #1a263d, #12324c, #242455);
  color: #f5f5f5;
  font-size: 0.9rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(114, 192, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.hide-announcement .announcement-bar {
  transform: translateY(-100%);
  transition: transform 0.2s ease-out;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.announcement-main {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.announcement-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  color: #ffec99;
}

.announcement-season {
  font-weight: 600;
}

.announcement-logos {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.cruise-badge {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(6, 13, 32, 0.65);
  border: 1px solid rgba(140, 197, 255, 0.45);
  font-size: 0.75rem;
  white-space: nowrap;
}

.announcement-cta {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  color: #05101f;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.announcement-cta:hover {
  text-decoration: none;
  background: #f0f4ff;
}

.season-fade {
  animation: seasonFadeIn 0.6s ease;
}

@keyframes seasonFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================
   HOME HERO
========================================= */

.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.hero-text p {
  color: #d0d2e2;
}

.hero-actions {
  margin: 1.3rem 0 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-tagline {
  margin-top: 1rem;
  color: #aeb4d4;
  font-size: 0.9rem;
}

.hero-card {
  background: radial-gradient(circle at top left, rgba(94, 211, 255,0.16), rgba(14,18,40,0.98));
  border-radius: 18px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 16px 44px rgba(0,0,0,0.5);
  border: 1px solid rgba(106, 150, 255, 0.45);
}

.hero-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.hero-card ul {
  padding-left: 1.1rem;
  margin: 0 0 1rem;
  color: #dde4ff;
}

/* =========================================
   CARDS & GRIDS
========================================= */

.card {
  background: radial-gradient(circle at top, #151627, #080811);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 14px 30px rgba(0,0,0,0.45);
  border: 1px solid rgba(82, 90, 130, 0.7);
}

.card.highlight {
  border-color: rgba(111, 193, 255, 0.8);
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
}

.destination-grid,
.cruise-deals-grid {
  margin-top: 1.7rem;
}

.destination-card {
  position: relative;
}

.destination-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.75rem;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  background: rgba(6,16,40,0.9);
  border: 1px solid rgba(132, 201, 255, 0.8);
  color: #dff3ff;
}

.deal-line {
  font-size: 0.9rem;
  color: #bec7e5;
}

.bullet-list {
  padding-left: 1.15rem;
  margin: 0.4rem 0 0;
  color: #d7d9eb;
}

/* =========================================
   BOOKING FLOW
========================================= */

.booking-flow {
  display: grid;
  gap: 1.6rem;
  margin-top: 1.5rem;
}

.booking-step {
  position: relative;
  padding-top: 1.2rem;
}

.booking-step-number {
  position: absolute;
  top: 0.7rem;
  right: 1.2rem;
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(120, 144, 255, 0.18);
}

.cta-panel {
  background: radial-gradient(circle at top left, rgba(96, 204, 255,0.22), rgba(9,13,33,0.98));
  border-radius: 18px;
  padding: 1.6rem 1.7rem;
  border: 1px solid rgba(120, 189, 255, 0.7);
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
}

/* =========================================
   PAGE HERO (INNER PAGES)
========================================= */

.page-hero {
  padding: 3.5rem 0 2.3rem;
  text-align: center;
}

/* =========================================
   ADVISOR / ABOUT PAGE
========================================= */

.advisor-grid {
  margin-top: 1.75rem;
}

.advisor-card {
  background: radial-gradient(circle at top, #191a28, #090912);
  border-radius: 18px;
  padding: 1.6rem 1.5rem 1.5rem;
  border: 1px solid rgba(91, 107, 155, 0.9);
  box-shadow: 0 16px 36px rgba(0,0,0,0.55);
  text-align: left;
}

.advisor-photo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.advisor-photo {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 12px; /* squared with gentle rounded corners */
  box-shadow: 0 14px 34px rgba(0,0,0,0.6);
}

.advisor-role {
  font-size: 0.92rem;
  color: #9fa6cf;
  margin-bottom: 0.5rem;
}

/* =========================================
   CONTACT PAGE LAYOUT (EMBED FORM)
========================================= */

.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-main {
  min-width: 0;
}

.contact-sidebar {
  min-width: 0;
  background: radial-gradient(circle at top left, #1d2138, #080813);
  padding: 1.5rem 1.6rem;
  border-radius: 16px;
  border: 1px solid rgba(93, 122, 182, 0.9);
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
}

@media (min-width: 900px) {
  .contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: flex-start;
  }
}

/* Embedded Google Form wrapper */
.embedded-form-wrapper {
  border-radius: 18px;
  overflow: hidden;
  background: #050812;
  box-shadow: 0 18px 45px rgba(0,0,0,0.75);
  margin-top: 0.75rem;
}

.embedded-form-wrapper iframe {
  display: block;
  width: 100%;
  border: 0;
  min-height: 1050px;
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  background: #05060a;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(73, 80, 120, 0.7);
  margin-top: 2.5rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo img {
  width: 180px;
}

.footer-text {
  max-width: 420px;
  color: #c0c4dd;
  font-size: 0.9rem;
}

.footer-text.small-text {
  margin-top: 0.5rem;
  color: #9aa0c3;
}

.footer-links {
  display: grid;
  gap: 0.35rem;
}

.footer-links a {
  color: #d4d7f0;
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(65, 72, 110, 0.8);
  font-size: 0.8rem;
  color: #8b92b6;
  text-align: center;
}

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

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .announcement-inner {
    justify-content: center;
  }

  .announcement-cta {
    width: 100%;
    text-align: center;
  }
}
/* =========================================
   HOME PAGE (INDEX) – TRAVEL BY B & T LAYOUT
   Supports the tb-* classes used on index.html
========================================= */

.tb-page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.tb-container {
  width: min(96%, 1100px);
  margin: 0 auto;
  padding: 0 0;
}

/* ----- HEADER (MATTE BLACK) ----- */

.tb-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #050505;
  border-bottom: 1px solid rgba(148, 163, 184, 0.45);
  backdrop-filter: blur(10px);
}

.tb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  gap: 1.25rem;
}

.tb-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.tb-logo-img {
  height: 40px;
}

.tb-logo-img img {
  height: 100%;
  width: auto;
}

.tb-logo-text-main {
  font-size: 1rem;
  font-weight: 600;
  color: #f9fafb;
}

.tb-logo-text-sub {
  font-size: 0.75rem;
  color: #9ca3af;
}

.tb-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: flex-end;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.tb-nav a {
  position: relative;
  padding-bottom: 0.15rem;
  opacity: 0.9;
}

.tb-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #f6b100, #ffca2f);
  transition: width 0.18s ease-out;
}

.tb-nav a:hover::after {
  width: 100%;
}

.tb-nav a:hover {
  opacity: 1;
}

.tb-nav-cta {
  padding: 0.45rem 1.15rem;
  border-radius: 999px;
  border: 1px solid #f6b100;
  background: transparent;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fefce8;
}

.tb-nav-cta:hover {
  background: #f6b100;
  color: #1a1300;
}

@media (max-width: 820px) {
  .tb-nav-hide-sm {
    display: none;
  }
}

@media (max-width: 640px) {
  .tb-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .tb-nav {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ----- HERO – DARK FULL-WIDTH BANNER ----- */

.tb-hero {
  position: relative;
  color: #ffffff;
  padding: 3.4rem 0 3.6rem;
  background-image:
    linear-gradient(to bottom right, rgba(0,0,0,0.7), rgba(15,23,42,0.7)),
    url("/images/hero-caribbean.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

.tb-hero-inner {
  width: min(96%, 1100px);
  margin: 0 auto;
}

.tb-hero-topline {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.4rem;
}

.tb-hero-cruise-lines {
  font-size: 0.9rem;
  opacity: 0.95;
  margin-bottom: 1.3rem;
}

.tb-hero-title {
  font-size: clamp(2.1rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

.tb-hero-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 34rem;
  margin-bottom: 1.4rem;
}

.tb-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}

.tb-hero-badge {
  font-size: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(15,23,42,0.55);
  white-space: nowrap;
}

.tb-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.tb-hero-cta-primary,
.tb-hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: 0.18s ease-out;
}

.tb-hero-cta-primary {
  background: #f6b100;
  color: #1a1300;
  border-color: #f6b100;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
}

.tb-hero-cta-primary:hover {
  background: #ffca2f;
  border-color: #ffca2f;
}

.tb-hero-cta-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.7);
}

.tb-hero-cta-secondary:hover {
  background: rgba(0,0,0,0.4);
}

.tb-hero-support-line {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

@media (max-width: 640px) {
  .tb-hero {
    padding: 3rem 0 3.1rem;
  }
  .tb-hero-inner {
    width: min(96%, 1100px);
  }
  .tb-hero-title {
    font-size: 2.1rem;
  }
}

/* ----- HOME CONTENT WRAPPER (BELOW HERO) ----- */

.tb-section {
  padding: 2.5rem 0 0.75rem;
}

.tb-section + .tb-section {
  padding-top: 1.8rem;
}

.tb-section-header {
  margin-bottom: 1.1rem;
}

.tb-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a0a4c7;
  margin-bottom: 0.3rem;
}

.tb-section-title {
  font-size: 1.4rem;
  margin: 0;
}

.tb-section-lead {
  font-size: 0.95rem;
  color: #c0c4dd;
  margin-top: 0.35rem;
  max-width: 36rem;
}

/* Cards / grids on home page */

.tb-card {
  background: radial-gradient(circle at top, #151627, #080811);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 14px 30px rgba(0,0,0,0.45);
  border: 1px solid rgba(82, 90, 130, 0.7);
}

.tb-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.75rem;
  align-items: flex-start;
}

@media (max-width: 800px) {
  .tb-two-col {
    grid-template-columns: minmax(0, 1fr);
  }
}

.tb-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

@media (max-width: 900px) {
  .tb-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .tb-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.tb-subheading {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.tb-muted {
  color: #d0d2e2;
  font-size: 0.95rem;
}

.tb-list {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  color: #d7d9eb;
  font-size: 0.95rem;
}

.tb-list li + li {
  margin-top: 0.25rem;
}

.tb-cta-row {
  margin-top: 1.1rem;
}

.tb-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: 1px solid #f6b100;
  background: #f6b100;
  font-size: 0.9rem;
  font-weight: 600;
  color: #211600;
}

.tb-btn-primary:hover {
  background: #ffca2f;
  border-color: #ffca2f;
}

.tb-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  border: 1px solid #3b4b75;
  background: #111526;
  font-size: 0.88rem;
  font-weight: 500;
  color: #e0e4ff;
}

/* ----- FOOTER (tb-* version maps to existing footer styles) ----- */

.tb-footer {
  background: #05060a;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(73, 80, 120, 0.7);
  margin-top: 2.5rem;
}

.tb-footer-top {
  width: min(96%, 1100px);
  margin: 0 auto 1.1rem;
}

.tb-footer-logo {
  width: 180px;
  max-width: 60%;
  margin-bottom: 0.7rem;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.75));
}

.tb-footer-links {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.tb-footer-links a {
  color: #d4d7f0;
  opacity: 0.9;
}

.tb-footer-links a:hover {
  opacity: 1;
}

.tb-footer-meta {
  width: min(96%, 1100px);
  margin: 0 auto;
  font-size: 0.8rem;
  color: #8b92b6;
  text-align: left;
}
/* =========================================
   HOME HERO COLLAGE OVERRIDE (INDEX)
   Brings back dark banner + 4-image collage
========================================= */

/* Override earlier tb-hero to remove full background image */
.tb-hero {
  position: relative;
  color: #ffffff;
  padding: 3.4rem 0 3.6rem;
  background: #020617;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

/* Two-column layout: text left, collage right */
.tb-hero-inner {
  width: min(96%, 1100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: stretch;
}

/* Collage grid on the right */
.tb-hero-media {
  position: relative;
  min-height: 260px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.tb-hero-img {
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.75);
}

/* Use your four images in /images/ */
.tb-hero-img-1 { background-image: url("/images/hero-caribbean.jpg"); }
.tb-hero-img-2 { background-image: url("/images/hero-mediterranean.jpg"); }
.tb-hero-img-3 { background-image: url("/images/hero-resort.jpg"); }
.tb-hero-img-4 { background-image: url("/images/hero-group.jpg"); }

/* Make the first image tall (2 rows) */
.tb-hero-img-1 {
  grid-row: 1 / span 2;
}

/* Overlay label on collage */
.tb-hero-media-overlay {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.75);
  font-size: 0.8rem;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.9);
}

.tb-hero-media-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f6b100;
}

/* Responsive tweaks for small screens */
@media (max-width: 800px) {
  .tb-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .tb-hero-media {
    order: -1;
  }
}
/* =========================================
   REFINEMENTS – SMOOTHER, LESS BOXY HOME
========================================= */

/* Make header/hero/content share the same max-width rhythm */
.tb-hero-inner,
.tb-footer-top,
.tb-footer-meta {
  width: min(96%, 1100px);
  margin: 0 auto;
}

/* Smooth hero so it feels like a banner, not a big card */
.tb-hero {
  /* keep dark banner feel, but drop the heavy boxy shadow */
  box-shadow: none;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  background: radial-gradient(circle at top left, #0b1020 0, #020617 55%, #020617 100%);
}

/* Slightly more breathing room under hero */
.tb-section {
  padding-top: 2.7rem;
}

/* Soften the cards – still modern, but less “brick” */
.tb-card {
  background: radial-gradient(circle at top, #101324, #060710);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(82, 90, 130, 0.45);       /* less harsh */
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);      /* a bit softer */
}

/* Slightly lighter text inside cards for readability */
.tb-muted,
.tb-list {
  color: #dde1ff;
}

/* Hero right-side collage: round corners just a bit more “premium” */
.tb-hero-img {
  border-radius: 18px;
}

/* Reduce header weight a touch so it doesn’t feel like a box on top of a box */
.tb-header {
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.tb-header-inner {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

