/* ─── T&T Travel Boutique — Croatia Itineraries Page ─── */
/* Loaded only on Template: Croatia Itineraries           */

/* ── CSS vars (short aliases, same values as --tt-* in tt-boutique.css) ── */
:root {
  --dark: #0D1B2A;
  --light: #F0ECE3;
  --heading-dark: #0D1B2A;
  --gold: #B8843F;
  --gold-light: #d4a96a;
  --transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Cursor fix (same shortcodes inject cursor:none globally) ── */
body.tt-itin-page,
body.tt-itin-page * { cursor: auto !important; }
body.tt-itin-page a,
body.tt-itin-page button,
body.tt-itin-page [role="button"],
body.tt-itin-page .day-chip,
body.tt-itin-page .hero-pillar,
body.tt-itin-page .itin-split,
body.tt-itin-page .itin-img { cursor: pointer !important; }
body.tt-itin-page .day-chip { cursor: default !important; }

/* ── Suppress Avada elements if leaked ── */
body.tt-itin-page .fusion-tb-header,
body.tt-itin-page .fusion-header-wrapper,
body.tt-itin-page #fusion-header,
body.tt-itin-page .fusion-footer,
body.tt-itin-page .fusion-footer-widget-area,
body.tt-itin-page .fusion-tb-footer { display: none !important; }

/* ── Base ── */
body.tt-itin-page {
  font-family: 'Jost', sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
}
body.tt-itin-page *, body.tt-itin-page *::before, body.tt-itin-page *::after { box-sizing: border-box; }

/* ── Active nav link ── */
.tt-nav .nav-links a.active { opacity: 1; color: #B8843F; }
.tt-nav .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

/* ── Admin bar offset ── */
body.tt-itin-page.admin-bar nav.tt-nav { top: 32px; }
@media screen and (max-width: 782px) {
  body.tt-itin-page.admin-bar nav.tt-nav { top: 46px; }
}

/* ── Avada blockquote reset for intro-big-quote ── */
body.tt-itin-page blockquote.intro-big-quote {
  background: transparent !important;
  border: none !important;
  border-left: 2px solid var(--gold) !important;
  padding: 0 0 0 32px !important;
  margin: 0 0 28px !important;
  box-shadow: none !important;
  color: var(--heading-dark) !important;
  font-style: italic !important;
}
body.tt-itin-page blockquote.intro-big-quote::before,
body.tt-itin-page blockquote.intro-big-quote::after { display: none !important; }

/* ════════════════════════════════════════════════════
   SHARED SECTION ELEMENTS
   ════════════════════════════════════════════════════ */
.section-eyebrow {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::after { content: ''; flex: 1; height: 1px; background: rgba(184,132,63,0.3); max-width: 56px; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 54px); font-weight: 300; line-height: 1.18;
  color: var(--light); margin: 0;
}
.section-title em { font-style: italic; color: var(--gold-light); }
.gold-rule { width: 40px; height: 1px; background: var(--gold); margin: 28px 0; }

/* ── Buttons ── */
.btn-primary {
  display: inline-block; background: var(--gold); color: var(--dark);
  padding: 15px 38px; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 500; text-decoration: none; position: relative; overflow: hidden;
  transition: all 0.3s ease; border: none;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.15);
  transform: translateX(-100%); transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(184,132,63,0.3); color: var(--dark); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase; font-weight: 500;
  color: var(--gold); text-decoration: none;
  padding-bottom: 5px; border-bottom: 1px solid rgba(184,132,63,0.35);
  transition: gap 0.3s ease, border-color 0.3s ease;
}
.btn-ghost:hover { gap: 16px; border-color: var(--gold); }
.btn-outline-light {
  display: inline-block;
  border: 1px solid rgba(240,236,227,0.25); color: var(--light);
  padding: 15px 38px; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 400; text-decoration: none; transition: all 0.3s ease;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════ */
.tt-itin-hero {
  min-height: 92vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 140px 40px 100px; text-align: center;
}
.tt-itin-hero .hero-bg {
  position: absolute; inset: -4%; z-index: 0;
  width: 108%; height: 108%;
  background-size: cover; background-position: center 30%;
  animation: heroZoom 18s ease-out forwards; will-change: transform;
}
@keyframes heroZoom { 0% { transform: scale(1.12); } 100% { transform: scale(1.0); } }
.tt-itin-hero .hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(13,27,42,0.4) 0%, rgba(13,27,42,0.15) 40%, rgba(13,27,42,0.35) 75%, rgba(13,27,42,0.6) 100%),
    linear-gradient(135deg, rgba(13,27,42,0.15) 0%, transparent 60%);
}
.tt-itin-hero .hero-overlay::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 50%, transparent 40%, rgba(13,27,42,0.25) 100%);
}
.tt-itin-hero > *:not(.hero-bg):not(.hero-overlay) { position: relative; z-index: 2; }
.tt-itin-hero .hero-eyebrow {
  font-size: 10px; letter-spacing: 4.5px; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 16px; margin-bottom: 36px;
  opacity: 0; animation: fadeUp 1s 0.3s forwards;
}
.tt-itin-hero .hero-eyebrow::before,
.tt-itin-hero .hero-eyebrow::after { content: ''; width: 36px; height: 1px; background: var(--gold); opacity: 0.5; }
.tt-itin-hero .hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 84px); font-weight: 300; line-height: 1.1;
  color: var(--light); max-width: 900px;
  text-shadow: 0 2px 48px rgba(13,27,42,0.6);
  opacity: 0; animation: fadeUp 1s 0.5s forwards;
}
.tt-itin-hero .hero-title em { font-style: italic; color: var(--gold-light); }
.tt-itin-hero .hero-subtitle {
  margin-top: 24px; font-size: 15px; font-weight: 200; letter-spacing: 0.3px;
  line-height: 1.75; color: rgba(240,236,227,0.72); max-width: 560px;
  opacity: 0; animation: fadeUp 1s 0.7s forwards;
}
.tt-itin-hero .hero-scroll {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2; opacity: 0; animation: fadeIn 1s 1.4s forwards;
}
.tt-itin-hero .hero-scroll span { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; opacity: 0.4; }
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* Hero pillars */
.hero-pillars {
  display: flex; gap: 0; margin-top: 64px; flex-wrap: wrap; justify-content: center;
  border: 1px solid rgba(184,132,63,0.2);
  opacity: 0; animation: fadeUp 1s 0.9s forwards;
}
.hero-pillar {
  padding: 24px 36px; text-align: center; min-width: 160px;
  border-right: 1px solid rgba(184,132,63,0.2);
  transition: background 0.4s ease;
}
.hero-pillar:last-child { border-right: none; }
.hero-pillar:hover { background: rgba(184,132,63,0.07); }
.hero-pillar-icon { width: 26px; height: 26px; margin: 0 auto 10px; opacity: 0.6; transition: opacity 0.3s; }
.hero-pillar:hover .hero-pillar-icon { opacity: 1; }
.hero-pillar-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.hero-pillar-label { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 500; display: block; margin-bottom: 4px; }
.hero-pillar-text { font-size: 12px; color: rgba(240,236,227,0.5); font-weight: 300; line-height: 1.5; }

