/* ============================================================
   TruCape Tours — blocks.css v3.5
   Design system and layouts with maximized screen estate.
   ============================================================ */

:root {
  --white:   #ffffff;
  --paper:   #fbfaf7;
  --light-grey: #f2f1ed;
  --black:   #171717;
  --muted:   #575a57;
  --line:    rgba(23,23,23,0.12);
  --red:     #d3183e;
  --crimson: #d3183e;
  --navy:    #124559;
  --tc-blue: #124559;
  --slate:   #598392;
  --amber:   #ffb563;
  --ice:     #d6eeff;
  --beige:   #fbfaf7;
  --dark-grey: #343b3f;
  --peach:   #e5a48f;
  --display: 'Sora', Arial, sans-serif;
  --body:    'Manrope', Arial, sans-serif;
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── FSE / block-theme overrides ─────────────────────────── */
body.home,
body.page-template-default,
.wp-site-blocks,
.wp-block-post-content,
.entry-content,
.is-layout-flow > *,
.wp-block-group {
  max-width: none !important;
  margin-inline: 0 !important;
  padding-inline: 0 !important;
  background: transparent !important;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--black);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }



/* ── HERO SHELL (FULL-BLEED VIEWPORT HERO) ───────────────── */
.trucape-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100svh;
  background: var(--black);
  overflow: hidden;
}

/* Background slideshow layers */
.trucape-bg-slideshow { position: absolute; inset: 0; z-index: -5; background: #e5e2da; }
.trucape-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: grayscale(0.2) saturate(0.86);
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.35s ease, transform 1.35s var(--ease);
}
.trucape-slide.is-active  { opacity: 0.65; transform: scale(1); }
.trucape-slide.is-leaving { opacity: 0;    transform: scale(1.02); }

.trucape-white-veil {
  position: absolute;
  inset: 0;
  z-index: -4;
  /* 10% darker overlay - dark bottom-left for text, clears at top-right */
  background:
    linear-gradient(to top, rgba(5,5,5,0.85) 0%, rgba(5,5,5,0.48) 45%, rgba(5,5,5,0.22) 75%, rgba(5,5,5,0.08) 100%),
    linear-gradient(to right, rgba(5,5,5,0.60) 0%, rgba(5,5,5,0.0) 55%);
  pointer-events: none;
}

.trucape-white-veil::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(132deg, transparent 0 49%, rgba(211,24,62,0.08) 49.1%, transparent 49.32%);
  mix-blend-mode: screen;
}

.trucape-red-wash {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: radial-gradient(circle at 85% 85%, rgba(211,24,62,0.18), transparent 25%);
  pointer-events: none;
}

.trucape-grain {
  position: absolute;
  inset: 0;
  z-index: 5;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* Hero full-bleed content layer */
.trucape-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 460px;
  align-items: flex-end;
  gap: 32px;
  width: min(100% - 64px, 1450px);
  margin-inline: auto;
  /* Top padding exposes hero background behind transparent header.
     Bottom padding keeps form off the very edge */
  padding: 180px 0 64px;
  min-height: 100svh;
  text-align: left;
}

.trucape-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 8px;
}

.trucape-hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  position: relative;
  padding-bottom: 0;
}

.trucape-hero-mark {
  position: absolute;
  top: 50%;
  left: -80px;
  display: grid;
  gap: 6px;
  color: var(--red);
  font-family: var(--display);
  font-size: var(--tc-type-xs, .625rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  transform: translateY(-50%) rotate(-90deg);
  pointer-events: none;
}

.trucape-hero-mark span:last-child {
  color: var(--muted);
  font-family: var(--body);
  font-size: var(--tc-type-2xs, .5rem);
  letter-spacing: 0.14em;
}

/* ── VEHICLE IMAGE LOCKUP (from coming-soon) ─────────────── */
.vehicle-lockup {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: clamp(140px, 16vw, 240px);
  width: 100%;
  max-width: 440px;
}

.vehicle {
  display: block;
  position: relative;
  height: auto;
  filter: drop-shadow(0 16px 20px rgba(23, 23, 23, 0.16));
}

.vehicle-merc {
  order: 1;
  flex: 0 0 58%;
  width: 58%;
  z-index: 2;
  transform: translateX(7%);
}

.vehicle-quantum {
  order: 2;
  flex: 0 0 67%;
  width: 67%;
  z-index: 3;
  margin-left: -18%;
  margin-bottom: -12px;
}

/* ── EYEBROW ──────────────────────────────────────────── */
.tc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: var(--tc-type-xs, .625rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tc-eyebrow-line {
  width: 34px;
  height: 1px;
  background: var(--red);
  display: inline-block;
  flex-shrink: 0;
}

/* Sections (non-hero) with red background eyebrow */
.bg-red .tc-eyebrow {
  color: rgba(255,255,255,0.8);
}

.bg-red .tc-eyebrow-line {
  background: rgba(255,255,255,0.8);
}

/* ── HERO TYPOGRAPHY (white on dark bg) ────────────────── */
.trucape-shell h1 {
  margin: 0 0 16px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

/* First line stays white at 700, second line (span) is red at 600 */
.trucape-shell h1 span {
  color: var(--red);
  font-weight: 600;
}

.trucape-shell h1 span em {
  color: var(--red);
  font-weight: 600;
  font-style: italic;
}

.tc-intro {
  max-width: 520px;
  margin: 0 0 0;
  color: rgba(255,255,255,0.82);
  font-size: clamp(0.92rem, 1vw, 1.05rem);
  font-weight: 400;
  line-height: 1.65;
}

/* ── SEARCH CARD ─────────────────────────────────────────── */
.tc-search-box {
  width: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}

.tc-search-heading {
  display: none;
}

.tc-search-fields {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(23,23,23,0.1);
  border-radius: 14px;
  overflow: hidden;
}

.tc-search-field-col {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-right: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  position: relative;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}

.tc-search-field-col:last-child {
  border-bottom: none;
}

.tc-search-icon-svg {
  width: 15px;
  height: 15px;
  color: var(--white);
  flex-shrink: 0;
}

.tc-search-field-col input,
.tc-search-field-col select {
  border: none;
  background: transparent;
  width: 100%;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  outline: none;
  padding: 0;
  cursor: pointer;
}

.tc-search-field-col input::placeholder {
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.tc-search-submit-row {
  margin-top: 8px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tc-selected-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  max-height: 60px;
  overflow-y: auto;
}

.tc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(211,24,62,0.1);
  color: var(--red);
  border: 1px solid rgba(211,24,62,0.18);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
}

.tc-badge-remove {
  cursor: pointer;
  font-weight: 900;
  font-size: 0.72rem;
}

.tc-search-btn {
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  transition: background 200ms ease, transform 200ms var(--ease);
  letter-spacing: 0.01em;
}

.tc-search-btn:hover {
  background: var(--red);
  transform: translateY(-1px);
}

/* AJAX Selector Dropdown list */
.tc-ajax-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  background: var(--white);
  border: 1px solid rgba(23,23,23,0.18);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  max-height: 250px;
  overflow-y: auto;
  z-index: 200;
  display: none;
  padding: 6px;
}

.tc-ajax-dropdown.active {
  display: block;
}

.tc-ajax-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 150ms ease;
  font-size: 0.8rem;
  font-weight: 600;
}

.tc-ajax-item:hover {
  background: rgba(23,23,23,0.05);
}

.tc-ajax-item.selected {
  background: rgba(211,24,62,0.06);
  color: var(--red);
}

.tc-ajax-item-checkbox {
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--muted);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--white);
  transition: all 150ms ease;
}

.selected .tc-ajax-item-checkbox {
  border-color: var(--red);
  background: var(--red);
}

/* ── MINI TESTIMONIALS (Right Column) ─────────────── */
.tc-mini-testimonials {
  margin-top: 24px;
  width: 100%;
  max-width: 580px;
}
.tc-mini-track {
  position: relative;
  min-height: 120px;
}
.tc-mini-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 800ms ease, transform 800ms ease;
  background: transparent;
  padding: 18px 24px 18px 0;
}
.tc-mini-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.tc-mini-stars {
  color: #fbbf24;
  font-size: var(--tc-type-sm, .9375rem);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.tc-mini-quote {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  margin: 0 0 10px;
  line-height: 1.5;
  font-style: italic;
}
.tc-mini-author {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── HERO MOBILE RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  .trucape-hero-layout {
    grid-template-columns: 1fr;
    align-items: flex-start;
    /* Large top padding to expose the hero background above the content */
    padding: 160px 0 36px;
    min-height: 100svh;
    gap: 32px;
  }

  /* Text on top, form below */
  .trucape-hero-left {
    order: 1;
    justify-content: flex-start;
    padding-bottom: 0;
    gap: 12px;
  }
  .trucape-hero-right {
    order: 2;
  }

  .trucape-shell h1 {
    font-size: clamp(1.85rem, 7.5vw, 2.6rem);
    margin-bottom: 10px;
  }

  .tc-intro {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .vehicle-lockup {
    height: clamp(100px, 28vw, 160px);
    margin-bottom: 8px;
  }

  /* Mobile form collapse — show only search input initially */
  .tc-mobile-collapsed .tc-date-col,
  .tc-mobile-collapsed .tc-pax-col,
  .tc-mobile-collapsed .tc-search-submit-row {
    display: none !important;
  }
  .tc-search-box.tc-mobile-collapsed .tc-search-fields {
    grid-template-columns: 1fr;
  }
  .tc-search-box.tc-mobile-collapsed .tc-search-field-col {
    border-right: none;
  }
}



/* ── SECTION OUTER BOUNDS (MINIMIZED PADDING) ─────────────── */
.tc-section-inner {
  width: min(100% - 48px, 1450px);
  margin-inline: auto;
  text-align: left;
  padding: 36px 0 16px;
}

.tc-section-inner h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--black);
  margin: 6px 0 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.bg-red .tc-section-inner h2 {
  color: var(--white);
}

/* ── CAROUSEL SECTIONS (DIVIDING BACKGROUNDS) ──────────────── */
.trucape-tours-section {
  padding-bottom: 30px;
  transition: background 0.3s ease;
}

/* Dividing Background classes */
.bg-paper      { background: var(--paper); }
.bg-white      { background: var(--white); }
.bg-light-grey { background: var(--light-grey); }
.bg-red        { background: var(--red); color: var(--white); }

.bg-red .nav-place, .bg-red .nav-status, .bg-red .tc-form-note {
  color: rgba(255,255,255,0.7);
}

/* Adjust card list padding to save screen estate */
.tc-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 24px 20px;
  scrollbar-width: none;
}
.tc-carousel::-webkit-scrollbar { display: none; }

.tc-card {
  flex: 0 0 280px;
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  border: 1px solid var(--line);
  transition: transform 220ms var(--ease), border-color 220ms ease, box-shadow 220ms ease;
  background: #e5e2da;
}

.tc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(211,24,62,0.4);
  box-shadow: 0 10px 30px rgba(23,23,23,0.12);
}

.bg-red .tc-card {
  border-color: rgba(255,255,255,0.15);
}

.tc-card .card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

.tc-card:hover .card-bg { transform: scale(1.05); }

.tc-card .card-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,23,23,0.01) 0%, rgba(23,23,23,0.75) 100%);
}

.tc-card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px;
  z-index: 2;
  text-align: left;
}

