/* ─── T&T Travel Boutique — Private Boutique Tours Page ─── */
/* Loaded only on Template: Private Boutique Tours           */

/* ── CSS vars (aliases for tt-boutique.css --tt-* values) ── */
: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 ── */
body.tt-boutique-page,
body.tt-boutique-page * { cursor: auto !important; }
body.tt-boutique-page a,
body.tt-boutique-page button,
body.tt-boutique-page [role="button"],
body.tt-boutique-page .sig-card,
body.tt-boutique-page .faq-q,
body.tt-boutique-page .pillar-bar-item,
body.tt-boutique-page .sig-arrow,
body.tt-boutique-page .include-item,
body.tt-boutique-page .plan-step,
body.tt-boutique-page .testi-card { cursor: pointer !important; }
body.tt-boutique-page .sig-track-wrap { cursor: grab !important; }
body.tt-boutique-page .sig-track-wrap:active { cursor: grabbing !important; }

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

/* ── Base ── */
body.tt-boutique-page {
  font-family: 'Jost', sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  margin: 0; padding: 0;
}
body.tt-boutique-page *, body.tt-boutique-page *::before, body.tt-boutique-page *::after { box-sizing: border-box; }
body.tt-boutique-page ::-webkit-scrollbar { width: 4px; }
body.tt-boutique-page ::-webkit-scrollbar-track { background: var(--dark); }
body.tt-boutique-page ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── Avada blockquote reset ── */
body.tt-boutique-page blockquote {
  background: transparent !important;
  border: none !important; border-left: none !important;
  padding: 0 !important; margin: 0 !important;
  color: inherit !important; font-style: inherit !important;
  box-shadow: none !important;
}
body.tt-boutique-page blockquote::before,
body.tt-boutique-page blockquote::after { display: none !important; }

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

/* ── Active nav link ── */
body.tt-boutique-page .tt-nav .nav-links a.active { opacity: 1; color: var(--gold); }
body.tt-boutique-page .tt-nav .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

/* ════════════════════════════════════════════════════
   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); }

/* ── 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); }

/* ── Stagger animations ── */
.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; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.32s; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.40s; }

/* ── Animation keyframes ── */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }
@keyframes heroZoomOut { 0% { transform: scale(1.08); } 100% { transform: scale(1.0); } }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* Scroll line */
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