/* ════════════════════════════════════════════════════
   INTRO — LIGHT
   ════════════════════════════════════════════════════ */
.tt-itin-intro {
  background: var(--light);
  padding: 96px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; overflow: hidden;
}
.tt-itin-intro::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(135deg, rgba(184,132,63,0.04) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 95% 50%, rgba(184,132,63,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.tt-itin-intro::after {
  content: 'Croatia'; font-family: 'Cormorant Garamond', serif;
  font-size: 160px; font-weight: 300; line-height: 1;
  color: rgba(184,132,63,0.04);
  position: absolute; bottom: -16px; right: -8px; z-index: 0;
  pointer-events: none; user-select: none; white-space: nowrap;
}
.tt-itin-intro > * { position: relative; z-index: 1; }
.tt-itin-intro .section-eyebrow { color: var(--gold); }
.tt-itin-intro .section-title { color: var(--heading-dark); }
.tt-itin-intro .section-title em { color: var(--gold); }
.tt-itin-intro .gold-rule { margin: 24px 0; }
.intro-big-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(19px, 2.2vw, 26px); font-weight: 300; line-height: 1.72; font-style: italic;
  color: var(--heading-dark); border-left: 2px solid var(--gold); padding-left: 28px;
  margin-bottom: 24px;
}
.intro-big-quote em { color: var(--gold); font-style: italic; }
.intro-body-text { font-size: 14px; line-height: 1.9; font-weight: 300; color: rgba(30,44,56,0.65); margin-bottom: 12px; }

/* ════════════════════════════════════════════════════
   OVERVIEW — DARK
   ════════════════════════════════════════════════════ */
.tt-itin-overview {
  background: var(--dark);
  padding: 88px 80px; text-align: center;
  position: relative; overflow: hidden;
}
.tt-itin-overview::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(184,132,63,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 30% 40% at 10% 80%, rgba(184,132,63,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.tt-itin-overview::after {
  content: '\201C'; font-family: 'Cormorant Garamond', serif;
  font-size: 360px; font-weight: 300; line-height: 0.7;
  color: rgba(184,132,63,0.04);
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 0; pointer-events: none; user-select: none;
}
.tt-itin-overview .overview-inner { max-width: 740px; margin: 0 auto; position: relative; z-index: 1; }
.tt-itin-overview .section-eyebrow { justify-content: center; }
.tt-itin-overview .section-eyebrow::before { content: ''; flex: 1; height: 1px; background: rgba(184,132,63,0.3); max-width: 56px; }
.tt-itin-overview .section-eyebrow::after { max-width: 56px; }
.tt-itin-overview .section-title { color: var(--light); margin-bottom: 24px; }
.tt-itin-overview .section-title em { color: var(--gold-light); }
.overview-text { font-size: 15px; line-height: 1.9; font-weight: 300; color: rgba(240,236,227,0.6); }

/* ════════════════════════════════════════════════════
   SPLIT ITINERARY LAYOUT
   ════════════════════════════════════════════════════ */
.itin-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 660px; position: relative; }
.itin-split.reverse { direction: rtl; }
.itin-split.reverse > * { direction: ltr; }

/* image side */
.itin-img { position: relative; overflow: hidden; }
.itin-img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.75) saturate(0.9);
  transition: transform 1s var(--transition), filter 1s ease;
}
.itin-split:hover .itin-img img { transform: scale(1.04); filter: brightness(0.65) saturate(1); }
.itin-img::before, .itin-img::after {
  content: ''; position: absolute; z-index: 2; width: 44px; height: 44px;
  transition: all 0.5s ease; pointer-events: none;
}
.itin-img::before { top: 24px; left: 24px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.itin-img::after  { bottom: 24px; right: 24px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.itin-split:hover .itin-img::before, .itin-split:hover .itin-img::after { width: 60px; height: 60px; }
.itin-img-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(13,27,42,0.3) 0%, transparent 50%),
              linear-gradient(to top, rgba(13,27,42,0.6) 0%, transparent 45%);
}
.itin-split.reverse .itin-img-overlay {
  background: linear-gradient(to left, rgba(13,27,42,0.3) 0%, transparent 50%),
              linear-gradient(to top, rgba(13,27,42,0.6) 0%, transparent 45%);
}
.itin-badge { position: absolute; bottom: 32px; left: 32px; z-index: 3; }
.itin-badge-num { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; line-height: 1; color: var(--gold); opacity: 0.9; }
.itin-badge-label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(240,236,227,0.6); margin-top: 3px; }