.tc-card-tag {
  display: inline-block;
  background: rgba(211,24,62,0.15);
  color: var(--red);
  border: 1px solid rgba(211,24,62,0.25);
  border-radius: 20px;
  padding: 2px 8px;
  font-size: var(--tc-type-2xs, .5rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 4px 8px 0;
}

.bg-red .tc-card-tag {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.tc-card h3 {
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 6px;
}

.tc-card .card-excerpt {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.45;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tc-card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── EXPANDING '+' TO 'ADD DESTINATION' BUTTON ──────────── */
.tc-add-btn {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: var(--red);
  color: var(--white);
  border: none;
  font-size: 1.15rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 10px;
  cursor: pointer;
  transition: width 300ms var(--ease), border-radius 300ms var(--ease), background 200ms ease;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.tc-add-btn::after { content: none; display: none; }

.tc-add-btn:hover { width: auto; background: #b01030; }

.tc-details-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.74rem;
  font-weight: 600;
  font-family: var(--body);
  cursor: pointer;
  transition: all 200ms ease;
}

.tc-details-btn:hover {
  border-color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
}

/* ── TESTIMONIALS SECTION (MINIMIZED TO 2-COLUMN) ────────── */
.trucape-testimonials-section {
  padding: 36px 0;
  transition: background 0.3s ease;
}

.trucape-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  width: min(100% - 48px, 1450px);
  margin-inline: auto;
  align-items: center;
  text-align: left;
}

.testimonials-left h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 800;
  margin: 6px 0 8px;
  line-height: 1.15;
}

.testimonials-left p {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
}

.trucape-testimonials-section .testimonials-track {
  position: relative;
  min-height: 180px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}

.testimonial-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.testimonial-stars {
  color: var(--red);
  font-size: 0.9rem;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.testimonial-quote {
  font-family: var(--display);
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--black);
  line-height: 1.55;
  margin: 0 0 14px;
}

.testimonial-author {
  font-size: 0.8rem;
  color: var(--muted);
}

.testimonial-author .author-name {
  color: var(--black);
  font-weight: 700;
}

.testimonial-author .author-location::before {
  content: '·';
  margin-right: 6px;
  margin-left: 6px;
}

.testimonial-dots {
  display: flex;
  gap: 7px;
  margin-top: 16px;
}

.t-dot {
  width: 24px;
  height: 2px;
  padding: 0;
  background: rgba(23,23,23,0.18);
  border: 0;
  cursor: pointer;
  transition: width 240ms var(--ease), background 240ms ease;
}

.t-dot.active { background: var(--red); width: 44px; }

/* ── STORIES / FEED SECTION ──────────────────────────────── */
.trucape-stories-section {
  padding-bottom: 36px;
}

.tc-story-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 6px 24px 16px;
  scrollbar-width: none;
}
.tc-story-track::-webkit-scrollbar { display: none; }

.tc-story-card {
  flex: 0 0 110px;
  height: 190px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 250ms var(--ease);
  border: 1px solid var(--line);
}

.tc-story-card:hover { transform: scale(1.03); }

.tc-story-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 0.5s var(--ease);
}

.tc-story-card:hover .tc-story-bg { transform: scale(1.06); }

.tc-story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23,23,23,0.85) 0%, rgba(23,23,23,0.15) 60%, transparent 100%);
  z-index: 2;
}

.tc-story-avatar {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--red);
  z-index: 3;
}

.tc-story-title {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  z-index: 3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}



/* ── STICKY QUOTE BAR ────────────────────────────────────── */
.trucape-quote-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  background: rgba(251,250,247,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 30px rgba(23,23,23,0.08);
  transform: translateY(100%);
  transition: transform 350ms var(--ease);
}

.trucape-quote-bar.visible { transform: translateY(0); }

.tc-qb-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

.tc-qb-count {
  color: var(--red);
  font-weight: 800;
}

.tc-qb-actions { display: flex; gap: 8px; align-items: center; }

.tc-qb-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  font-family: var(--body);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 220ms var(--ease);
}

.tc-qb-btn-primary { background: var(--red); color: var(--white); }
.tc-qb-btn-primary:hover { background: #b01030; transform: translateY(-1px); }

/* ── REVEAL ANIMATIONS ───────────────────────────────────── */
.tc-reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: tcReveal 850ms var(--ease) forwards;
}
.tc-reveal-1 { animation-delay: 80ms; }
.tc-reveal-2 { animation-delay: 150ms; }
.tc-reveal-3 { animation-delay: 220ms; }
.tc-reveal-4 { animation-delay: 300ms; }

@keyframes tcReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ── BLOG POSTS GRID ─────────────────────────────────────── */
.tc-posts-section {
  padding-bottom: 36px;
}

.tc-posts-grid-wrap {
  overflow-x: auto;
  scrollbar-width: none;
}
.tc-posts-grid-wrap::-webkit-scrollbar { display: none; }

.tc-posts-grid {
  display: flex;
  gap: 18px;
  padding: 8px 24px 20px;
}

.tc-post-card {
  flex: 0 0 280px;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
  display: flex;
  flex-direction: column;
}

.tc-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(23,23,23,0.1);
}

.tc-post-card-featured {
  flex: 0 0 380px;
}

.tc-post-card-img {
  display: block;
  overflow: hidden;
  height: 180px;
}

.tc-post-card-featured .tc-post-card-img {
  height: 220px;
}

.tc-post-card-img-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease);
}

.tc-post-card:hover .tc-post-card-img-inner {
  transform: scale(1.05);
}

.tc-post-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}

.tc-post-tag {
  display: inline-block;
  background: rgba(211,24,62,0.08);
  color: var(--red);
  border: 1px solid rgba(211,24,62,0.15);
  font-size: var(--tc-type-2xs, .5rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  align-self: flex-start;
}

.bg-light-grey .tc-post-tag,
.bg-paper .tc-post-tag {
  background: rgba(23,23,23,0.06);
  color: var(--muted);
  border-color: var(--line);
}

.tc-post-card h3 {
  font-family: var(--display);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
  margin: 0;
}

.tc-post-card-featured h3 {
  font-size: 1.1rem;
}

.tc-post-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.tc-post-card h3 a:hover { color: var(--red); }

.tc-post-excerpt {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tc-post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.tc-post-meta time {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

.tc-read-link {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  transition: gap 200ms ease;
}

.tc-read-link:hover { text-decoration: underline; }

/* ── VIDEO FEED TRACK ────────────────────────────────────── */
.tc-video-section {
  padding-bottom: 30px;
}

.tc-video-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 8px 24px 20px;
}
.tc-video-track::-webkit-scrollbar { display: none; }

.tc-video-card {
  flex: 0 0 260px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
  background: var(--white);
}

.tc-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(23,23,23,0.12);
}

.tc-video-thumb {
  position: relative;
  height: 150px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tc-video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(23,23,23,0.35);
  transition: background 200ms ease;
}

.tc-video-card:hover .tc-video-thumb::after {
  background: rgba(23,23,23,0.2);
}

.tc-play-btn {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  transition: transform 220ms var(--ease), background 200ms ease;
}

.tc-play-btn svg {
  width: 16px;
  height: 16px;
  margin-left: 3px;
}

.tc-video-card:hover .tc-play-btn {
  transform: scale(1.1);
  background: var(--red);
  color: var(--white);
}

.tc-video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 2;
  background: rgba(23,23,23,0.75);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.tc-video-info {
  padding: 14px 16px;
}

.tc-video-info h3 {
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 6px;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tc-video-info p {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── PICTURE PHOTO ESSAY GRID ────────────────────────────── */
.tc-picture-section {
  padding-bottom: 36px;
}

.tc-picture-grid-wrap {
  overflow-x: auto;
  scrollbar-width: none;
}
.tc-picture-grid-wrap::-webkit-scrollbar { display: none; }

.tc-picture-grid {
  display: flex;
  gap: 10px;
  padding: 8px 24px 20px;
  height: 280px;
}

.tc-picture-tile {
  flex: 0 0 200px;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  transition: flex 280ms var(--ease);
}

.tc-picture-tile-wide {
  flex: 0 0 340px;
}

.tc-picture-tile:hover {
  flex: 0 0 280px;
}

.tc-picture-tile-wide:hover {
  flex: 0 0 400px;
}

.tc-picture-tile-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.5s var(--ease);
}

.tc-picture-tile:hover .tc-picture-tile-bg {
  transform: scale(1.03);
}

.tc-picture-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23,23,23,0.85) 0%, rgba(23,23,23,0.1) 60%, transparent 100%);
}

.tc-picture-tile-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  text-align: left;
}

.tc-picture-num {
  display: block;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.tc-picture-tile-body h3 {
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── PREMIUM MODAL SHEET REDESIGN ────────────────────────── */
.trucape-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(23,23,23,0.55);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.trucape-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.trucape-sheet-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9300;
  background: var(--paper);
  border-radius: 24px 24px 0 0;
  max-height: 88svh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 420ms var(--ease);
  box-shadow: 0 -12px 60px rgba(23,23,23,0.22);
}

@media (min-width: 1024px) {
  .trucape-sheet-modal { bottom: -15px; width: 750px; justify-self: center; }
}

@media (max-width: 1023px) {
  .trucape-sheet-modal { width: 100%; }
}

.trucape-sheet-modal .modal-close-btn { position: sticky; top: 12px; z-index: 4; float: right; margin: 12px 16px -48px 0; }

.trucape-sheet-modal.open { transform: translateY(0); }

/* The mobile Travel Plan control stays available while browsing, but must
   yield pointer access to the single shared modal when it is open. */
body:has(.trucape-sheet-modal.open) #tcMobileCartToggle { visibility: hidden; pointer-events: none; }

/* Handle bar drag indicator */
.modal-handle {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: rgba(23,23,23,0.18);
  margin: 12px auto 0;
  display: none;
}

/* Hero image at the top of modal */
.modal-hero {
  position: relative;
  height: clamp(200px, 32vw, 340px);
  overflow: hidden;
  margin: 0;
}

.modal-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

.trucape-sheet-modal.open .modal-hero-img {
  transform: scale(1.02);
}

.modal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(23,23,23,0.9) 0%,
    rgba(23,23,23,0.3) 50%,
    rgba(23,23,23,0.1) 100%
  );
}

.modal-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  z-index: 2;
}