/* ════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════ */
.tt-tours-hero {
  min-height: 88vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 140px 40px 80px; text-align: center;
}
.tt-tours-hero .hero-bg {
  position: absolute; inset: -4%; z-index: 0; width: 108%; height: 108%;
  background-size: cover; background-position: center 40%;
  animation: heroZoomOut 20s ease-out infinite; will-change: transform;
}
.tt-tours-hero .hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,rgba(13,27,42,.5) 0%,rgba(13,27,42,.3) 40%,rgba(13,27,42,.5) 70%,rgba(13,27,42,.75) 100%);
}
.tt-tours-hero .hero-overlay::after {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 90% 70% at 50% 50%,transparent 40%,rgba(13,27,42,.25) 100%);
}
.tt-tours-hero > *:not(.hero-bg):not(.hero-overlay) { position: relative; z-index: 2; }
.tt-tours-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 .3s forwards;
}
.tt-tours-hero .hero-eyebrow::before,
.tt-tours-hero .hero-eyebrow::after { content:''; width:36px; height:1px; background:var(--gold); opacity:.5; }
.tt-tours-hero .hero-title {
  font-family:'Cormorant Garamond',serif; font-size:clamp(48px,6.5vw,90px); font-weight:300; line-height:1.08;
  color:var(--light); max-width:900px; text-shadow:0 2px 48px rgba(13,27,42,.5);
  opacity:0; animation:fadeUp 1s .5s forwards;
}
.tt-tours-hero .hero-title em { font-style:italic; color:var(--gold-light); }
.tt-tours-hero .hero-sub {
  margin-top:28px; font-size:18px; font-weight:300; line-height:1.75;
  color:rgba(240,236,227,.88); text-shadow:0 1px 8px rgba(0,0,0,.3); max-width:620px; opacity:0; animation:fadeUp 1s .7s forwards;
}
.tt-tours-hero .hero-scroll {
  position:absolute; bottom:40px; 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-tours-hero .hero-scroll span { font-size:9px; letter-spacing:4px; text-transform:uppercase; opacity:.4; }

/* ── Hero pillars bar ── */
.hero-pillars-bar {
  display:flex; gap:0; margin-top:64px; flex-wrap:wrap; justify-content:center;
  border:1px solid rgba(184,132,63,.2); opacity:0; animation:fadeUp 1s .9s forwards;
}
.pillar-bar-item {
  padding:24px 36px; text-align:center; min-width:160px;
  border-right:1px solid rgba(184,132,63,.2); transition:background .4s ease;
  background:rgba(13,27,42,.55); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
}
.pillar-bar-item:last-child { border-right:none; }
.pillar-bar-item:hover { background:rgba(184,132,63,.07); }
.pillar-icon { width:26px; height:26px; margin:0 auto 10px; opacity:.55; transition:opacity .3s; }
.pillar-bar-item:hover .pillar-icon { opacity:1; }
.pillar-icon svg { width:26px; height:26px; stroke:var(--gold); fill:none; stroke-width:1.3; stroke-linecap:round; stroke-linejoin:round; }
.pillar-label { font-size:13px; letter-spacing:2.5px; text-transform:uppercase; color:var(--gold); font-weight:500; display:block; margin-bottom:4px; }
.pillar-text { font-size:15px; color:rgba(240,236,227,.7); font-weight:300; line-height:1.45; }

/* ════════════════════════════════════════════════════
   TWO-PANEL: JOURNEYS + INCLUDES
   ════════════════════════════════════════════════════ */
.two-panel { display:grid; grid-template-columns:1fr 1fr; min-height:680px; }
.panel-light {
  background:var(--light); padding:96px 72px;
  display:flex; flex-direction:column; justify-content:center;
  position:relative; overflow:hidden;
}
.panel-light::before {
  content:''; position:absolute; inset:0; z-index:0;
  background:linear-gradient(150deg,rgba(184,132,63,.04) 0%,transparent 55%),
             radial-gradient(ellipse 70% 60% at 100% 0%,rgba(184,132,63,.06) 0%,transparent 60%);
  pointer-events:none;
}
.panel-light::after {
  content:'T'; font-family:'Cormorant Garamond',serif; font-size:320px; font-weight:300; line-height:1;
  color:rgba(184,132,63,.05); position:absolute; bottom:-40px; right:-20px; z-index:0; user-select:none;
}
.panel-light > * { position:relative; z-index:1; }
.panel-pull-quote {
  font-family:'Cormorant Garamond',serif; font-size:clamp(18px,2vw,24px); font-weight:300;
  font-style:italic; line-height:1.75; color:var(--heading-dark);
  border-left:2px solid var(--gold); padding-left:28px; margin-bottom:28px;
}
.panel-pull-quote em { color:var(--gold); font-style:italic; }
.panel-dark {
  background:var(--dark); padding:96px 72px;
  display:flex; flex-direction:column; justify-content:center;
  position:relative; overflow:hidden;
}
.panel-dark::before {
  content:''; position:absolute; inset:0; z-index:0;
  background:linear-gradient(210deg,rgba(184,132,63,.05) 0%,transparent 50%),
             radial-gradient(ellipse 60% 70% at 0% 100%,rgba(184,132,63,.04) 0%,transparent 60%);
  pointer-events:none;
}
.panel-dark > * { position:relative; z-index:1; }
.includes-list { display:grid; grid-template-columns:1fr 1fr; gap:0; margin-top:32px; }
.include-item {
  display:flex; align-items:flex-start; gap:14px; padding:18px 16px;
  border:1px solid rgba(184,132,63,.08);
  transition:background .35s ease,border-color .35s ease;
}
.include-item:hover { background:rgba(184,132,63,.05); border-color:rgba(184,132,63,.22); }
.include-icon { flex-shrink:0; width:22px; height:22px; margin-top:1px; opacity:.55; transition:opacity .3s; }
.include-item:hover .include-icon { opacity:1; }
.include-icon svg { width:22px; height:22px; stroke:var(--gold); fill:none; stroke-width:1.3; stroke-linecap:round; stroke-linejoin:round; }
.include-text { font-size:15px; font-weight:300; line-height:1.55; color:rgba(240,236,227,.62); }
.include-text strong { display:block; font-size:12px; letter-spacing:1.5px; text-transform:uppercase; color:rgba(240,236,227,.85); font-weight:500; margin-bottom:2px; }

/* ════════════════════════════════════════════════════
   TWO-PANEL ALT: ITINERARIES + BEYOND
   ════════════════════════════════════════════════════ */
.two-panel-alt { display:grid; grid-template-columns:1fr 1fr; min-height:560px; }
.alt-panel-left {
  background:var(--heading-dark); padding:88px 72px;
  display:flex; flex-direction:column; justify-content:center;
  position:relative; overflow:hidden;
}
.alt-panel-left::before {
  content:''; position:absolute; inset:0; z-index:0;
  background:radial-gradient(ellipse 80% 60% at 100% 50%,rgba(184,132,63,.06) 0%,transparent 60%);
  pointer-events:none;
}
.alt-panel-left::after {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background:linear-gradient(to right,transparent,rgba(184,132,63,.4) 40%,rgba(184,132,63,.6) 60%,transparent);
}
.alt-panel-left > * { position:relative; z-index:1; }
.alt-panel-right {
  background:var(--light); padding:88px 72px;
  display:flex; flex-direction:column; justify-content:center;
  position:relative; overflow:hidden;
}
.alt-panel-right::before {
  content:''; position:absolute; inset:0; z-index:0;
  background:linear-gradient(240deg,rgba(184,132,63,.04) 0%,transparent 50%),
             radial-gradient(ellipse 60% 80% at 0% 50%,rgba(184,132,63,.05) 0%,transparent 60%);
  pointer-events:none;
}
.alt-panel-right::after {
  content:'Beyond'; font-family:'Cormorant Garamond',serif; font-size:200px; font-weight:300; line-height:1;
  color:rgba(184,132,63,.04); position:absolute; bottom:-20px; right:-10px; z-index:0; user-select:none; white-space:nowrap;
}
.alt-panel-right > * { position:relative; z-index:1; }

/* ════════════════════════════════════════════════════
   SIGNATURE ITINERARIES — slider
   ════════════════════════════════════════════════════ */
.sig-section { background:var(--dark); position:relative; overflow:hidden; }
.sig-section::before {
  content:''; position:absolute; inset:0; z-index:0;
  background:radial-gradient(ellipse 50% 80% at 0% 50%,rgba(184,132,63,.04) 0%,transparent 60%);
  pointer-events:none;
}
.sig-outer { display:flex; align-items:stretch; min-height:700px; position:relative; z-index:1; }

.sig-left {
  width:340px; flex-shrink:0;
  display:flex; flex-direction:column; justify-content:center;
  padding:96px 64px 96px 80px; position:relative;
}
.sig-left::after {
  content:''; position:absolute; right:0; top:12%; bottom:12%;
  width:1px; background:rgba(184,132,63,.15);
}
.sig-left-eyebrow {
  font-size:9px; letter-spacing:4px; text-transform:uppercase;
  color:var(--gold); font-weight:500; margin-bottom:20px;
  display:flex; align-items:center; gap:10px;
}
.sig-left-eyebrow::after { content:''; width:24px; height:1px; background:var(--gold); opacity:.5; }
.sig-left-title {
  font-family:'Cormorant Garamond',serif; font-size:clamp(34px,3vw,48px);
  font-weight:300; line-height:1.15; color:var(--light); margin-bottom:20px;
}
.sig-left-title em { font-style:italic; color:var(--gold-light); }
.sig-left-sub { font-size:13px; font-weight:300; line-height:1.8; color:rgba(240,236,227,.45); font-style:italic; margin-bottom:44px; }
.sig-nav { display:flex; gap:8px; }
.sig-arrow {
  width:48px; height:48px; border:1px solid rgba(184,132,63,.3);
  background:transparent; cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:all .3s ease; color:var(--gold); font-size:17px; flex-shrink:0;
}
.sig-arrow:hover { background:var(--gold); color:var(--dark); border-color:var(--gold); }
.sig-arrow:disabled { opacity:.18; cursor:default; pointer-events:none; }

.sig-track-wrap { flex:1; overflow:hidden; position:relative; }
.sig-track {
  display:flex; gap:14px; padding:56px 64px 56px 48px; height:100%;
  transition:transform .75s cubic-bezier(.25,.46,.45,.94);
  will-change:transform; user-select:none;
}
.sig-card {
  flex-shrink:0; width:320px; position:relative; overflow:hidden;
  border:1px solid rgba(255,255,255,.04);
  transition:transform .45s ease,box-shadow .45s ease;
}
.sig-card:hover { transform:translateY(-8px); box-shadow:0 28px 60px rgba(0,0,0,.5); }
.sig-card-img {
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  filter:brightness(.72) saturate(.88); transition:transform 1.2s ease,filter .7s ease;
}
.sig-card:hover .sig-card-img { transform:scale(1.05); filter:brightness(.55) saturate(1); }
.sig-card-overlay {
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(to bottom,rgba(13,27,42,.3) 0%,transparent 35%),
             linear-gradient(to top,rgba(13,27,42,.97) 0%,rgba(13,27,42,.55) 45%,transparent 72%);
}
.sig-nights {
  position:absolute; top:22px; right:22px; z-index:3;
  font-size:9px; letter-spacing:2.5px; text-transform:uppercase; color:rgba(240,236,227,.8); font-weight:400;
  background:rgba(13,27,42,.6); backdrop-filter:blur(8px);
  padding:6px 12px; border:1px solid rgba(255,255,255,.1);
}
.sig-card-body { position:absolute; bottom:0; left:0; right:0; z-index:3; padding:0 28px 32px; }
.sig-card-country { font-size:8px; letter-spacing:3px; text-transform:uppercase; color:var(--gold); font-weight:500; margin-bottom:10px; display:block; }
.sig-card-title { font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:400; line-height:1.25; color:var(--light); }
.sig-card-desc {
  font-size:12px; line-height:1.65; font-weight:300; color:rgba(240,236,227,.6);
  max-height:0; overflow:hidden;
  transition:max-height .45s ease,opacity .35s ease,margin-top .35s ease;
  opacity:0; margin-top:0;
}
.sig-card:hover .sig-card-desc { max-height:90px; opacity:1; margin-top:12px; }
.sig-card-btn {
  display:inline-block; margin-top:20px; padding:11px 22px;
  font-size:9px; letter-spacing:2.5px; text-transform:uppercase; font-weight:500;
  color:var(--light); text-decoration:none;
  border:1px solid rgba(240,236,227,.35); background:transparent;
  opacity:0; transform:translateY(8px);
  transition:opacity .35s ease,transform .35s ease,background .3s ease,border-color .3s ease,color .3s ease;
}
.sig-card:hover .sig-card-btn { opacity:1; transform:translateY(0); }
.sig-card-btn:hover { background:var(--gold); border-color:var(--gold); color:var(--dark); }
.sig-progress { display:flex; gap:5px; padding:0 80px 28px 424px; position:relative; z-index:1; }
.sig-progress-dot { height:1px; flex:1; background:rgba(184,132,63,.18); transition:background .4s ease; }
.sig-progress-dot.active { background:var(--gold); }

/* ════════════════════════════════════════════════════
   HOW WE PLAN — 3-step strip
   ════════════════════════════════════════════════════ */
.plan-section { background:var(--light); padding:96px 80px; position:relative; overflow:hidden; }
.plan-section::before {
  content:''; position:absolute; inset:0; z-index:0;
  background:linear-gradient(135deg,rgba(184,132,63,.04) 0%,transparent 50%),
             radial-gradient(ellipse 50% 60% at 80% 50%,rgba(184,132,63,.05) 0%,transparent 60%);
  pointer-events:none;
}
.plan-steps { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; margin-top:52px; }
.plan-step { padding:44px 36px; background:var(--heading-dark); position:relative; overflow:hidden; transition:background .4s ease; }
.plan-step:hover { background:#243748; }
.plan-step::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform .5s var(--transition); }
.plan-step:hover::before { transform:scaleX(1); }
.plan-step-num { font-family:'Cormorant Garamond',serif; font-size:64px; font-weight:300; line-height:1; color:rgba(184,132,63,.15); margin-bottom:20px; transition:color .4s ease; }
.plan-step:hover .plan-step-num { color:rgba(184,132,63,.3); }
.plan-step-title { font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:400; color:var(--light); margin-bottom:14px; line-height:1.2; }
.plan-step-desc { font-size:15px; line-height:1.78; color:rgba(240,236,227,.5); font-weight:300; }

/* ════════════════════════════════════════════════════
   TESTIMONIALS — 1 row of 3
   ════════════════════════════════════════════════════ */
.testi-section { background:var(--dark); padding:96px 80px; position:relative; }
.testi-section::before {
  content:''; position:absolute; inset:0; z-index:0;
  background:radial-gradient(ellipse 60% 50% at 50% 50%,rgba(184,132,63,.04) 0%,transparent 70%);
  pointer-events:none;
}
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; position:relative; z-index:1; margin-top:52px; }
.testi-card { padding:44px 36px 40px; background:var(--heading-dark); position:relative; overflow:hidden; transition:all .5s var(--transition); }
.testi-card::before { content:'\201C'; font-family:'Cormorant Garamond',serif; font-size:140px; line-height:1; font-weight:300; color:rgba(184,132,63,.1); position:absolute; top:-10px; left:24px; pointer-events:none; transition:color .4s ease; }
.testi-card:hover::before { color:rgba(184,132,63,.2); }
.testi-card::after { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform .6s var(--transition); }
.testi-card:hover::after { transform:scaleX(1); }
.testi-card:hover { background:#243748; transform:translateY(-5px); box-shadow:0 24px 48px rgba(0,0,0,.25); }
.testi-stars { font-size:14px; color:var(--gold); letter-spacing:3px; margin-bottom:20px; position:relative; z-index:1; }
.testi-text { font-family:'Cormorant Garamond',serif; font-size:20px; font-weight:300; font-style:italic; line-height:1.78; color:rgba(240,236,227,.78); margin-bottom:24px; position:relative; z-index:1; }
.testi-rule { width:28px; height:1px; background:var(--gold); margin-bottom:16px; opacity:.6; }
.testi-author { font-size:13px; letter-spacing:2.5px; text-transform:uppercase; font-weight:500; color:var(--light); position:relative; z-index:1; }
.testi-role { font-size:13px; color:rgba(240,236,227,.3); margin-top:4px; font-weight:300; position:relative; z-index:1; }

/* ════════════════════════════════════════════════════
   FAQ — sidebar + accordion
   ════════════════════════════════════════════════════ */
.faq-section { background:var(--light); padding:96px 80px; position:relative; overflow:hidden; }
.faq-section::before {
  content:''; position:absolute; inset:0; z-index:0;
  background:linear-gradient(160deg,rgba(184,132,63,.04) 0%,transparent 55%),
             radial-gradient(ellipse 60% 70% at 95% 50%,rgba(184,132,63,.05) 0%,transparent 60%);
  pointer-events:none;
}
.faq-inner { position:relative; z-index:1; display:grid; grid-template-columns:1fr 2fr; gap:80px; align-items:start; }
.faq-item { border-bottom:1px solid rgba(30,44,56,.1); overflow:hidden; }
.faq-item:first-child { border-top:1px solid rgba(30,44,56,.1); }
.faq-q { display:flex; align-items:center; justify-content:space-between; padding:22px 0; cursor:pointer; gap:16px; }
.faq-q-text { font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:400; color:var(--heading-dark); line-height:1.3; flex:1; transition:color .3s ease; }
.faq-q:hover .faq-q-text { color:var(--gold); }
.faq-icon { width:28px; height:28px; flex-shrink:0; position:relative; border:1px solid rgba(184,132,63,.3); transition:all .3s ease; }
.faq-icon::before,.faq-icon::after { content:''; position:absolute; background:var(--gold); transition:all .35s ease; }
.faq-icon::before { width:10px; height:1px; top:50%; left:50%; transform:translate(-50%,-50%); }
.faq-icon::after { width:1px; height:10px; top:50%; left:50%; transform:translate(-50%,-50%); }
.faq-item.open .faq-icon { background:var(--gold); border-color:var(--gold); }
.faq-item.open .faq-icon::before { background:var(--dark); }
.faq-item.open .faq-icon::after { transform:translate(-50%,-50%) rotate(90deg); opacity:0; }
.faq-a { font-size:16px; line-height:1.88; font-weight:300; color:rgba(30,44,56,.65); max-height:0; overflow:hidden; transition:max-height .45s ease,padding-bottom .3s ease; }
.faq-item.open .faq-a { max-height:300px; padding-bottom:22px; }

/* ════════════════════════════════════════════════════
   CTA
   ════════════════════════════════════════════════════ */
.tt-tours-cta { position:relative; overflow:hidden; padding:160px 80px; text-align:center; }
.tt-tours-cta .cta-bg { position:absolute; inset:0; z-index:0; background-size:cover; background-position:center 40%; filter:brightness(.3) saturate(.7); }
.tt-tours-cta::before { content:''; position:absolute; inset:0; z-index:1; background:linear-gradient(to bottom,rgba(13,27,42,.7) 0%,rgba(13,27,42,.38) 50%,rgba(13,27,42,.85) 100%),radial-gradient(ellipse 80% 60% at 50% 50%,rgba(184,132,63,.07) 0%,transparent 70%); }
.tt-tours-cta > * { position:relative; z-index:2; }
.cta-rule { display:flex; align-items:center; gap:14px; justify-content:center; margin:24px auto 32px; max-width:260px; }
.cta-rule::before,.cta-rule::after { content:''; flex:1; height:1px; background:rgba(184,132,63,.4); }
.cta-diamond { width:5px; height:5px; background:var(--gold); transform:rotate(45deg); }
.cta-sub-text { font-size:15px; font-weight:300; color:rgba(240,236,227,.55); max-width:440px; margin:0 auto 44px; line-height:1.75; }
.cta-meta { margin-top:32px; font-size:11px; color:rgba(240,236,227,.28); letter-spacing:.5px; }
.cta-meta a { color:rgba(184,132,63,.6); text-decoration:none; transition:color .3s; }
.cta-meta a:hover { color:var(--gold); }

/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .two-panel, .two-panel-alt { grid-template-columns: 1fr; }
  .panel-light, .panel-dark, .alt-panel-left, .alt-panel-right { padding: 72px 48px; }
  .sig-left { width: 280px; padding: 72px 48px; }
  .sig-progress { padding: 0 48px 28px 328px; }
  .plan-steps { grid-template-columns: 1fr 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .tt-tours-hero { padding: 100px 24px 80px; }
  .hero-pillars-bar { flex-direction: column; max-width: 100%; }
  .pillar-bar-item { border-right: none; border-bottom: 1px solid rgba(184,132,63,.2); padding: 20px 24px; min-width: 0; }
  .pillar-bar-item:last-child { border-bottom: none; }
  .panel-light, .panel-dark, .alt-panel-left, .alt-panel-right { padding: 60px 24px; }
  .panel-light::after, .alt-panel-right::after { display: none; }
  .includes-list { grid-template-columns: 1fr; }
  .sig-outer { flex-direction: column; min-height: auto; }
  .sig-left { width: 100%; padding: 48px 24px 32px; }
  .sig-left::after { display: none; }
  .sig-track { padding: 24px 24px 32px; }
  .sig-card { width: 280px; }
  .sig-progress { padding: 0 24px 24px; }
  .plan-section, .testi-section, .faq-section { padding: 64px 24px; }
  .plan-steps, .testi-grid { grid-template-columns: 1fr; }
  .tt-tours-cta { padding: 96px 24px; }
}