/* content side */
.itin-content { padding: 72px 64px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.itin-content.on-light { background: var(--light); }
.itin-content.on-light::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, rgba(184,132,63,0.04) 0%, transparent 50%), radial-gradient(ellipse 80% 60% at 100% 0%, rgba(184,132,63,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.itin-content.on-light > * { position: relative; z-index: 1; }
.itin-content.on-dark { background: var(--dark); }
.itin-content.on-dark::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(200deg, rgba(184,132,63,0.05) 0%, transparent 45%), radial-gradient(ellipse 70% 70% at 0% 100%, rgba(184,132,63,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.itin-content.on-dark > * { position: relative; z-index: 1; }

/* shared itin elements */
.itin-tag { display: inline-flex; align-items: center; gap: 10px; font-size: 9px; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 18px; }
.itin-tag::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.itin-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 2.8vw, 40px); font-weight: 300; line-height: 1.2; color: var(--light); margin: 0; }
.itin-title.dark-text { color: var(--heading-dark); }
.itin-title em { font-style: italic; color: var(--gold-light); }
.itin-title.dark-text em { color: var(--gold); }
.itin-rule { width: 32px; height: 1px; background: var(--gold); margin: 24px 0; }
.itin-desc { font-size: 14px; line-height: 1.9; font-weight: 300; color: rgba(240,236,227,0.62); margin-bottom: 6px; }
.itin-desc.dark-text { color: rgba(30,44,56,0.68); }

/* ════════════════════════════════════════════════════
   DAY TIMELINE CHIPS
   ════════════════════════════════════════════════════ */
.day-timeline { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 6px; }
.day-chip { display: inline-flex; align-items: center; gap: 7px; padding: 6px 13px; border: 1px solid rgba(184,132,63,0.2); background: rgba(184,132,63,0.04); transition: all 0.3s ease; }
.day-chip:hover { border-color: rgba(184,132,63,0.5); background: rgba(184,132,63,0.1); }
.day-chip-num { font-size: 8px; letter-spacing: 2px; color: var(--gold); font-weight: 600; text-transform: uppercase; }
.day-chip-dest { font-size: 12px; color: rgba(240,236,227,0.7); font-weight: 300; }
.day-timeline.dark .day-chip { border-color: rgba(30,44,56,0.12); background: rgba(30,44,56,0.04); }
.day-timeline.dark .day-chip:hover { border-color: rgba(184,132,63,0.5); background: rgba(184,132,63,0.08); }
.day-timeline.dark .day-chip-dest { color: rgba(30,44,56,0.65); }

/* ════════════════════════════════════════════════════
   DUAL IMAGE BREAK
   ════════════════════════════════════════════════════ */
.itin-dual-img { display: grid; grid-template-columns: 1fr 1fr; height: 460px; }
.itin-dual-img .itin-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.72) saturate(0.88); transition: transform 1s var(--transition); }
.itin-dual-img .itin-img:hover img { transform: scale(1.06); }
.itin-dual-img .itin-img::before, .itin-dual-img .itin-img::after { display: none; }
.img-caption { position: absolute; bottom: 22px; left: 22px; z-index: 3; font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 300; font-style: italic; color: rgba(240,236,227,0.85); }