.modal-hero-tag {
  display: inline-block;
  background: rgba(211,24,62,0.85);
  color: var(--white);
  font-size: var(--tc-type-2xs, .5625rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.modal-hero-content h2 {
  font-family: var(--display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.modal-close-btn {
  position: sticky;
  top: 14px;
  float: right;
  margin: 14px 16px -50px 0;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--tc-ink, #17202a);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 200ms ease;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.modal-close-btn svg { width: 16px; height: 16px; }

.modal-close-btn:hover {
  background: var(--red);
}

/* Action buttons row */
.modal-actions {
  display: flex;
  gap: 10px;
  padding: 16px 24px 8px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}

.modal-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 12px;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 220ms var(--ease);
  flex: 1;
  justify-content: center;
  white-space: nowrap;
}

.modal-action-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.modal-action-quote {
  background: var(--red);
  color: var(--white);
}

.modal-action-quote:hover {
  background: #b01030;
  transform: translateY(-1px);
}

.modal-action-whatsapp {
  background: #128C7E;
  color: #111;
}

.modal-action-whatsapp:hover {
  background: #0f776b;
  color: #111;
  transform: translateY(-1px);
}

/* Modal body content */
.modal-body {
  padding: 20px 28px 36px;
  color: var(--black);
  font-family: var(--body);
  font-size: 0.9rem;
  line-height: 1.65;
}

.modal-body p { margin: 0 0 14px; }
.modal-body p:last-child { margin-bottom: 0; }

.modal-body h3, .modal-body h4 {
  font-family: var(--display);
  font-weight: 700;
  margin: 18px 0 8px;
  color: var(--black);
}

/* Loading skeleton */
.modal-skeleton {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 0;
}

.skeleton-line {
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--light-grey) 25%, #ede9e1 50%, var(--light-grey) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.4s ease infinite;
  width: 100%;
}

.skeleton-line-wide { width: 75%; }
.skeleton-line-med  { width: 55%; }

@keyframes skeletonShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .trucape-navbar {
    width: min(100% - 36px, 900px);
    min-height: 64px;
  }

  .trucape-hero-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    width: min(100% - 36px, 600px);
    padding: 30px 0;
  }

  .trucape-hero-left {
    align-items: center;
  }

  .trucape-hero-right {
    margin-top: 20px;
  }

  .trucape-hero-mark { display: none; }

  .tc-intro {
    max-width: 100%;
  }

  .tc-carousel,
  .tc-story-track { padding: 8px 16px 16px; }

  .tc-card { flex: 0 0 250px; height: 350px; }

  .tc-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .tc-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .tc-app-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .modal-hero {
    height: 200px;
  }

  .modal-actions {
    padding: 12px 16px;
  }

  .modal-body {
    padding: 16px 16px 28px;
  }
}

@media (max-width: 640px) {
  .nav-place { display: none; }

  .trucape-navbar {
    grid-template-columns: 1fr auto;
  }

  .tc-search-fields {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .tc-search-field-col {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 10px 12px;
  }

  .tc-search-field-col:last-child {
    border-bottom: none;
  }

  .tc-section-inner,
  .trucape-testimonials-grid {
    text-align: left; /* Left aligned headings and content on mobile as requested */
  }

  .trucape-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tc-card { flex: 0 0 240px; height: 340px; }

  .tc-footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tc-footer-social {
    justify-content: center;
  }

  .tc-footer-about {
    align-items: flex-start;
    text-align: left;
  }

  .tc-footer-logo, .tc-footer-desc, .tc-footer-social {
    text-align: left;
  }

  .trucape-quote-bar {
    padding: 10px 16px;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }

  .tc-qb-actions { justify-content: center; }
}

/* ============================================================
   Native Gutenberg homepage design block
   ============================================================ */
.tc-homepage-block {
  --tc-red: #d3183e;
  --tc-crimson: #d3183e;
  --tc-navy: #124559;
  --tc-slate: #598392;
  --tc-amber: #ffb563;
  --tc-ice: #d6eeff;
  --tc-ink: #171717;
  --tc-dark-grey: #343b3f;
  --tc-paper: #fbfaf7;
  --tc-beige: #fbfaf7;
  --tc-muted: #43545d;
  --tc-border: rgba(23, 23, 23, .12);
  background: var(--tc-paper);
  color: var(--tc-ink);
  font-family: "Manrope", Arial, sans-serif;
  overflow: hidden;
  max-width: 100%;
}
.tc-home-wrap { width: min(calc(100% - 48px), 1240px); margin-inline: auto; }
.tc-home-hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  padding: 128px 0 64px;
  color: #fff;
  background: linear-gradient(90deg, rgba(12,12,12,.78), rgba(12,12,12,.22)), var(--tc-hero-image) center/cover;
  overflow: hidden;
}
.tc-home-hero::before { content: ''; position: absolute; z-index: 0; width: clamp(330px, 43vw, 640px); height: clamp(330px, 43vw, 640px); top: 7%; left: max(3%, calc(50% - 610px)); border-radius: 50%; background: var(--tc-red); opacity: 1; transform: translate(-14%, 0); }
.tc-home-hero::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,10,10,.25), rgba(10,10,10,.58)); }
.tc-home-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .85fr); gap: clamp(42px, 7vw, 110px); align-items: center; }
.tc-home-hero-grid::before { content: ''; position: absolute; z-index: 1; width: clamp(180px, 18vw, 270px); height: clamp(180px, 18vw, 270px); right: 12%; top: 2%; border-radius: 50%; background: var(--tc-red); opacity: 1; }
.tc-home-hero-copy { position: relative; z-index: 2; min-width: 0; }
.tc-home-hero-side { position: relative; z-index: 2; min-width: 0; align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.tc-home-hero-side-intro { max-width: 300px; margin-bottom: 20px; }
.tc-home-hero-side-intro p:last-child { margin: 0; color: rgba(255,255,255,.78); font-size: .86rem; line-height: 1.65; }
.tc-home-eyebrow, .tc-home-card-kicker { margin: 0 0 12px; color: var(--tc-red); font: 700 .72rem/1 var(--body); letter-spacing: .13em; text-transform: uppercase; }
.tc-home-hero .tc-home-eyebrow { color: #ffccd5; }
.tc-home-hero h1 { max-width: 100%; margin: 0 0 18px; font: 700 clamp(2.45rem, 5vw, 5.4rem)/1.05 var(--display); letter-spacing: -.06em; overflow-wrap: break-word; }
.tc-home-hero-copy > p:not(.tc-home-eyebrow) { max-width: 570px; margin: 0 0 28px; color: rgba(255,255,255,.86); font-size: 1.05rem; line-height: 1.7; }
.tc-home-search { max-width: 760px; padding: 8px; border: 1px solid rgba(255,255,255,.32); border-radius: 22px; background: rgba(255,255,255,.95); color: var(--tc-ink); box-shadow: 0 18px 55px rgba(0,0,0,.2); }
.tc-home-search-top { display: flex; align-items: center; gap: 10px; }
.tc-home-dest-field { display: flex; align-items: center; flex: 1; gap: 10px; min-width: 0; padding: 13px 14px; }
.tc-input-icon, .tc-field-shell svg, .tc-home-card-actions svg { display: inline-flex; width: 19px; height: 19px; flex: 0 0 19px; }
.tc-input-icon svg, .tc-field-shell svg, .tc-home-card-actions svg { fill: none; stroke: currentColor; stroke-width: 1.7; }
.tc-home-destination-input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--tc-ink); font: 600 1rem var(--body); }
.tc-home-destination-input::placeholder { color: #6b6b6b; font-weight: 400; }
.tc-search-btn, .tc-home-expand-btn, .tc-home-submit { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 0; border-radius: 14px; padding: 13px 18px; background: #252525; color: #fff; font: 700 .82rem var(--body); cursor: pointer; transition: transform .2s var(--ease), background .2s ease; }
.tc-search-btn:hover, .tc-home-expand-btn:hover, .tc-home-submit:hover { transform: translateY(-2px); background: var(--tc-red); }
.tc-search-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.tc-home-form-panel { padding: 14px 8px 8px; }
.tc-home-form-panel { display: grid; grid-template-rows: 0fr; overflow: hidden; max-height: 0; padding-top: 0; padding-bottom: 0; opacity: 0; transition: grid-template-rows .42s var(--ease), max-height .42s var(--ease), opacity .24s ease, padding .42s var(--ease); }
.tc-home-form-panel > * { min-height: 0; }
.tc-home-form-panel.is-open { grid-template-rows: 1fr; max-height: 820px; padding-top: 14px; padding-bottom: 8px; opacity: 1; }
.tc-home-destination-options { display: flex; gap: 10px; overflow-x: auto; padding: 2px 0 12px; scrollbar-width: thin; }
.tc-home-destination-option { position: relative; flex: 0 0 132px; min-height: 108px; overflow: hidden; padding: 0; border: 1px solid var(--tc-border); border-radius: 12px; background: #ddd; color: #fff; text-align: left; cursor: pointer; }
.tc-home-destination-option img { width: 100%; height: 100%; min-height: 108px; object-fit: cover; opacity: .8; transition: transform .3s var(--ease); }
.tc-home-destination-option::after { content: ''; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.78)); }
.tc-home-destination-option span { position: absolute; right: 9px; bottom: 9px; left: 9px; z-index: 1; font-size: .72rem; font-weight: 700; }
.tc-home-destination-option.is-selected { outline: 3px solid var(--tc-red); outline-offset: 2px; }
.tc-home-destination-option.is-selected img { transform: scale(1.08); }
.tc-home-selected-badges { display: flex; flex-wrap: wrap; gap: 6px; min-height: 4px; margin: 0 0 12px; }
.tc-home-selected-badges span { padding: 5px 9px; border-radius: 99px; background: #f4d7de; color: #8d1430; font-size: .7rem; font-weight: 700; }
.tc-home-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 12px; }
.tc-home-form-grid label { display: grid; gap: 6px; color: #555; font-size: .7rem; font-weight: 700; }
.tc-field-shell { display: flex; align-items: center; gap: 7px; min-height: 44px; padding: 5px 10px; border: 1px solid var(--tc-border); border-radius: 10px; background: #fff; }
.tc-field-shell input, .tc-field-shell select { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--tc-ink); font: 400 .82rem var(--body); }
.tc-home-submit { width: 100%; background: var(--tc-red); }
.tc-hero-destination-fader { position: relative; z-index: 2; min-height: 430px; }
.tc-hero-destination-card { position: absolute; inset: 0; display: flex; align-items: flex-end; overflow: hidden; padding: 26px; border-radius: 26px 26px 26px 58px; background: linear-gradient(180deg, rgba(18,69,89,.08) 18%, rgba(18,69,89,.94) 100%), var(--card-image) center/cover; opacity: 0; visibility: hidden; transform: scale(.985); transition: opacity .65s ease, transform .65s var(--ease), visibility .65s ease; }
.tc-hero-destination-card.is-active { opacity: 1; visibility: visible; transform: none; }
.tc-hero-destination-card-content { width: 100%; }
.tc-hero-destination-card .tc-home-card-kicker { color: #ffc1ce; margin-bottom: 9px; }
.tc-hero-destination-card h2 { margin: 0 0 7px; font: 700 clamp(1.6rem, 3vw, 2.65rem)/1.05 var(--display); }
.tc-hero-destination-card strong { display: block; margin-bottom: 10px; font-size: .86rem; }
.tc-hero-destination-card p:not(.tc-home-card-kicker) { max-width: 440px; margin: 0 0 15px; color: rgba(255,255,255,.8); font-size: .8rem; line-height: 1.55; }
.tc-home-section { padding: 104px 0; }
.tc-home-section-soft { background: #f0eee8; }
.tc-home-section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 30px; }
.tc-home-section-head h1, .tc-home-section-head h2, .tc-home-feature-grid h2 { max-width: 680px; margin: 0; font: 700 clamp(1.65rem, 3vw, 3rem)/1.12 var(--display); letter-spacing: -.045em; }
.tc-home-section-head > p { max-width: 310px; margin: 0; color: var(--tc-muted, #43545d); font-size: .85rem; line-height: 1.6; }
.tc-home-product-grid, .tc-home-package-row { display: grid; }
.tc-home-card-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.tc-add-btn, .tc-details-btn { display: inline-flex; align-items: center; gap: 7px; border: 1px solid rgba(255,255,255,.48); border-radius: 99px; padding: 9px 12px; cursor: pointer; font: 700 .68rem var(--body); }
.tc-add-btn { background: var(--tc-red); color: #fff; }
.tc-details-btn { background: rgba(255,255,255,.12); color: #fff; }
.tc-add-btn:hover, .tc-details-btn:hover { border-color: #fff; transform: translateY(-2px); }
.tc-home-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.tc-home-feature-grid p:not(.tc-home-eyebrow) { max-width: 560px; color: var(--tc-muted); line-height: 1.75; }
.tc-home-benefit-list { display: grid; gap: 12px; }
.tc-home-benefit-list div { display: grid; gap: 5px; padding: 20px; border: 1px solid var(--tc-border); border-radius: 15px; background: rgba(255,255,255,.54); }
.tc-home-benefit-list strong { font: 700 .9rem var(--display); }
.tc-home-benefit-list span { color: var(--tc-muted); font-size: .78rem; }
.tc-testimonials-block.tc-testimonials-compact { margin-top: 28px; padding: 16px 0 0; border-top: 1px solid rgba(255,255,255,.28); }
.tc-testimonials-compact .tc-testimonials-heading { display: none; }
.tc-testimonials-compact .tc-testimonial-track { display: flex; gap: 12px; overflow: hidden; }
.tc-testimonials-compact .tc-testimonial-card { flex: 0 0 100%; width: 100%; padding: 16px; border: 1px solid rgba(255,255,255,.2); border-radius: 14px; background: rgba(0,0,0,.2); text-align: left; }
.tc-testimonials-compact .tc-testimonial-card p { margin: 0; color: rgba(255,255,255,.82); font-size: .74rem; line-height: 1.55; }
.tc-testimonials-compact .tc-testimonial-mark { display: block; width: 28px; height: 28px; margin-bottom: 10px; color: #ffccd5; }
.tc-testimonials-compact .tc-testimonial-mark svg { display: block; width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; }
.tc-testimonials-compact .tc-testimonial-stars { margin-bottom: 8px; color: #ffccd5; font-size: .72rem; letter-spacing: .12em; }
.tc-testimonials-compact .tc-testimonial-card footer { display: flex; align-items: center; gap: 8px; margin-top: 12px; color: rgba(255,255,255,.72); font-size: .7rem; }
.tc-testimonials-compact .tc-testimonial-card footer img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }
.tc-testimonials-compact .tc-testimonial-track { position: relative; min-height: 150px; }
.tc-testimonials-compact .tc-testimonial-slide { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(8px); transition: opacity .5s ease, transform .5s var(--ease), visibility .5s ease; }
.tc-testimonials-compact .tc-testimonial-slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
.tc-testimonials-compact .tc-testimonial-card { position: absolute; inset: 0; width: 100%; }
.tc-home-discovery-discs { position: relative; isolation: isolate; display: grid; min-height: 470px; align-items: center; overflow: hidden; padding: 72px 0; color: #fff; background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.28)), url('/trucape/wp-content/uploads/trucape-staging/chapmans-peak-sunset.jpg') center/cover; }
.tc-home-discovery-discs::before, .tc-home-discovery-discs::after { content: ''; position: absolute; z-index: 0; border-radius: 50%; background: var(--tc-red); }
.tc-home-discovery-discs::before { width: clamp(330px, 42vw, 620px); height: clamp(330px, 42vw, 620px); left: max(-150px, calc(50% - 700px)); bottom: -210px; }
.tc-home-discovery-discs::after { width: clamp(190px, 22vw, 300px); height: clamp(190px, 22vw, 300px); left: min(52%, 760px); top: -110px; opacity: 1; }
.tc-home-discovery-copy { position: relative; z-index: 1; max-width: 1240px; }
.tc-home-discovery-copy h2 { max-width: 680px; margin: 0 0 14px; font: 700 clamp(2rem, 4.2vw, 4rem)/1.06 var(--display); letter-spacing: -.05em; }
.tc-home-discovery-copy p:not(.tc-home-eyebrow) { max-width: 520px; margin: 0; color: rgba(255,255,255,.84); font-size: .92rem; line-height: 1.7; }
.tc-home-group-section { padding-top: 72px; background: #fff; }
.tc-home-group-lane:nth-of-type(even) { background: #f0eee8; }
.tc-home-more-wrap { display: flex; justify-content: center; padding-top: 26px; }
.tc-home-more { display: inline-flex; align-items: center; gap: 9px; min-width: 148px; justify-content: center; padding: 12px 18px; border: 1px solid var(--tc-border); border-radius: 99px; background: transparent; color: var(--tc-ink); font: 700 .76rem var(--body); cursor: pointer; transition: background .25s ease, color .25s ease, transform .25s var(--ease); }
.tc-home-more:hover { background: var(--tc-ink); color: #fff; transform: translateY(-2px); }
.tc-home-more.is-loading { opacity: .62; cursor: wait; }
.tc-home-package-stops { margin-bottom: 12px; color: rgba(255,255,255,.68); font-size: .65rem; line-height: 1.5; }
.tc-add-package { display: inline-flex; align-items: center; gap: 7px; border: 1px solid rgba(255,255,255,.48); border-radius: 99px; padding: 9px 12px; background: var(--tc-red); color: #fff; font: 700 .68rem var(--body); cursor: pointer; }
.tc-add-package svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.tc-home-story-section { padding: 92px 0 64px; }
.tc-home-story-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.tc-home-story-layout h2 { max-width: 440px; margin: 0 0 14px; font: 700 clamp(1.8rem, 3.5vw, 3rem)/1.08 var(--display); letter-spacing: -.05em; }
.tc-home-story-layout p:not(.tc-home-eyebrow) { max-width: 440px; color: var(--tc-muted); font-size: .88rem; line-height: 1.7; }
.tc-home-story-tiles { position: relative; min-height: 280px; }
.tc-home-story-tiles div { position: absolute; background-position: center; background-size: cover; border-radius: 14px; box-shadow: 0 14px 30px rgba(0,0,0,.12); }
.tc-home-story-tiles div:nth-child(1) { top: 0; left: 0; width: 42%; height: 210px; background-image: url('/trucape/wp-content/uploads/trucape-staging/cape-point-penguins.jpg'); }
.tc-home-story-tiles div:nth-child(2) { top: 26px; left: 27%; width: 44%; height: 245px; background-image: url('/trucape/wp-content/uploads/trucape-staging/chapmans-peak-sunset.jpg'); }
.tc-home-story-tiles div:nth-child(3) { top: 4px; right: 0; width: 25%; height: 200px; background-image: url('/trucape/wp-content/uploads/trucape-staging/kirstenbosch-boomslang.jpg'); }
.tc-home-service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 52px; }
.tc-home-service-grid > div { display: grid; gap: 6px; padding: 16px 8px; text-align: center; }
.tc-home-service-grid b { display: grid; width: 34px; height: 34px; place-items: center; margin: 0 auto 6px; border-radius: 50%; background: #f9dbe1; color: #8f102a; font-size: .72rem; }
.tc-home-service-grid strong { font: 700 .9rem var(--display); }
.tc-home-service-grid span { color: var(--tc-muted); font-size: .72rem; line-height: 1.5; }
.tc-home-editorial-section { background: #fff; }
.tc-home-content-stream { display: grid; gap: 28px; }
.tc-home-content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.tc-home-content-card { position: relative; min-height: 238px; overflow: hidden; border-radius: 15px; background: #222 var(--content-image) center/cover; color: #fff; }
.tc-home-content-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 25%, rgba(52,59,63,.94)); }
.tc-home-content-card.tc-content-recommendation::after { background: linear-gradient(transparent 25%, rgba(89,131,146,.96)); }
.tc-home-content-card.tc-content-picture_story::after { background: linear-gradient(transparent 25%, rgba(18,69,89,.96)); }
.tc-home-content-card.tc-content-video_story::after { background: linear-gradient(transparent 25%, rgba(18,69,89,.96)); }
.tc-home-content-card.tc-content-post::after { background: linear-gradient(transparent 25%, rgba(52,59,63,.96)); }
.tc-home-content-card-body { position: absolute; right: 17px; bottom: 16px; left: 17px; z-index: 1; }
.tc-home-content-card-body h3 { margin: 0 0 7px; font: 700 1rem/1.15 var(--display); }
.tc-home-content-card-body p:not(.tc-home-card-kicker) { margin: 0 0 9px; color: rgba(255,255,255,.76); font-size: .74rem; line-height: 1.45; }
.tc-home-content-card-body a { color: var(--tc-amber); font-size: .73rem; font-weight: 700; }
.tc-home-content-card-body .tc-home-card-kicker { color: var(--tc-ice); }
.tc-home-content-card.tc-content-recommendation .tc-home-card-kicker { color: var(--tc-amber); }
.tc-home-feature-banner { position: relative; display: grid; min-height: 360px; place-items: end center; padding: 45px 24px; overflow: hidden; background: linear-gradient(0deg, rgba(0,0,0,.7), rgba(0,0,0,.08)), url('/trucape/wp-content/uploads/trucape-staging/chapmans-peak-sunset.jpg') center/cover; color: #fff; text-align: center; }
.tc-home-feature-banner::before { content: ''; position: absolute; bottom: -170px; width: 440px; height: 440px; border-radius: 50%; background: var(--tc-red); }
.tc-home-feature-banner::after { content: ''; position: absolute; top: -110px; right: 12%; width: 240px; height: 240px; border-radius: 50%; background: var(--tc-red); opacity: 1; }
.tc-home-feature-banner-copy { position: relative; z-index: 1; max-width: 560px; }
.tc-home-feature-banner h2 { margin: 0 0 8px; font: 700 clamp(1.8rem, 3.5vw, 3rem)/1.08 var(--display); }
.tc-home-feature-banner p:not(.tc-home-eyebrow) { margin: 0; color: rgba(255,255,255,.82); font-size: .82rem; }
.tc-home-plan-strip { padding: 72px 0; background: var(--tc-paper); border-top: 1px solid var(--tc-border); border-bottom: 1px solid var(--tc-border); }
.tc-home-plan-strip-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.tc-home-plan-strip h2 { max-width: 540px; margin: 0 0 13px; font: 700 clamp(1.9rem, 3.6vw, 3.2rem)/1.06 var(--display); letter-spacing: -.05em; }
.tc-home-plan-strip p:not(.tc-home-eyebrow) { max-width: 550px; margin: 0 0 20px; color: var(--tc-muted); font-size: .87rem; line-height: 1.7; }
.tc-home-plan-strip-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.tc-home-plan-strip-steps > div { display: grid; gap: 7px; min-height: 150px; padding: 18px 15px; border: 1px solid var(--tc-border); border-radius: 15px; background: #fff; }
.tc-home-plan-strip-steps b { color: var(--tc-red); font: 800 1.15rem/1 var(--display); }
.tc-home-plan-strip-steps strong { font: 700 .84rem/1.2 var(--display); }
.tc-home-plan-strip-steps span { color: var(--tc-muted); font-size: .7rem; line-height: 1.5; }
.tc-home-discovery-copy .tc-search-btn { margin-top: 22px; background: var(--tc-red); color: #fff; }
.tc-home-faq-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; }
.tc-home-faq-layout h2 { margin: 0 0 14px; font: 700 clamp(1.8rem, 3vw, 2.8rem)/1.1 var(--display); }
.tc-home-faq-layout > div:first-child p:not(.tc-home-eyebrow) { color: var(--tc-muted); font-size: .85rem; line-height: 1.7; }
.tc-home-faq-list { display: grid; gap: 8px; }
.tc-home-faq-list details { border-bottom: 1px solid var(--tc-border); background: #fff; }
.tc-home-faq-list summary { padding: 17px 4px; cursor: pointer; list-style: none; font: 700 .86rem var(--display); }
.tc-home-faq-list summary::-webkit-details-marker { display: none; }
.tc-home-faq-list summary::after { float: right; color: var(--tc-red); content: '+'; font-size: 1.1rem; transition: transform .3s var(--ease); }
.tc-home-faq-list details[open] summary::after { transform: rotate(45deg); }
.tc-home-faq-list details p { max-width: 600px; margin: 0; padding: 0 28px 17px 4px; color: var(--tc-muted); font-size: .78rem; line-height: 1.6; }
@media (max-width: 900px) { .tc-home-hero { min-height: auto; } .tc-home-plan-strip-grid { grid-template-columns: 1fr; gap: 30px; } }
@media (max-width: 640px) {
  .tc-home-wrap { width: calc(100% - 28px); }
  .tc-home-hero { padding: 112px 0 34px; }
  .tc-home-hero::before { width: 330px; height: 330px; top: 7%; left: -80px; opacity: 1; }
  .tc-home-hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .tc-home-hero-grid::before { width: 170px; height: 170px; right: 1%; top: 30%; opacity: 1; }
  .tc-home-hero-side { display: block; }
  .tc-home-hero-side-intro { margin-bottom: 16px; }
  .tc-home-hero h1 { font-size: clamp(2.35rem, 13vw, 4rem); }
  .tc-home-search-top { align-items: center; flex-direction: row; }
  .tc-home-expand-btn { width: auto; flex: 0 0 44px; height: 44px; padding: 0; border-radius: 50%; }
  .tc-home-expand-btn span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .tc-hero-destination-fader { min-height: 390px; }
  .tc-hero-destination-card { padding: 21px; border-radius: 22px 22px 22px 44px; }
  .tc-home-discovery-discs { min-height: 520px; padding: 68px 0; }
  .tc-home-discovery-copy { width: calc(100% - 28px); }
  .tc-home-form-grid, .tc-home-feature-grid { grid-template-columns: 1fr; }
  .tc-home-section { padding: 70px 0; }
  .tc-home-section-head { display: block; }
  .tc-home-section-head > p { margin-top: 16px; }
  .tc-home-story-layout, .tc-home-faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .tc-home-story-tiles { min-height: 240px; }
  .tc-home-service-grid, .tc-home-content-grid { grid-template-columns: repeat(2, 1fr); }
  .tc-home-plan-strip-steps { grid-template-columns: 1fr; }
  .tc-home-content-card { min-height: 220px; }
}
@media (prefers-reduced-motion: reduce) { .tc-hero-destination-card, .tc-testimonials-compact .tc-testimonial-slide { transition: none; } .tc-search-btn, .tc-add-btn, .tc-details-btn { transition: none; } }

/* ============================================================
   V13 approved homepage direction
   Full-width open-day hero, content-rich group lanes, and compact
   Travel Plan pattern. The existing dynamic block markup remains
   data-driven; this layer changes presentation only.
   ============================================================ */
.tc-homepage-block {
  --tc-v13-paper: #f7f5ef;
  --tc-v13-ink: #171717;
  --tc-v13-line: rgba(23,23,23,.16);
  background: var(--tc-v13-paper);
  color: var(--tc-v13-ink);
  font-family: var(--tc-body, Manrope, Arial, sans-serif);
}
.tc-homepage-block h1,
.tc-homepage-block h2,
.tc-homepage-block h3,
.tc-homepage-block h4 { letter-spacing: 0; }
.tc-home-hero {
  min-height: calc(100svh - 70px);
  padding: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.92) 34%, rgba(255,255,255,.42) 59%, rgba(255,255,255,.06) 88%), var(--tc-v13-hero-image, var(--tc-hero-image)) center/cover;
  color: var(--tc-v13-ink);
  transition: background-image .8s ease;
}
.tc-home-hero::before { display: none; }
.tc-home-hero::after { background: transparent; }
.tc-home-hero-grid { min-height: calc(100svh - 70px); align-items: center; gap: 42px; }
.tc-home-hero-copy { max-width: 700px; color: var(--tc-v13-ink); padding: 80px 0 130px; }
.tc-home-hero .tc-home-eyebrow { color: var(--tc-red); }
.tc-home-hero h1 { max-width: 650px; margin-bottom: 18px; font-size: clamp(2.35rem, 4.7vw, 4.25rem); letter-spacing: 0; }
.tc-home-hero-copy > p:not(.tc-home-eyebrow) { color: var(--tc-v13-ink); max-width: 570px; font-size: 1rem; }
.tc-home-hero-side { min-height: 440px; }
.tc-hero-destination-fader { min-height: 430px; }
.tc-hero-destination-card { border-radius: 22px 22px 22px 54px; }
.tc-home-search { border: 2px solid var(--tc-v13-ink); box-shadow: 0 14px 30px rgba(0,0,0,.12); }
.tc-home-search-top { gap: 8px; }
.tc-home-expand-btn, .tc-search-btn, .tc-home-submit { background: var(--tc-red); border: 2px solid var(--tc-v13-ink); box-shadow: 3px 4px 0 var(--tc-v13-ink); }
.tc-home-expand-btn:hover, .tc-search-btn:hover, .tc-home-submit:hover { background: var(--tc-ink); transform: none; box-shadow: none; }
.tc-home-v13-hero-bar { display: flex; justify-content: center; gap: 35px; padding: 13px max(28px, calc((100% - 1240px) / 2)); background: var(--tc-navy); color: #fff; font-size: .72rem; text-align: center; }
.tc-home-v13-hero-bar b { margin-right: 5px; color: var(--tc-amber); }
.tc-home-group-lane { padding: 67px 0; }
.tc-home-group-lane:nth-of-type(odd) { background: var(--tc-v13-paper); }
.tc-home-group-lane:nth-of-type(even) { background: #e9e2d6; }
.tc-home-section-head h1, .tc-home-section-head h2 { letter-spacing: 0; font-size: clamp(1.75rem, 3.3vw, 2.95rem); }
.tc-home-card-actions { gap: 7px; }
.tc-add-btn, .tc-add-package, .tc-details-btn { border: 2px solid var(--tc-v13-ink); box-shadow: 3px 4px 0 var(--tc-v13-ink); transform: translate(-2px,-2px); transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.tc-add-btn:hover, .tc-add-package:hover, .tc-details-btn:hover { transform: none; box-shadow: none; }
.tc-details-btn { background: var(--tc-navy); color: #fff; }
.tc-details-btn:hover { background: var(--tc-ink); color: #fff; }
.tc-home-package-row { position: relative; padding-top: 25px; padding-bottom: 25px; background: linear-gradient(90deg, rgba(18,69,89,.94), rgba(18,69,89,.78)), url('/trucape/wp-content/uploads/trucape-staging/coastline.jpg') center/cover; }
.tc-home-more { border: 2px solid var(--tc-v13-ink); box-shadow: 3px 4px 0 var(--tc-v13-ink); background: var(--tc-paper); transform: translate(-2px,-2px); }
.tc-home-more:hover { background: var(--tc-ink); color: #fff; transform: none; box-shadow: none; }
.tc-home-plan-strip { display: none; }
.tc-home-v13-planning-pattern { padding: 67px 0; background: var(--tc-v13-paper); }
.tc-home-v13-planner { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: 28px; border-radius: 15px; background: var(--tc-ink); color: #fff; }
.tc-home-v13-planner h2 { margin: 0 0 13px; font: 600 clamp(1.8rem, 3.5vw, 3rem)/1.06 var(--tc-display, Sora, sans-serif); letter-spacing: 0; }
.tc-home-v13-planner p:not(.tc-home-eyebrow) { max-width: 560px; color: #dcebee; }
.tc-home-v13-chalk-note { color: var(--tc-amber) !important; font-family: 'Permanent Marker', cursive; }
.tc-home-v13-planner-form { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; align-content: center; }
.tc-home-v13-planner-form label { color: var(--tc-amber); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; }
.tc-home-v13-planner-form input, .tc-home-v13-planner-form select { display: block; width: 100%; margin-top: 4px; padding: 10px; border: 1px solid #777; border-radius: 7px; background: #292929; color: #fff; }
.tc-home-v13-planner-form .full { grid-column: 1 / -1; }
.tc-home-v13-planner-form .tc-search-btn { width: max-content; margin-top: 4px; }
.tc-home-faq-section { padding-top: 67px; }
@media (max-width: 640px) {
  .tc-home-hero { min-height: auto; }
  .tc-home-hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 22px; }
  .tc-home-hero-copy { padding: 65px 0 110px; }
  .tc-home-hero-side { display: none; }
  .tc-home-v13-hero-bar { display: block; padding-inline: 28px; line-height: 1.8; }
  .tc-home-v13-hero-bar span { display: inline; margin-right: 10px; }
  .tc-home-v13-planner { grid-template-columns: 1fr; }
  .tc-home-v13-planner-form { grid-template-columns: 1fr; }
  .tc-home-v13-planner-form .full { grid-column: auto; }
  .tc-home-v13-planner-form .tc-search-btn { width: 100%; }
  .tc-home-group-lane { padding: 54px 0; }
}
@media (prefers-reduced-motion: reduce) { .tc-home-hero { transition: none; } .tc-add-btn, .tc-add-package, .tc-details-btn, .tc-home-more { transition: none; } }

/* Phase 1 canonical content templates */
.tc-canonical-wrap { width: min(calc(100% - 48px), 1180px); margin-inline: auto; }
.tc-canonical-hero { position: relative; isolation: isolate; min-height: 520px; display: grid; align-items: end; padding: 130px 0 58px; overflow: hidden; background: linear-gradient(90deg, rgba(10,10,10,.86), rgba(10,10,10,.3)), var(--tc-canonical-image) center/cover, #282828; color: #fff; }
.tc-canonical-hero::before { content: ''; position: absolute; z-index: -1; width: 420px; height: 420px; left: -160px; bottom: -250px; border-radius: 50%; background: var(--tc-red); }
.tc-canonical-breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 42px; color: rgba(255,255,255,.72); font-size: .7rem; }
.tc-canonical-breadcrumbs a:hover { color: #fff; text-decoration: underline; }
.tc-canonical-hero .tc-home-eyebrow { color: #ffc4cf; }
.tc-canonical-hero h1 { max-width: 820px; margin: 0 0 15px; font: 800 clamp(2.5rem, 6vw, 6rem)/.98 var(--display); letter-spacing: -.07em; }
.tc-canonical-lede { max-width: 650px; margin: 0; color: rgba(255,255,255,.86); font-size: 1rem; line-height: 1.7; }
.tc-canonical-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.tc-canonical-tags span { padding: 7px 10px; border-radius: 99px; background: var(--tc-red); color: #fff; font-size: .68rem; font-weight: 800; }
.tc-canonical-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 70px; padding-top: 70px; padding-bottom: 80px; }
.tc-canonical-content { min-width: 0; }
.tc-canonical-copy { max-width: 760px; color: var(--tc-ink); font-size: .98rem; line-height: 1.8; }
.tc-canonical-copy h2, .tc-canonical-copy h3 { margin-top: 2.2em; font-family: var(--display); line-height: 1.1; letter-spacing: -.04em; }
.tc-canonical-copy a { color: var(--tc-red); font-weight: 700; }
.tc-canonical-price { display: flex; align-items: baseline; gap: 9px; margin: 0 0 25px; color: var(--tc-red); }
.tc-canonical-price strong { font-size: 1.2rem; }
.tc-canonical-price small { color: var(--tc-muted); font-size: .72rem; }
.tc-canonical-route { margin: 30px 0; padding: 22px; border: 1px solid var(--tc-border); background: var(--tc-paper); }
.tc-canonical-route-list { display: grid; gap: 7px; }
.tc-canonical-route-list a { display: flex; justify-content: space-between; gap: 15px; padding: 11px 0; border-bottom: 1px solid var(--tc-border); color: var(--tc-ink); font-size: .8rem; font-weight: 700; }
.tc-canonical-review { display: grid; gap: 4px; margin-top: 35px; padding: 18px; border-left: 4px solid var(--tc-red); background: #f3dbe1; font-size: .78rem; }
.tc-canonical-aside { align-self: start; position: sticky; top: 100px; display: grid; gap: 10px; padding: 20px; border: 1px solid var(--tc-border); background: #fff; box-shadow: 0 14px 35px rgba(23,23,23,.08); }
.tc-canonical-add { width: 100%; justify-content: center; }
.tc-canonical-whatsapp { display: inline-flex; justify-content: center; width: 100%; padding: 13px; border-radius: 99px; background: #128C7E; color: #111; font-size: .76rem; font-weight: 800; text-align: center; }
.tc-canonical-aside-note { margin: 5px 0 0; color: var(--tc-muted); font-size: .72rem; line-height: 1.55; }
.tc-canonical-related { padding: 75px 0; background: var(--tc-paper); }
.tc-canonical-related h2, .tc-canonical-archive-head h1 { margin: 0 0 25px; font: 800 clamp(1.9rem, 4vw, 3.7rem)/1.05 var(--display); letter-spacing: -.06em; }
.tc-canonical-related-grid, .tc-canonical-archive-grid { display: grid; }
/* Editorial traveller-group cards are deliberately separate from the shared
   destination/package renderer. */
.tc-canonical-card:not(.tc-catalog-card) { position: relative; min-height: 280px; display: flex; align-items: end; padding: 20px; overflow: hidden; border-radius: 18px; background: linear-gradient(180deg, transparent 15%, rgba(0,0,0,.92)), var(--tc-card-image) center/cover, #292929; color: #fff; }
.tc-canonical-card:not(.tc-catalog-card) h2 { margin: 6px 0 13px; font: 800 1.25rem/1.05 var(--display); letter-spacing: -.04em; }
.tc-canonical-card:not(.tc-catalog-card) h2 a { color: inherit; }
.tc-canonical-card:not(.tc-catalog-card) p:not(.tc-home-eyebrow) { margin: 0 0 13px; color: rgba(255,255,255,.78); font-size: .77rem; line-height: 1.5; }
.tc-canonical-card-actions { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.tc-canonical-card-actions .tc-add-btn, .tc-canonical-card-actions .tc-add-package { border-color: rgba(255,255,255,.55); }
.tc-profile-intro { padding-top: 55px; padding-bottom: 0; }
.tc-profile-intro h2 { max-width: 700px; margin: 5px 0 10px; font: 800 clamp(1.8rem, 4vw, 3.2rem)/1.05 var(--display); letter-spacing: -.06em; }
.tc-profile-intro p:not(.tc-home-eyebrow) { max-width: 610px; margin: 0; color: var(--tc-muted); line-height: 1.7; }
.tc-canonical-archive-head { padding: 145px 0 65px; background: var(--tc-paper); }
.tc-canonical-archive-head p:not(.tc-home-eyebrow) { max-width: 580px; margin: 0; color: var(--tc-muted); font-size: .95rem; }
.tc-canonical-archive-grid { padding-top: 55px; padding-bottom: 90px; }
.tc-canonical-profile .tc-canonical-archive-head { background: #f0eee8; }
.tc-canonical-product .tc-canonical-hero { background-image: linear-gradient(90deg, rgba(18,69,89,.9), rgba(18,69,89,.28)), var(--tc-canonical-image); }
.tc-canonical-trucape_package .tc-canonical-hero { background-image: linear-gradient(90deg, rgba(211,24,62,.82), rgba(18,69,89,.35)), var(--tc-canonical-image); }
.tc-canonical-recommendation .tc-canonical-hero { background-image: linear-gradient(90deg, rgba(89,131,146,.9), rgba(18,69,89,.3)), var(--tc-canonical-image); }
.tc-canonical-picture_story .tc-canonical-hero, .tc-canonical-video_story .tc-canonical-hero { background-image: linear-gradient(90deg, rgba(18,69,89,.88), rgba(18,69,89,.24)), var(--tc-canonical-image); }
@media (max-width: 760px) { .tc-canonical-wrap { width: calc(100% - 28px); } .tc-canonical-hero { min-height: 510px; padding-top: 110px; } .tc-canonical-breadcrumbs { margin-bottom: 30px; } .tc-canonical-layout { grid-template-columns: 1fr; gap: 35px; padding-top: 48px; padding-bottom: 60px; } .tc-canonical-aside { position: static; } .tc-canonical-card:not(.tc-catalog-card) { min-height: 300px; } }

/* Phase 2 page-level planner and package directory treatments. */
.tc-package-directory { background: var(--tc-paper); }
.tc-travel-plan-hero { min-height: 680px; }
.tc-travel-plan-page .tc-home-hero-copy > p:not(.tc-home-eyebrow) { max-width: 620px; }
.tc-home-feature-panel { align-self: center; padding: clamp(24px, 4vw, 48px); border: 1px solid rgba(255,255,255,.35); border-radius: 24px; background: rgba(17,17,17,.72); color: #fff; box-shadow: 0 20px 50px rgba(0,0,0,.2); backdrop-filter: blur(4px); }
.tc-home-feature-panel ol { display: grid; gap: 0; margin: 22px 0 0; padding: 0; list-style: none; counter-reset: plan-step; }
.tc-home-feature-panel li { display: grid; grid-template-columns: 34px 1fr; gap: 10px 14px; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.22); counter-increment: plan-step; }
.tc-home-feature-panel li::before { content: counter(plan-step, decimal-leading-zero); color: var(--tc-red); font: 800 1.05rem/1 var(--display); }
.tc-home-feature-panel li strong, .tc-home-feature-panel li span { grid-column: 2; }
.tc-home-feature-panel li strong { margin-top: -31px; font-size: .92rem; }
.tc-home-feature-panel li span { color: rgba(255,255,255,.7); font-size: .78rem; line-height: 1.5; }
@media (max-width: 760px) { .tc-travel-plan-hero { min-height: 0; } .tc-home-feature-panel { margin-top: 12px; } }

/* Shared Travel Plan state: compatible with homepage cards, canonical templates, and future AI recommendations. */
/* Action language: quiet motion gives each button type a recognisable job. */
.tc-search-btn, .tc-home-expand-btn, .tc-home-submit, .tc-add-btn, .tc-add-package, .tc-details-btn, .tc-home-more { position: relative; overflow: hidden; transform: translateZ(0); transition: transform .22s var(--ease), box-shadow .22s ease, background-color .22s ease, border-color .22s ease; }
.tc-search-btn:hover, .tc-home-expand-btn:hover, .tc-home-submit:hover { transform: translateY(-2px); box-shadow: 0 7px 16px rgba(18,69,89,.18); }
.tc-search-btn:active, .tc-home-expand-btn:active, .tc-home-submit:active, .tc-add-btn:active, .tc-add-package:active, .tc-details-btn:active, .tc-home-more:active { transform: translateY(0) scale(.98); }
.tc-search-btn svg, .tc-details-btn svg { transition: transform .22s var(--ease); }
.tc-search-btn:hover svg { transform: translateX(3px); }
.tc-details-btn:hover svg { transform: translate(3px, -3px); }
.tc-add-btn:hover, .tc-add-package:hover { transform: translateY(-2px); box-shadow: 0 8px 0 rgba(18,69,89,.22); }
.tc-add-btn.is-added, .tc-add-package.is-added { background: var(--tc-navy); border-color: var(--tc-ice); animation: tc-cart-confirm .42s var(--ease); }
.tc-add-btn.is-added svg, .tc-add-package.is-added svg { display: none; }
.tc-add-btn.is-added::before, .tc-add-package.is-added::before { content: '✓'; display: inline-grid; place-items: center; width: 17px; height: 17px; border-radius: 50%; background: var(--tc-ice); color: var(--tc-navy); font-size: .7rem; font-weight: 900; }
.tc-home-more:hover { border-color: var(--tc-slate); background: var(--tc-slate); color: #fff; box-shadow: 0 7px 16px rgba(89,131,146,.2); }
.tc-home-more:hover span { display: inline-block; animation: tc-more-nudge .6s var(--ease) infinite alternate; }
@keyframes tc-cart-confirm { 0% { transform: scale(1); } 45% { transform: scale(1.045); } 100% { transform: scale(1); } }
@keyframes tc-more-nudge { from { transform: translateY(0); } to { transform: translateY(3px); } }
@media (prefers-reduced-motion: reduce) { .tc-search-btn, .tc-home-expand-btn, .tc-home-submit, .tc-add-btn, .tc-add-package, .tc-details-btn, .tc-home-more, .tc-search-btn svg, .tc-details-btn svg { animation: none !important; transition: none !important; transform: none !important; } }

/* Destination product experience: the model supplies content; these rules only
   establish the stable hierarchy when optional fields are absent. */
.tc-home-eyebrow, .tc-home-card-kicker { display: inline-flex; width: fit-content; margin: 0 0 12px; padding: 7px 11px; border-radius: 999px; color: #fff; background: var(--tc-red, #d3183e); font: 700 .72rem/1 var(--body, Arial, sans-serif); letter-spacing: .02em; text-transform: none; }
.tc-badge-navy { background: var(--tc-navy, #124559); }
.tc-badge-amber { background: var(--tc-amber, #ffb563); color: var(--tc-ink, #17202a); }
.tc-destination-page { background: var(--tc-paper, #f5efe6); }
.tc-destination-hero { min-height: 520px; padding: 145px 0 76px; display: flex; align-items: end; color: #fff; background: linear-gradient(90deg, rgba(18,69,89,.96), rgba(18,69,89,.55)), var(--tc-destination-image), linear-gradient(135deg, #124559, #d3183e); background-position: center; background-size: cover; }
.tc-destination-hero h1 { max-width: 820px; margin: 7px 0 16px; font: 800 clamp(2.4rem, 7vw, 5.8rem)/.98 var(--display, Arial, sans-serif); letter-spacing: -.065em; }
.tc-destination-lede { max-width: 650px; margin: 0; color: rgba(255,255,255,.88); font-size: clamp(1rem, 2vw, 1.2rem); }
.tc-destination-breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; color: rgba(255,255,255,.72); font-size: .75rem; }
.tc-destination-breadcrumbs a { color: #fff; }
.tc-destination-layout { padding-top: 62px; padding-bottom: 96px; }
.tc-destination-content { max-width: 980px; margin: 0 auto; }
.tc-destination-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.tc-destination-price strong { color: var(--tc-crimson, #d3183e); font: 800 clamp(1.8rem, 4vw, 3.2rem)/1 var(--display, Arial, sans-serif); }
.tc-destination-price span, .tc-modal-price { color: var(--tc-muted, #66717a); font-size: .78rem; }
.tc-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(145px, 1fr)); gap: 1px; margin: 0 0 42px; border: 1px solid var(--tc-border, #ddd); background: var(--tc-border, #ddd); }
.tc-facts > div { display: flex; gap: 11px; min-height: 92px; padding: 17px; background: #fff; }
.tc-facts svg { flex: 0 0 24px; width: 24px; height: 24px; fill: none; stroke: var(--tc-crimson, #d3183e); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.tc-facts span { display: grid; align-content: start; gap: 4px; color: var(--tc-muted, #66717a); font-size: .78rem; }
.tc-facts b { color: var(--tc-ink, #17202a); font-size: .7rem; }
.tc-destination-copy { max-width: 750px; color: var(--tc-charcoal, #343a40); font-size: 1rem; line-height: 1.8; }
.tc-destination-copy h2, .tc-destination-copy h3 { margin-top: 1.8em; }
.tc-planning-note { max-width: 750px; margin: 32px 0; padding: 20px 23px; border-left: 4px solid var(--tc-amber, #ffb563); background: #fff; }
.tc-planning-note p { margin: 6px 0 0; color: var(--tc-muted, #66717a); }
.tc-destination-actions, .tc-modal-model-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 35px; }
.tc-destination-actions .tc-add-btn, .tc-modal-model-actions .tc-add-btn { border: 0; padding: 13px 19px; background: var(--tc-crimson, #d3183e); color: #fff; cursor: pointer; }
.tc-destination-actions .tc-details-btn, .tc-modal-model-actions .tc-details-btn { padding: 12px 18px; background: var(--tc-navy, #124559); color: #fff; text-decoration: none; }
.tc-route-section { margin: 22px 0 48px; }
.tc-route-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; }
.tc-route-cards article { padding: 0 0 17px; overflow: hidden; background: #fff; }
.tc-route-cards img { width: 100%; height: 145px; object-fit: cover; }
.tc-route-cards h3, .tc-route-cards p, .tc-route-cards a { margin-left: 17px; margin-right: 17px; }
.tc-route-cards h3 { margin-top: 15px; margin-bottom: 7px; }
.tc-route-cards p { color: var(--tc-muted, #66717a); font-size: .78rem; }
.tc-route-cards a { color: var(--tc-crimson, #d3183e); font-size: .78rem; font-weight: 700; }
.tc-facts-compact { margin: 20px 0; }
.tc-facts-compact > div { min-height: 65px; padding: 12px; }
.tc-modal-model p { color: var(--tc-muted, #66717a); line-height: 1.7; }
.tc-route-stops { display: grid; gap: 8px; padding-left: 22px; }
.tc-route-stops a { color: var(--tc-navy, #124559); font-weight: 700; }
.tc-admin-facts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 18px; }
.tc-admin-facts-grid label { font-size: var(--tc-type-xs, .75rem); }
@media (max-width: 700px) { .tc-destination-hero { min-height: 500px; padding-top: 115px; } .tc-destination-layout { padding-top: 40px; } .tc-admin-facts-grid { grid-template-columns: 1fr; } }

/* Stable commerce actions: keep hover from changing geometry or causing row reflow. */
.tc-home-card-actions, .tc-canonical-card-actions, .tc-destination-actions, .tc-modal-model-actions { display: flex; flex-wrap: nowrap; align-items: center; gap: 8px; min-width: 0; }
.tc-home-card-actions > *, .tc-canonical-card-actions > *, .tc-destination-actions > *, .tc-modal-model-actions > * { flex: 1 1 0; min-width: 0; justify-content: center; white-space: nowrap; }
.tc-home-card-actions .tc-add-btn, .tc-home-card-actions .tc-add-package, .tc-canonical-card-actions .tc-add-btn, .tc-canonical-card-actions .tc-add-package, .tc-destination-actions .tc-add-btn, .tc-modal-model-actions .tc-add-btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; }
.tc-add-btn:hover, .tc-add-btn:focus-visible, .tc-add-package:hover, .tc-add-package:focus-visible, .tc-details-btn:hover, .tc-details-btn:focus-visible { transform: none !important; }
.tc-drawer-items { min-width: 0; overflow-x: hidden; }
.tc-drawer-items article { min-width: 0; overflow: hidden; }
.tc-drawer-items article > div:last-child { min-width: 0; overflow: hidden; }
.tc-drawer-items strong, .tc-drawer-items small, .tc-drawer-items a { max-width: 100%; overflow-wrap: anywhere; }
.tc-drawer-remove { display: inline-block; width: max-content; max-width: 100%; transform: none !important; white-space: nowrap; }
.tc-mobile-cart-actions .tc-search-btn { background: var(--tc-ink, #17202a) !important; color: #fff !important; }
.tc-mobile-cart-actions .tc-search-btn:hover, .tc-mobile-cart-actions .tc-search-btn:focus-visible { background: var(--tc-crimson, #d3183e) !important; color: #fff !important; }
.tc-mobile-cart-actions .tc-search-btn::after { content: ' →'; }
.tc-mobile-cart-toggle b { color: #171717 !important; }

/* Server-first cart hydration and mutation feedback. */
#tcMobileCartBody:empty::before,
@keyframes tc-cart-beat {
  0%, 100% { transform: scale(.72); box-shadow: 0 0 0 0 rgba(211, 24, 62, .42); }
  50% { transform: scale(1); box-shadow: 0 0 0 8px rgba(211, 24, 62, 0); }
}
.tc-mobile-cart-actions .tc-search-btn { background: #171717 !important; color: #fff !important; }
.tc-mobile-cart-actions .tc-search-btn:hover,
.tc-mobile-cart-actions .tc-search-btn:focus-visible,
.tc-mobile-cart-actions .tc-search-btn:active { background: var(--tc-crimson, #d3183e) !important; color: #fff !important; }
.tc-add-btn.is-loading, .tc-add-package.is-loading, .tc-cart-clear.is-loading,
.tc-ajax-cart-remove.is-loading, .tc-drawer-remove.is-loading { cursor: wait; }
.tc-add-btn.is-loading::before, .tc-add-package.is-loading::before,
.tc-cart-clear.is-loading::before, .tc-cart-clear:disabled::before, .tc-ajax-cart-remove.is-loading::before,
.tc-drawer-remove.is-loading::before { content: ''; display: inline-block; width: 8px; height: 8px; margin-right: 6px; border-radius: 50%; background: var(--tc-crimson, #d3183e); animation: tc-cart-beat 1.15s ease-in-out infinite; }

/* Keep the mobile WooCommerce drawer visually aligned with the compact plan bar. */
#tcMobileCartBody .tc-drawer-items article > div:first-child { display: block; flex: 0 0 72px; }
#tcMobileCartBody .tc-drawer-items article > div:first-child img { display: block; width: 72px; height: 52px; object-fit: cover; border-radius: 8px; }
#tcMobileCartBody .tc-drawer-items article { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
#tcMobileCartBody .tc-drawer-items article > div:last-child { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 12px; }
#tcMobileCartBody .tc-drawer-items article strong { font-weight: 700; }
#tcMobileCartBody .tc-drawer-remove { width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; padding: 0; border-radius: 50%; font-size: 0; text-decoration: none; color: var(--tc-ink, #171717); background: transparent; }
#tcMobileCartBody .tc-drawer-remove::after { content: '×'; font-size: 1.35rem; line-height: 1; }
#tcMobileCartBody .tc-drawer-remove:hover, #tcMobileCartBody .tc-drawer-remove:focus-visible { color: #fff; background: var(--tc-crimson, #d3183e); }
#tcMobileCartDrawer.tc-cart-requesting #tcMobileCartBody::before { content: ''; position: absolute; top: 18px; right: 22px; width: 9px; height: 9px; border-radius: 50%; background: var(--tc-crimson, #d3183e); animation: tc-cart-beat 1.15s ease-in-out infinite; }
#tcMobileCartDrawer.tc-cart-requesting .tc-mobile-cart-panel { cursor: progress; }
.tc-home-eyebrow, .tc-home-card-kicker, .tc-eyebrow, .tc-eyebrow-line, .tc-badge { border-radius: 3px !important; }
@media (max-width: 600px) { .tc-home-card-actions, .tc-canonical-card-actions, .tc-destination-actions, .tc-modal-model-actions { gap: 6px; } .tc-home-card-actions > *, .tc-canonical-card-actions > *, .tc-destination-actions > *, .tc-modal-model-actions > * { font-size: .7rem; padding-inline: 9px; } }

/* Final action language and colour system. */
.tc-home-card-actions .tc-details-btn, .tc-home-card-actions .view-details-btn, .tc-canonical-card-actions .tc-details-btn, .tc-canonical-card-actions .view-details-btn, .tc-modal-model-actions .tc-details-btn { order: 1; }
.tc-home-card-actions .tc-add-btn, .tc-home-card-actions .tc-add-package, .tc-canonical-card-actions .tc-add-btn, .tc-canonical-card-actions .tc-add-package, .tc-destination-actions .tc-add-btn, .tc-modal-model-actions .tc-add-btn, .tc-modal-model-actions .tc-add-package { order: 2; }
.tc-add-btn, .tc-add-package { display: inline-flex !important; align-items: center; justify-content: center !important; gap: 7px; text-align: center !important; white-space: nowrap; }
.tc-add-btn svg, .tc-add-package svg { flex: 0 0 17px; width: 17px; height: 17px; }
.tc-add-btn:not(.is-added) { background: var(--tc-crimson, #d3183e) !important; color: #fff !important; border-color: var(--tc-crimson, #d3183e) !important; }
.tc-add-package:not(.is-added) { background: var(--tc-amber, #ffb563) !important; color: var(--tc-ink, #17202a) !important; border-color: var(--tc-ink, #17202a) !important; }
.tc-add-btn:not(.is-added):hover, .tc-add-btn:not(.is-added):focus-visible { background: var(--tc-crimson-dark, #a80f2e) !important; color: #fff !important; }
.tc-add-package:not(.is-added):hover, .tc-add-package:not(.is-added):focus-visible { background: #f0a34e !important; color: var(--tc-ink, #17202a) !important; }
.tc-home-package-row { background: none !important; background-image: none !important; }
.tc-drawer-package-heading { margin: 4px 0 -2px; padding: 9px 11px; border-radius: 6px; background: var(--tc-amber, #ffb563); color: var(--tc-ink, #17202a); font-size: .72rem; font-weight: 800; }

/* Homepage testimonials stay in the hero rhythm without becoming a second
   panel; the slider remains the existing reduced-motion-aware adapter. */
.tc-testimonials-block.tc-testimonials-compact .tc-testimonial-card { border: 0; border-radius: 0; background: transparent; padding-inline: 0; }
.tc-testimonials-block.tc-testimonials-compact .tc-testimonial-card footer { margin-top: 14px; }

/* Unified destination/package facts for the modal and canonical product pages. */
.tc-modal-model .tc-modal-price { margin: 0 0 18px; color: var(--tc-crimson, #d3183e) !important; font: 800 clamp(1.45rem, 4vw, 2.2rem)/1.05 var(--tc-display); }
.tc-modal-model .tc-facts, .tc-destination-content .tc-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 20px 0 24px; }
.tc-modal-model .tc-facts > div, .tc-destination-content .tc-facts > div { display: grid; grid-template-columns: 26px 1fr; align-items: start; gap: 9px; min-height: 64px; padding: 12px; border: 1px solid rgba(18,69,89,.12); border-radius: 12px; background: #fff; }
.tc-modal-model .tc-facts svg, .tc-destination-content .tc-facts svg { width: 22px; height: 22px; fill: none; stroke: var(--tc-crimson, #d3183e); stroke-width: 1.7; }
.tc-modal-model .tc-facts b, .tc-destination-content .tc-facts b { display: block; margin-bottom: 3px; color: var(--tc-ink, #17202a); font-size: .68rem; }
.tc-modal-model .tc-facts span, .tc-destination-content .tc-facts span { color: var(--tc-muted, #43545d); font-size: .78rem; line-height: 1.35; }
.tc-destination-price strong { color: var(--tc-crimson, #d3183e) !important; font-size: clamp(1.6rem, 4vw, 2.5rem); }
.view-details-btn.is-loading { cursor: wait; opacity: .7; }
@media (max-width: 600px) { .tc-modal-model .tc-facts, .tc-destination-content .tc-facts { grid-template-columns: 1fr; } }

/* ============================================================
   Open Route homepage implementation — Step 1
   This layer is intentionally scoped to the existing homepage block. It
   changes the visual system while leaving the homepage markup, copy, planner,
   modal hooks, testimonial source, and cart actions intact.
   ============================================================ */
#trucape-homepage { background: var(--paper, #fbfaf7); color: var(--black, #171717); }
#trucape-homepage .tc-home-wrap { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
#trucape-homepage .tc-home-eyebrow, #trucape-homepage .tc-home-card-kicker { color: var(--red, #d3183e); font-size: .66rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
#trucape-homepage .tc-home-hero { min-height: 720px; padding: 118px 0 68px; background: linear-gradient(90deg, rgba(10,27,35,.95), rgba(10,27,35,.68) 48%, rgba(10,27,35,.2)), var(--tc-hero-image) center/cover, var(--navy, #124559); }
#trucape-homepage .tc-home-hero::before { width: 390px; height: 390px; top: 12%; left: -120px; background: var(--red, #d3183e); opacity: .92; }
#trucape-homepage .tc-home-hero::after { background: linear-gradient(90deg, rgba(10,27,35,.2), rgba(10,27,35,.03)); }
#trucape-homepage .tc-home-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr); gap: clamp(38px, 7vw, 96px); align-items: end; }
#trucape-homepage .tc-home-hero-copy { max-width: 680px; }
#trucape-homepage .tc-home-hero .tc-home-eyebrow { color: var(--ice, #d6eeff); }
#trucape-homepage .tc-home-hero h1 { max-width: 15ch; margin-bottom: 20px; font-size: clamp(3rem, 6vw, 6.2rem); line-height: .98; letter-spacing: -.085em; }
#trucape-homepage .tc-home-hero-copy > p:not(.tc-home-eyebrow) { max-width: 590px; margin-bottom: 28px; color: #eef6f7; font-size: .98rem; line-height: 1.65; }
#trucape-homepage .tc-home-search { border: 1px solid rgba(255,255,255,.4); border-radius: 15px; box-shadow: 0 18px 44px rgba(0,0,0,.2); }
#trucape-homepage .tc-hero-destination-fader { min-height: 430px; }
#trucape-homepage .tc-hero-destination-card { border: 1px solid rgba(255,255,255,.38); border-radius: 15px 15px 42px 15px; background: linear-gradient(180deg, rgba(7,29,38,.06) 16%, rgba(7,29,38,.94) 100%), var(--card-image) center/cover; box-shadow: 0 18px 40px rgba(0,0,0,.18); }
#trucape-homepage .tc-hero-destination-card h2 { max-width: 15ch; font-size: clamp(1.6rem, 3vw, 2.7rem); letter-spacing: -.07em; }
#trucape-homepage .tc-hero-destination-card h2 a { color: #fff; text-decoration: none; }
#trucape-homepage .tc-hero-destination-card h2 a:hover, #trucape-homepage .tc-hero-destination-card h2 a:focus-visible { text-decoration: underline; text-underline-offset: 4px; }
#trucape-homepage .tc-hero-destination-card strong { color: var(--amber, #ffb563); font-size: .85rem; }
#trucape-homepage .tc-home-section { padding: clamp(76px, 8vw, 120px) 0; }
#trucape-homepage .tc-home-section-soft { background: var(--beige, #ede8df); }
#trucape-homepage .tc-home-section-head { gap: 40px; margin-bottom: 34px; }
#trucape-homepage .tc-home-section-head h2, #trucape-homepage .tc-home-feature-grid h2, #trucape-homepage .tc-home-faq-layout h2 { max-width: 17ch; font-size: clamp(2rem, 4vw, 4rem); line-height: 1.02; letter-spacing: -.075em; }
#trucape-homepage .tc-home-section-head > p { max-width: 330px; font-size: .82rem; line-height: 1.6; }
#trucape-homepage .tc-home-card-actions .tc-add-btn, #trucape-homepage .tc-home-card-actions .tc-add-package, #trucape-homepage .tc-home-card-actions .tc-details-btn { min-height: 38px; border: 2px solid var(--black, #171717); border-radius: 999px; box-shadow: 3px 3px 0 var(--black, #171717); transition: transform .14s var(--ease), box-shadow .14s ease, background-color .14s ease; }
#trucape-homepage .tc-home-card-actions .tc-add-btn:hover, #trucape-homepage .tc-home-card-actions .tc-add-package:hover, #trucape-homepage .tc-home-card-actions .tc-details-btn:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--black, #171717); }
#trucape-homepage .tc-home-card-actions .tc-add-btn:active, #trucape-homepage .tc-home-card-actions .tc-add-package:active, #trucape-homepage .tc-home-card-actions .tc-details-btn:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--black, #171717); }
#trucape-homepage .tc-home-package-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; padding: 30px; background: var(--beige, #ede8df) !important; }
#trucape-homepage .tc-home-plan-strip { background: var(--navy, #124559); }
#trucape-homepage .tc-home-plan-strip h2 { max-width: 14ch; font-size: clamp(2rem, 4.6vw, 4.6rem); line-height: 1.02; letter-spacing: -.08em; }
#trucape-homepage .tc-home-discovery-discs { background: var(--navy, #124559); }
#trucape-homepage .tc-home-discovery-copy h2 { max-width: 14ch; font-size: clamp(2rem, 4.6vw, 4.6rem); line-height: 1.02; letter-spacing: -.08em; }
@media (max-width: 900px) { #trucape-homepage .tc-home-hero-grid { grid-template-columns: 1fr; } #trucape-homepage .tc-home-hero-side { min-height: 430px; } }
@media (max-width: 620px) { #trucape-homepage .tc-home-wrap { width: calc(100% - 30px); } #trucape-homepage .tc-home-hero { min-height: 0; padding: 100px 0 40px; } #trucape-homepage .tc-home-hero h1 { font-size: clamp(2.8rem, 13vw, 4.3rem); } #trucape-homepage .tc-home-hero-side { min-height: 360px; } #trucape-homepage .tc-home-package-row { padding: 16px 0; } #trucape-homepage .tc-home-section-head { display: block; } #trucape-homepage .tc-home-section-head > p { margin-top: 14px; } }
@media (prefers-reduced-motion: reduce) { #trucape-homepage .tc-home-card-actions .tc-add-btn, #trucape-homepage .tc-home-card-actions .tc-add-package, #trucape-homepage .tc-home-card-actions .tc-details-btn { transition: none; } }

/* Reference match: Open Route hero and the navy signal bar directly beneath
   it. The current planner remains the hero's primary interaction. */
#trucape-homepage .tc-home-hero { min-height: 680px; padding: 0; display: flex; align-items: stretch; background: linear-gradient(90deg, rgba(10,27,35,.92), rgba(10,27,35,.62) 52%, rgba(10,27,35,.18)), var(--tc-v13-hero-image, var(--tc-hero-image)) center/cover, var(--navy, #124559); }
#trucape-homepage .tc-home-hero::before { top: -210px; right: 8%; left: auto; width: 420px; height: 420px; background: var(--navy, #124559); opacity: 1; }
#trucape-homepage .tc-home-hero-grid { display: block; width: min(1240px, calc(100% - 48px)); margin-inline: auto; padding: 190px 0 62px; }
#trucape-homepage .tc-home-hero-copy { max-width: 780px; }
#trucape-homepage .tc-home-hero-side { display: none; }
#trucape-homepage .tc-home-hero h1 { max-width: 18ch; color: #fff; font-size: clamp(3rem, 5.7vw, 5.8rem); line-height: .96; letter-spacing: -.09em; }
#trucape-homepage .tc-home-hero-copy > p:not(.tc-home-eyebrow) { max-width: 640px; color: #eef6f7; font-size: .94rem; line-height: 1.65; }
#trucape-homepage .tc-home-search { width: min(760px, 100%); margin-top: 12px; padding: 8px; border: 1px solid rgba(255,255,255,.3); border-radius: 15px; background: rgba(255,255,255,.96); box-shadow: 0 18px 44px rgba(0,0,0,.22); }
#trucape-homepage .tc-home-search-top { min-height: 52px; }
#trucape-homepage .tc-home-dest-field { padding: 10px 14px; }
#trucape-homepage .tc-home-expand-btn { min-height: 42px; padding-inline: 20px; border: 2px solid var(--black, #171717); border-radius: 999px; background: var(--red, #d3183e); color: #fff; box-shadow: 3px 3px 0 var(--black, #171717); }
#trucape-homepage .tc-home-expand-btn:hover { background: var(--red-dark, #a80f2e); }
#trucape-homepage .tc-home-v13-hero-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; min-height: 86px; padding: 0 max(24px, calc((100% - 1240px) / 2)); background: var(--navy, #124559); color: #fff; text-align: left; }
#trucape-homepage .tc-home-v13-hero-bar span { display: grid; grid-template-columns: 32px 1fr; align-content: center; align-items: center; column-gap: 12px; min-height: 86px; padding: 14px 24px; border-right: 1px solid rgba(255,255,255,.2); font-size: .72rem; line-height: 1.35; }
#trucape-homepage .tc-home-v13-hero-bar span:last-child { border-right: 0; }
#trucape-homepage .tc-home-v13-hero-bar b { display: grid; grid-row: 1 / span 2; width: 32px; height: 32px; place-items: center; border-radius: 50%; background: var(--red, #d3183e); color: #fff; font-size: .65rem; }
#trucape-homepage .tc-home-v13-hero-bar strong { display: block; color: #fff; font-size: .65rem; letter-spacing: .06em; text-transform: uppercase; }
#trucape-homepage .tc-home-v13-hero-bar em { display: block; color: rgba(255,255,255,.86); font-size: .68rem; font-style: normal; line-height: 1.35; }
@media (max-width: 620px) { #trucape-homepage .tc-home-hero { min-height: 0; } #trucape-homepage .tc-home-hero-grid { width: calc(100% - 30px); padding: 104px 0 42px; } #trucape-homepage .tc-home-hero h1 { font-size: clamp(2.8rem, 13vw, 4.3rem); } #trucape-homepage .tc-home-v13-hero-bar { display: block; padding: 0 15px; } #trucape-homepage .tc-home-v13-hero-bar span { min-height: 58px; padding: 10px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); } #trucape-homepage .tc-home-v13-hero-bar span:last-child { border-bottom: 0; } }

/* The reference hero is a compact first screen; the testimonial slider now
   follows the signal bar, so it does not stretch the hero vertically. */
#trucape-homepage .tc-home-hero { height: 620px; min-height: 620px; overflow: hidden; }
#trucape-homepage .tc-home-hero-grid { padding-top: 96px; padding-bottom: 42px; }
#trucape-homepage:has(.tc-home-form-panel.is-open) .tc-home-hero { height: auto; min-height: 620px; overflow: visible; }
#trucape-homepage .tc-testimonials-block.tc-testimonials-compact { margin: 0; padding: 28px max(24px, calc((100% - 1240px) / 2)); border-top: 0; background: var(--paper, #fbfaf7); color: var(--black, #171717); }
#trucape-homepage .tc-testimonials-block.tc-testimonials-compact .tc-testimonial-track { max-width: 620px; min-height: 116px; }
#trucape-homepage .tc-testimonials-block.tc-testimonials-compact .tc-testimonial-card p { color: var(--muted, #575a57); }
#trucape-homepage .tc-testimonials-block.tc-testimonials-compact .tc-testimonial-stars { color: var(--red, #d3183e); }
#trucape-homepage .tc-testimonials-block.tc-testimonials-compact .tc-testimonial-card footer { color: var(--black, #171717); }
@media (max-width: 620px) { #trucape-homepage .tc-home-hero { height: auto; min-height: 0; } #trucape-homepage .tc-home-hero-grid { padding-top: 104px; } #trucape-homepage .tc-testimonials-block.tc-testimonials-compact { padding-inline: 15px; } }

/* Final responsive shell corrections. Keep the mobile hero substantial even
   when its content is short, and keep the reference eyebrow treatment. */
#trucape-homepage .tc-home-eyebrow,
#trucape-homepage .tc-eyebrow {
  font-weight: 400;
}
#trucape-homepage .tc-home-hero .tc-home-eyebrow {
  padding: .42rem .62rem;
  background: var(--red, #d3183e);
  color: #fff;
}
@media (max-width: 620px) {
  #trucape-homepage .tc-home-hero {
    min-height: 35vh;
  }
}

/* Homepage reference refinements: the testimonial sits under the planner,
   editorial cards break up product sections, and route CTA follows the
   prototype's navy two-column treatment. */
#trucape-homepage .tc-home-hero { height: auto; min-height: 620px; overflow: visible; }
#trucape-homepage .tc-testimonials-block.tc-testimonials-compact { width: min(760px, 100%); margin-top: 18px; padding: 14px 0 0; border-top: 1px solid rgba(255,255,255,.28); background: transparent; color: #fff; }
#trucape-homepage .tc-testimonials-block.tc-testimonials-compact .tc-testimonial-track { min-height: 92px; }
#trucape-homepage .tc-testimonials-block.tc-testimonials-compact .tc-testimonial-card p { color: #eef6f7; }
#trucape-homepage .tc-testimonials-block.tc-testimonials-compact .tc-testimonial-card footer { color: #fff; }
#trucape-homepage .tc-home-eyebrow { display: inline-block; padding: .42rem .62rem; background: var(--amber, #ffb563); color: var(--black, #171717); }
#trucape-homepage .tc-home-hero .tc-home-eyebrow { background: transparent; color: var(--ice, #d6eeff); padding-inline: 0; }
#trucape-homepage .tc-home-route-cta { padding: clamp(60px, 7vw, 104px) 0; background: var(--beige, #ede8df); }
#trucape-homepage .tc-home-route-cta-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); gap: clamp(30px, 6vw, 86px); align-items: center; padding: clamp(30px, 5vw, 72px); border-radius: 20px 20px 60px 20px; background: var(--navy, #124559); color: #fff; overflow: hidden; }
#trucape-homepage .tc-home-route-cta-copy { position: relative; z-index: 1; }
#trucape-homepage .tc-home-route-cta-copy h2 { max-width: 13ch; margin: 0 0 16px; font-size: clamp(2.2rem, 4.6vw, 4.6rem); line-height: 1.02; letter-spacing: -.08em; }
#trucape-homepage .tc-home-route-cta-copy > p:not(.tc-home-eyebrow) { max-width: 560px; color: #e8f0f1; }
#trucape-homepage .tc-home-route-cta .tc-home-eyebrow { background: var(--amber, #ffb563); color: var(--black, #171717); }
#trucape-homepage .tc-home-route-cta-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; max-width: 460px; margin: 20px 0; }
#trucape-homepage .tc-home-route-cta-photos img { width: 100%; height: 78px; object-fit: cover; border-radius: 10px; }
#trucape-homepage .tc-home-route-cta-card { position: relative; z-index: 1; }
#trucape-homepage .tc-home-content-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (min-width: 621px) { #trucape-homepage .tc-home-expand-btn { width: 48px; height: 48px; min-height: 48px; flex: 0 0 48px; padding: 0; } #trucape-homepage .tc-home-expand-btn span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; } #trucape-homepage .tc-home-expand-btn svg { transform: rotate(90deg); } }
@media (min-width: 621px) and (max-width: 1023px) { #trucape-homepage .tc-home-content-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 620px) { #trucape-homepage .tc-home-content-grid { display: flex; grid-template-columns: none; gap: 12px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-width: thin; padding-bottom: 8px; } #trucape-homepage .tc-home-content-grid .tc-home-content-card { flex: 0 0 82%; scroll-snap-align: start; } #trucape-homepage .tc-home-route-cta-grid { grid-template-columns: 1fr; padding: 24px 18px 18px; border-radius: 16px 16px 42px 16px; } #trucape-homepage .tc-home-route-cta-photos img { height: 64px; } }

/* Phase 3 route surfaces: keep the shared card widget readable in archives
   while giving package detail pages their warmer route treatment. */
.tc-canonical-archive { background: var(--tc-paper, #f5efe6); }
.tc-canonical-archive-head { position: relative; overflow: hidden; }
.tc-canonical-archive-head::after { content: ''; position: absolute; right: -90px; bottom: -170px; width: 360px; height: 360px; border-radius: 50%; background: var(--tc-red, #d3183e); opacity: .92; }
.tc-canonical-archive-head .tc-canonical-wrap { position: relative; z-index: 1; }
.tc-destination-package .tc-destination-hero { background-image: linear-gradient(90deg, rgba(123,47,47,.94), rgba(18,69,89,.42)), var(--tc-destination-image), linear-gradient(135deg, #7b2f2f, #ffb563); }
.tc-destination-package .tc-destination-price strong { color: #9a2936; }
.tc-destination-package .tc-route-section { padding: 25px; border: 1px solid rgba(123,47,47,.14); background: rgba(255,255,255,.46); }
.tc-canonical-price strong { color: var(--tc-red, #d3183e); font-size: clamp(1.7rem, 4vw, 2.8rem); }
@media (max-width: 760px) { .tc-canonical-archive-head { padding-top: 120px; } .tc-destination-package .tc-route-section { padding: 16px; } }

/* Final responsive shell corrections. */
#trucape-homepage .tc-home-eyebrow,
#trucape-homepage .tc-eyebrow { font-weight: 400; }
#trucape-homepage .tc-home-hero .tc-home-eyebrow {
  padding: .42rem .62rem;
  background: var(--red, #d3183e);
  color: #fff;
}
#trucape-homepage .tc-home-hero-accent {
  display: block;
  color: var(--red, #d3183e);
}
#trucape-homepage .tc-home-hero-grid::before {
  content: '';
  position: absolute;
  z-index: 1;
  width: clamp(700px, 18vw, 700px);
  height: clamp(700px, 18vw, 700px);
  right: 26%;
  top: -26%;
}
#trucape-homepage .tc-home-search .tc-input-icon,
#trucape-homepage .tc-home-search .tc-field-shell > svg,
#trucape-homepage .tc-home-search .tc-search-btn > svg {
  display: inline-flex;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  min-width: 19px;
  min-height: 19px;
  align-items: center;
  justify-content: center;
}
#trucape-homepage .tc-home-search .tc-input-icon > svg,
#trucape-homepage .tc-home-search .tc-field-shell > svg,
#trucape-homepage .tc-home-search .tc-search-btn > svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
@media (max-width: 620px) {
  #trucape-homepage .tc-home-hero { min-height: 35vh; }
  #trucape-homepage .tc-home-hero-accent { font-size: .78em; white-space: nowrap; }
}


/* iOS WebKit Compatibility Layer for TruCape Core Blocks */
.tc-card-action, .tc-modal-close, .tc-faq-question, .tc-plan-drawer-toggle, .tc-show-more-btn {
  cursor: pointer !important;
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: transparent !important;
}

.tc-card-overlay, .tc-modal-overlay, .tc-sidecart-backdrop {
  -webkit-backdrop-filter: blur(8px);
}

.tc-modal-body, .tc-sidecart-body {
  -webkit-overflow-scrolling: touch !important;
}