/* ════════════════════════════════════════════════════
   FULL-WIDTH ITINERARY BLOCKS
   ════════════════════════════════════════════════════ */
.itin-full { padding: 88px 80px; position: relative; overflow: hidden; }

/* Light variant */
.itin-full.on-light { background: var(--light); }
.itin-full.on-light::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(184,132,63,0.3) 30%, rgba(184,132,63,0.5) 50%, rgba(184,132,63,0.3) 70%, transparent); }
.itin-full.on-light .itin-counter { color: rgba(184,132,63,0.05) !important; }
.itin-full.on-light .itin-title { color: var(--heading-dark); }
.itin-full.on-light .itin-title em { color: var(--gold); }
.itin-full.on-light .itin-desc { color: rgba(30,44,56,0.65); }
.itin-full.on-light .section-eyebrow { color: var(--gold); }
.itin-full.on-light .day-chip { border-color: rgba(30,44,56,0.12); background: rgba(30,44,56,0.03); }
.itin-full.on-light .day-chip:hover { border-color: rgba(184,132,63,0.5); background: rgba(184,132,63,0.07); }
.itin-full.on-light .day-chip-dest { color: rgba(30,44,56,0.65); }
.itin-full.on-light .btn-ghost { color: var(--gold); border-color: rgba(184,132,63,0.4); }

/* Dark variant */
.itin-full.on-dark { background: var(--heading-dark); }
.itin-full.on-dark::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(184,132,63,0.4) 30%, rgba(184,132,63,0.6) 50%, rgba(184,132,63,0.4) 70%, transparent); }
.itin-full.on-dark::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(184,132,63,0.04) 0%, transparent 70%); pointer-events: none; }

/* Watermark counter */
.itin-counter { font-family: 'Cormorant Garamond', serif; font-size: 110px; font-weight: 300; line-height: 1; color: rgba(184,132,63,0.06); position: absolute; top: 36px; right: 56px; z-index: 0; pointer-events: none; letter-spacing: -4px; user-select: none; }

/* Grid layout */
.itin-full-body { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; position: relative; z-index: 1; }
.itin-full-text { padding-top: 0; }
.itin-full-timeline { padding-top: 6px; }

/* ════════════════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════════════════ */
.tt-itin-cta { position: relative; overflow: hidden; padding: 128px 80px; text-align: center; }
.tt-itin-cta .cta-banner-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center 40%; filter: brightness(0.3) saturate(0.7); }
.tt-itin-cta::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(13,27,42,0.7) 0%, rgba(13,27,42,0.38) 50%, rgba(13,27,42,0.85) 100%), radial-gradient(ellipse 80% 60% at 50% 50%, rgba(184,132,63,0.07) 0%, transparent 70%); }
.tt-itin-cta > * { position: relative; z-index: 2; }
.tt-itin-cta .section-title { color: var(--light); }
.tt-itin-cta .section-title em { color: var(--gold-light); }
.cta-rule { display: flex; align-items: center; gap: 14px; justify-content: center; margin: 28px auto 36px; max-width: 260px; }
.cta-rule::before, .cta-rule::after { content: ''; flex: 1; height: 1px; background: rgba(184,132,63,0.4); }
.cta-diamond { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }
.plan-cta-sub { font-size: 15px; font-weight: 300; color: rgba(240,236,227,0.58); max-width: 460px; margin: 0 auto 44px; line-height: 1.75; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-contact { margin-top: 32px; font-size: 12px; color: rgba(240,236,227,0.3); letter-spacing: 0.5px; }
.cta-contact a { color: rgba(184,132,63,0.6); text-decoration: none; transition: color 0.3s; }
.cta-contact a:hover { color: var(--gold); }

/* ════════════════════════════════════════════════════
   STAGGER ANIMATION (hero pillars)
   ════════════════════════════════════════════════════ */
.stagger > * { opacity: 0; transform: translateY(30px); transition: opacity 0.55s ease, transform 0.55s ease; }
.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.24s; }

/* ════════════════════════════════════════════════════
   ANIMATION KEYFRAMES
   ════════════════════════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .tt-itin-intro { grid-template-columns: 1fr; gap: 48px; padding: 72px 48px; }
  .tt-itin-intro::after { display: none; }
  .itin-split { grid-template-columns: 1fr; }
  .itin-split .itin-img { min-height: 380px; position: relative; }
  .itin-full-body { grid-template-columns: 1fr; gap: 32px; }
  .itin-full { padding: 72px 48px; }
  .hero-pillars { max-width: 600px; }
}

@media (max-width: 768px) {
  .tt-itin-hero { padding: 100px 24px 80px; }
  .hero-pillars { flex-direction: column; max-width: 100%; }
  .hero-pillar { border-right: none; border-bottom: 1px solid rgba(184,132,63,0.2); padding: 20px 24px; }
  .hero-pillar:last-child { border-bottom: none; }
  .tt-itin-intro { padding: 60px 24px; }
  .tt-itin-overview { padding: 60px 24px; }
  .itin-content { padding: 52px 24px; }
  .itin-full { padding: 60px 24px; }
  .itin-dual-img { height: 280px; }
  .tt-itin-cta { padding: 72px 24px; }
}
