/* ─── T&T Boutique Homepage CSS ─── */
/* Loaded only on front page, body.tt-boutique-home */

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

/* Fix cursor — tt-discover/journeys shortcodes set cursor:none globally */
body.tt-boutique-home,
body.tt-boutique-home * { cursor: auto !important; }
body.tt-boutique-home a,
body.tt-boutique-home button,
body.tt-boutique-home [role="button"],
body.tt-boutique-home .tt-place-card,
body.tt-boutique-home .tt-tour-card,
body.tt-boutique-home .tt-yacht-card,
body.tt-boutique-home .tt-service-card,
body.tt-boutique-home .tt-testi-card,
body.tt-boutique-home .tt-intro-founder-photo,
body.tt-boutique-home .tt-photo-popup-overlay { cursor: pointer !important; }

/* Reset Avada blockquote styles — prevent white bg / border / padding leak */
body.tt-boutique-home blockquote {
  background: transparent !important;
  border: none !important;
  border-left: none !important;
  padding: 0 !important;
  margin: 0 !important;
  font-style: inherit !important;
  box-shadow: none !important;
}
body.tt-boutique-home .tt-intro blockquote {
  color: #1a2d3d !important;
  --awb-color: #1a2d3d !important;
  --awb-blockquote-color: #1a2d3d !important;
}
body.tt-boutique-home .tt-services blockquote {
  color: #F0ECE3 !important;
  --awb-color: #F0ECE3 !important;
  --awb-blockquote-color: #F0ECE3 !important;
}
body.tt-boutique-home blockquote::before,
body.tt-boutique-home blockquote::after {
  display: none !important;
}

body.tt-boutique-home.admin-bar nav.tt-nav { top: 32px; }
@media screen and (max-width: 782px) {
  body.tt-boutique-home.admin-bar nav.tt-nav { top: 46px; }
}

/* ─── BASE RESET (scoped to boutique page) ─── */
body.tt-boutique-home {
  font-family: 'Jost', sans-serif;
  background: #0D1B2A;
  color: #F0ECE3;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body.tt-boutique-home *,
body.tt-boutique-home *::before,
body.tt-boutique-home *::after {
  box-sizing: border-box;
}

body.tt-boutique-home ::-webkit-scrollbar { width: 4px; }
body.tt-boutique-home ::-webkit-scrollbar-track { background: #0D1B2A; }
body.tt-boutique-home ::-webkit-scrollbar-thumb { background: #B8843F; border-radius: 2px; }

:root {
  --tt-dark: #0D1B2A;
  --tt-light: #F0ECE3;
  --tt-heading-dark: #0D1B2A;
  --tt-gold: #B8843F;
  --tt-gold-light: #d4a96a;
  --tt-gold-pale: rgba(184,132,63,0.12);
  --tt-transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── NAV ─── */
nav.tt-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 64px;
  background: rgba(13,27,42,0.95);
  transition: all 0.4s ease;
}
nav.tt-nav.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  padding: 16px 64px;
  border-bottom: 1px solid rgba(184,132,63,0.15);
}
.tt-nav .nav-logo { display: flex; align-items: center; }
.tt-nav .nav-logo a { display: flex; align-items: center; text-decoration: none; }
.tt-nav .nav-logo img,
.tt-nav .nav-logo .custom-logo { height: 48px; width: auto; transition: transform 0.3s ease; }
.tt-nav .nav-logo img:hover,
.tt-nav .nav-logo .custom-logo:hover { transform: scale(1.04); }
.tt-nav .nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; color: #F0ECE3;
  letter-spacing: 1px; text-decoration: none;
}
.tt-nav .nav-links { display: flex; gap: 36px; list-style: none; margin: 0; padding: 0; }
.tt-nav .nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 400; letter-spacing: 2px;
  text-transform: uppercase; color: #F0ECE3;
  text-decoration: none; opacity: 0.75;
  transition: opacity 0.3s, color 0.3s;
  position: relative;
}
.tt-nav .nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: #B8843F; transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s ease;
}
.tt-nav .nav-links a:hover { opacity: 1; color: #B8843F; }
.tt-nav .nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.tt-nav .nav-links .nav-enquiry > a,
.tt-nav .nav-links a.nav-enquiry {
  border: 1px solid rgba(184,132,63,0.5);
  padding: 10px 24px;
  color: #B8843F !important; opacity: 1 !important;
  transition: all 0.3s ease !important;
}
.tt-nav .nav-links .nav-enquiry > a:hover,
.tt-nav .nav-links a.nav-enquiry:hover { background: #B8843F; color: #0D1B2A !important; }
.tt-nav .nav-links .nav-enquiry > a::after,
.tt-nav .nav-links a.nav-enquiry::after { display: none !important; }

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

/* Hamburger toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; padding: 0; z-index: 10001;
}
.nav-toggle span {
  display: block; position: absolute; left: 0; width: 100%; height: 1.5px;
  background: #F0ECE3; transition: all 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }
.nav-toggle.open span:nth-child(1) { top: 9px; transform: rotate(45deg); background: #B8843F; }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); background: #B8843F; }

/* ── Global cursor fix — Avada shortcodes inject cursor:none ── */
body, body * { cursor: auto !important; }
a, button, [role="button"], input[type="submit"], select, label,
.tt-place-card, .tt-tour-card, .tt-yacht-card, .tt-service-card,
.tt-testi-card, .tca, .faq-q, .sig-arrow, .nav-toggle,
.tt-intro-founder-photo, .tt-photo-popup-overlay { cursor: pointer !important; }

/* ── Suppress Avada header/footer globally ── */
.fusion-tb-header,
.fusion-header-wrapper,
#fusion-header { display: none !important; }

/* ─── HERO ─── */
.tt-hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 120px 40px 80px;
  text-align: center;
}
.tt-hero .hero-bg-img {
  position: absolute; inset: -4%; z-index: 0;
  width: 108%; height: 108%;
  background-size: cover; background-position: center;
  animation: ttHeroZoom 18s ease-out infinite;
  will-change: transform;
}
@keyframes ttHeroZoom {
  0% { transform: scale(1.16); }
  100% { transform: scale(1.0); }
}
.tt-hero .hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(13,27,42,0.35) 0%, rgba(13,27,42,0.15) 40%, rgba(13,27,42,0.28) 70%, rgba(13,27,42,0.55) 100%),
    linear-gradient(135deg, rgba(13,27,42,0.15) 0%, transparent 60%);
}
.tt-hero .hero-bg-overlay::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 50%, transparent 40%, rgba(13,27,42,0.2) 100%);
}
.tt-hero > *:not(.hero-bg-img):not(.hero-bg-overlay) { position: relative; z-index: 2; }
.tt-hero .hero-tagline {
  font-size: 11px; letter-spacing: 4px; font-weight: 400; text-transform: uppercase;
  color: #B8843F; margin-bottom: 40px;
  opacity: 0; animation: ttFadeUp 1s 0.3s forwards;
  display: flex; align-items: center; gap: 16px;
}
.tt-hero .hero-tagline::before,
.tt-hero .hero-tagline::after { content: ''; width: 40px; height: 1px; background: #B8843F; opacity: 0.5; }
.tt-hero .hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 96px); font-weight: 300; line-height: 1.08;
  color: #F0ECE3; max-width: 940px;
  text-shadow: 0 2px 40px rgba(13,27,42,0.5);
  opacity: 0; animation: ttFadeUp 1s 0.5s forwards;
  margin: 0;
}
.tt-hero .hero-title em { font-style: italic; color: #d4a96a; }
.tt-hero .hero-subtitle {
  margin-top: 32px; font-size: 18px; font-weight: 400; letter-spacing: 0.5px;
  line-height: 1.7; color: rgba(240,236,227,0.95); max-width: 560px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
  opacity: 0; animation: ttFadeUp 1s 0.7s forwards;
}
.tt-hero .hero-btns {
  margin-top: 56px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: ttFadeUp 1s 0.9s forwards;
}
.tt-hero .hero-scroll {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  opacity: 0; animation: ttFadeIn 1s 1.4s forwards; z-index: 2;
}
.tt-hero .hero-scroll span { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; opacity: 0.4; }
.tt-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, #B8843F, transparent);
  animation: ttScrollPulse 2s infinite;
}
@keyframes ttScrollPulse { 0%,100%{opacity:0.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }

/* ─── BUTTONS (scoped to boutique home, extra specificity vs Avada) ─── */
body.tt-boutique-home a.tt-btn-primary,
.tt-btn-primary {
  background: #B8843F !important; color: #0D1B2A !important;
  padding: 16px 40px; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 500; text-decoration: none !important; font-family: 'Jost', sans-serif;
  display: inline-block; transition: all 0.3s ease; position: relative; overflow: hidden;
  border: none !important; border-radius: 0 !important;
}
body.tt-boutique-home a.tt-btn-primary::before,
.tt-btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.15); transform: translateX(-100%);
  transition: transform 0.4s ease;
}
body.tt-boutique-home a.tt-btn-primary:hover::before,
.tt-btn-primary:hover::before { transform: translateX(0); }
body.tt-boutique-home a.tt-btn-primary:hover,
.tt-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(184,132,63,0.35); color: #0D1B2A !important; }
body.tt-boutique-home a.tt-btn-outline,
.tt-btn-outline {
  border: 1px solid rgba(240,236,227,0.3) !important; color: #F0ECE3 !important;
  padding: 16px 40px; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 400; text-decoration: none !important; font-family: 'Jost', sans-serif;
  display: inline-block; transition: all 0.3s ease; background: transparent !important;
}
body.tt-boutique-home a.tt-btn-outline:hover,
.tt-btn-outline:hover { border-color: #B8843F !important; color: #B8843F !important; transform: translateY(-2px); }
body.tt-boutique-home a.tt-btn-dark,
.tt-btn-dark {
  display: inline-block;
  border: 1px solid rgba(184,132,63,0.4) !important; color: #B8843F !important;
  padding: 16px 44px; font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 500; text-decoration: none !important; font-family: 'Jost', sans-serif;
  transition: all 0.35s ease; position: relative; overflow: hidden;
  background: transparent !important;
}
body.tt-boutique-home a.tt-btn-dark::before,
.tt-btn-dark::before {
  content: ''; position: absolute; inset: 0;
  background: #B8843F; transform: translateY(100%);
  transition: transform 0.35s ease;
}
.tt-btn-dark span { position: relative; z-index: 1; }
body.tt-boutique-home a.tt-btn-dark:hover,
.tt-btn-dark:hover { color: #0D1B2A !important; }
body.tt-boutique-home a.tt-btn-dark:hover::before,
.tt-btn-dark:hover::before { transform: translateY(0); }

/* ─── SECTION COMMON ─── */
.tt-section-eyebrow {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: #B8843F; font-weight: 500; margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.tt-section-eyebrow::after { content: ''; flex: 1; height: 1px; background: rgba(184,132,63,0.3); max-width: 60px; }
.tt-section-header { text-align: center; margin-bottom: 56px; }
.tt-section-header .tt-section-eyebrow { justify-content: center; }
.tt-section-header .tt-section-eyebrow::before { content: ''; flex: 1; height: 1px; background: rgba(184,132,63,0.3); max-width: 60px; }
.tt-section-header .tt-section-eyebrow::after { max-width: 60px; }
.tt-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 58px); font-weight: 300; line-height: 1.2;
  color: #F0ECE3; margin-top: 8px; margin-bottom: 0;
}
.tt-section-title em { font-style: italic; color: #d4a96a; }

/* ─── INTRO ─── */
.tt-intro {
  background: #F8F6F1;
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr auto 1fr;
}
.tt-intro::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 40% 60% at 15% 50%, rgba(184,132,63,0.04) 0%, transparent 70%),
              radial-gradient(ellipse 40% 60% at 85% 50%, rgba(13,27,42,0.02) 0%, transparent 70%);
  pointer-events: none;
}
.tt-intro-left {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 88px 64px 88px 80px;
}
.tt-intro-heading {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(30px,3vw,42px);
  font-weight: 300; line-height: 1.2; color: #0D1B2A; margin: 0 0 32px;
}
.tt-intro-heading em { font-style: italic; color: #B8843F; }
.tt-intro-quote-wrap {
  padding-left: 24px;
  border-left: 2px solid rgba(184,132,63,0.3);
  margin-bottom: 4px;
}
.tt-intro-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; line-height: 0.7; color: #B8843F; opacity: 0.3;
  margin-bottom: 6px; display: block; font-weight: 300;
}
.tt-intro-quote-wrap blockquote { background: none !important; border: none !important; padding: 0 !important; margin: 0 !important; box-shadow: none !important; }
.tt-intro-quote-wrap blockquote::before, .tt-intro-quote-wrap blockquote::after { display: none !important; }
.tt-intro-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 1.8vw, 24px) !important; font-weight: 300; line-height: 1.75; font-style: italic;
  color: #1a2d3d !important; margin: 0;
}
.tt-intro-gold-rule { width: 36px; height: 1px; background: #B8843F; margin: 28px 0; }
.tt-intro-text { font-size: 16px; line-height: 1.85; font-weight: 300; color: rgba(30,44,56,0.72); margin-bottom: 12px; }
.tt-intro-expand {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.6s cubic-bezier(0.16,1,0.3,1), opacity 0.5s ease 0.1s;
}
.tt-intro-expand.open { max-height: 400px; opacity: 1; }
.tt-intro-more {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; padding: 0; border: none; background: none; cursor: pointer;
  font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 500; color: #B8843F; transition: gap 0.3s ease, color 0.3s ease;
}
.tt-intro-more:hover { color: #0D1B2A; gap: 12px; }
.tt-intro-more-arrow { transition: transform 0.4s ease; }
.tt-intro-more.open .tt-intro-more-arrow { transform: rotate(180deg); }
.tt-intro-founder {
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(184,132,63,0.12);
  display: flex; align-items: center; gap: 16px;
}
.tt-intro-founder-photo {
  width: 128px; height: 128px; border-radius: 50%; object-fit: cover; object-position: center 15%;
  border: 1px solid rgba(184,132,63,0.25); flex-shrink: 0;
  filter: saturate(0.85); cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.tt-intro-founder-photo:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(184,132,63,0.2);
  border-color: rgba(184,132,63,0.5);
}
.tt-photo-popup-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(13,27,42,0.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s ease; cursor: pointer;
}
.tt-photo-popup-overlay.visible { opacity: 1; }
.tt-photo-popup-wrap {
  position: relative; display: inline-block;
}
.tt-photo-popup-overlay img {
  max-width: 680px; max-height: 80vh; width: auto; height: auto;
  border-radius: 6px; border: 2px solid rgba(184,132,63,0.3);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  transform: scale(0.85); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.tt-photo-popup-overlay.visible img { transform: scale(1); }
.tt-popup-close {
  position: absolute; top: -16px; right: -16px; z-index: 1;
  width: 44px; height: 44px; border: 1px solid rgba(240,236,227,0.25);
  background: rgba(13,27,42,0.6); backdrop-filter: blur(8px);
  color: #F0ECE3; font-size: 28px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer !important; border-radius: 50%;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.tt-popup-close:hover { background: rgba(184,132,63,0.3); border-color: #B8843F; transform: rotate(90deg); }
.tt-intro-credit { font-size: 15px; letter-spacing: 2px; text-transform: uppercase; color: #B8843F; font-weight: 500; display: block; margin-bottom: 3px; }
.tt-intro-credit-sub { font-size: 14px; color: rgba(30,44,56,0.55); font-weight: 300; }
.tt-intro-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 32px; font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 500; text-decoration: none; color: #B8843F;
  transition: gap 0.35s ease, color 0.3s ease;
  padding-bottom: 5px; border-bottom: 1px solid rgba(184,132,63,0.2);
}
.tt-intro-link:hover { gap: 16px; color: #0D1B2A; border-bottom-color: #0D1B2A; }
.tt-intro-divider {
  width: 1px; position: relative; z-index: 1;
  background: linear-gradient(to bottom, transparent 10%, rgba(184,132,63,0.2) 30%, rgba(184,132,63,0.2) 70%, transparent 90%);
}
.tt-intro-right {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  padding: 56px 80px 56px 64px;
}
.tt-intro-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  width: 100%;
}
.tt-intro-card {
  background: #0D1B2A; padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
.tt-intro-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: #B8843F; transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.tt-intro-card:hover::before { transform: scaleX(1); }
.tt-intro-card:hover { background: #152538; transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.15); }
.tt-intro-card-top {
  display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px;
}
.tt-intro-card-num {
  font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300;
  color: #B8843F; line-height: 1;
}
.tt-intro-card-icon {
  width: 24px; height: 24px; color: rgba(184,132,63,0.35);
  transition: color 0.3s ease;
}
.tt-intro-card:hover .tt-intro-card-icon { color: rgba(184,132,63,0.65); }
.tt-intro-card-title {
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  color: rgba(240,236,227,0.9); margin: 0 0 10px; line-height: 1.3;
}
.tt-intro-card-desc {
  font-size: 15px; line-height: 1.7; font-weight: 300;
  color: rgba(240,236,227,0.5);
  transition: color 0.3s ease;
}
.tt-intro-card:hover .tt-intro-card-desc { color: rgba(240,236,227,0.72); }
@media (max-width: 1100px) {
  .tt-intro { grid-template-columns: 1fr; }
  .tt-intro-left { padding: 72px 56px; }
  .tt-intro-divider { width: auto; height: 1px;
    background: linear-gradient(to right, transparent 10%, rgba(184,132,63,0.2) 30%, rgba(184,132,63,0.2) 70%, transparent 90%);
  }
  .tt-intro-right { padding: 0 56px 72px; }
}
@media (max-width: 768px) {
  .tt-intro-left { padding: 48px 24px; }
  .tt-intro-heading { font-size: 28px; margin-bottom: 24px; }
  .tt-intro-quote { font-size: 17px; }
  .tt-intro-right { padding: 0 24px 48px; }
  .tt-intro-cards { grid-template-columns: 1fr 1fr; gap: 2px; }
  .tt-intro-card { padding: 24px 20px; }
  .tt-intro-card-num { font-size: 32px; }
  .tt-intro-card-title { font-size: 11px; }
  .tt-intro-card-desc { font-size: 13px; }
}
@media (max-width: 480px) {
  .tt-intro-cards { grid-template-columns: 1fr; }
}

/* ─── PLACES ─── */
.tt-places { background: #0D1B2A; padding: 88px 0; }
.tt-places .tt-section-header { padding: 0 80px; }
.tt-places-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px;
}
.tt-place-card { position: relative; overflow: hidden; aspect-ratio: 1/2.1; cursor: pointer; }
.tt-place-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--tt-transition);
  filter: brightness(0.72) saturate(0.88);
}
.tt-place-card:hover img { transform: scale(1.1); filter: brightness(0.55) saturate(1.15); }
.tt-place-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.95) 0%, rgba(13,27,42,0.1) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 20px 28px; transition: background 0.5s ease;
}
.tt-place-card:hover .tt-place-overlay {
  background: linear-gradient(to top, rgba(13,27,42,0.98) 0%, rgba(13,27,42,0.4) 60%, rgba(13,27,42,0.1) 100%);
}
.tt-place-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: #B8843F; transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--tt-transition); z-index: 2;
}
.tt-place-card:hover::before { transform: scaleX(1); }
.tt-place-num {
  font-size: 13px; letter-spacing: 4px; color: #B8843F;
  opacity: 0.7; transform: translateY(0);
  transition: opacity 0.4s, transform 0.4s;
  margin-bottom: 8px; font-weight: 500;
}
.tt-place-card:hover .tt-place-num { opacity: 1; transform: translateY(0); }
.tt-place-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400; color: #F0ECE3; line-height: 1.2;
  transition: transform 0.4s, color 0.4s;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.tt-place-card:hover .tt-place-name { transform: translateY(-4px); color: #d4a96a; }
.tt-place-desc {
  font-size: 14px; color: rgba(240,236,227,0.75); margin-top: 10px;
  line-height: 1.6; font-weight: 300;
  opacity: 0.85; transform: translateY(0);
  transition: opacity 0.45s ease 0.05s, transform 0.45s ease 0.05s;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.tt-place-card:hover .tt-place-desc { opacity: 1; transform: translateY(0); }

/* ─── TOURS ─── */
.tt-tours { background: #F0ECE3; padding: 96px 80px; }
.tt-tours .tt-section-title { color: #0D1B2A; }
.tt-tours .tt-section-eyebrow { color: #B8843F; }
.tt-tours-intro {
  max-width: 680px; margin: 0 auto 56px; text-align: center;
  font-size: 15px; line-height: 1.9; color: #0D1B2A; opacity: 0.6; font-weight: 300;
}
.tt-tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tt-tour-hidden { display: none; }
.tt-tours-more { text-align: center; margin-top: 40px; }
.tt-tours-more-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 48px; border: 1px solid rgba(184,132,63,0.35); background: transparent;
  color: #B8843F; font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 500; font-family: 'Jost', sans-serif; cursor: pointer;
  transition: border-color 0.3s ease; outline: none; position: relative; overflow: hidden;
}
.tt-tours-more-btn::before {
  content: ''; position: absolute; inset: 0; background: #B8843F;
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; z-index: 0; opacity: 0.08;
}
.tt-tours-more-btn:hover::before { transform: scaleX(1); }
.tt-tours-more-btn:hover { border-color: #B8843F; }
.tt-tours-more-btn span, .tt-tours-more-btn svg { position: relative; z-index: 1; }
.tt-tour-card {
  position: relative; overflow: hidden; cursor: pointer;
  background: #0D1B2A;
  transition: transform 0.5s var(--tt-transition), box-shadow 0.5s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.tt-tour-card:hover { transform: translateY(-10px); box-shadow: 0 32px 64px rgba(0,0,0,0.22); z-index: 2; }
.tt-tour-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.tt-tour-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--tt-transition); filter: brightness(0.92); }
.tt-tour-card:hover .tt-tour-img img { transform: scale(1.08); filter: brightness(0.78); }
.tt-tour-tag {
  position: absolute; top: 24px; left: 0;
  background: #B8843F; color: #0D1B2A;
  font-size: 8px; letter-spacing: 3px; text-transform: uppercase; padding: 7px 18px; font-weight: 600;
}
.tt-tour-body { padding: 32px 32px 40px; }
.tt-tour-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; color: #F0ECE3; line-height: 1.3;
  margin-bottom: 14px; transition: color 0.3s; margin-top: 0;
}
.tt-tour-card:hover .tt-tour-title { color: #d4a96a; }
.tt-tour-desc {
  font-size: 13px; line-height: 1.75; color: rgba(240,236,227,0.5); font-weight: 300;
  border-top: 1px solid rgba(184,132,63,0.1); padding-top: 16px;
}
.tt-tour-explore {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px; font-size: 14px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 500; color: #B8843F;
  text-decoration: none; transition: gap 0.3s;
  padding-bottom: 4px; border-bottom: 1px solid rgba(184,132,63,0.3);
}
.tt-tour-explore:hover { gap: 14px; border-bottom-color: #B8843F; }

/* ─── YACHT ─── */
.tt-yacht { background: #0D1B2A; padding: 96px 80px; }
.tt-yacht-intro {
  max-width: 680px; margin: 0 auto 52px; text-align: center;
  font-size: 15px; line-height: 1.85; color: rgba(240,236,227,0.65); font-weight: 300;
}
.tt-yacht-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tt-yacht-card {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(184,132,63,0.12);
  transition: all 0.5s var(--tt-transition); cursor: pointer;
}
.tt-yacht-card:hover {
  border-color: rgba(184,132,63,0.4);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(184,132,63,0.2);
  transform: translateY(-8px);
}
.tt-yacht-img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.tt-yacht-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--tt-transition); }
.tt-yacht-card:hover .tt-yacht-img img { transform: scale(1.06); }
.tt-yacht-num {
  position: absolute; top: 0; left: 0;
  background: #B8843F; color: #0D1B2A;
  font-size: 9px; letter-spacing: 2px; padding: 8px 16px; font-weight: 600;
}
.tt-yacht-type-badge {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(13,27,42,0.85); backdrop-filter: blur(8px);
  border: 1px solid rgba(184,132,63,0.3); color: #F0ECE3;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px;
}
.tt-yacht-body { padding: 28px; }
.tt-yacht-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400; color: #F0ECE3; margin-bottom: 8px;
  transition: color 0.3s; margin-top: 0;
}
.tt-yacht-card:hover .tt-yacht-name { color: #d4a96a; }
.tt-yacht-desc { font-size: 13px; line-height: 1.7; color: rgba(240,236,227,0.55); font-weight: 300; }
.tt-yacht-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500; color: #B8843F; text-decoration: none; transition: gap 0.3s;
}
.tt-yacht-link:hover { gap: 14px; }
.tt-yacht-cta { text-align: center; margin-top: 48px; }

/* ─── SERVICES ─── */
.tt-services { background-color: #0D1B2A; background-size: cover; background-position: center; padding: 96px 80px; position: relative; overflow: hidden; }
.tt-services::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: rgba(13,27,42,0.62);
  pointer-events: none;
}
.tt-services .tt-section-title { color: #F0ECE3; }
.tt-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 56px; position: relative; z-index: 1;
  border: 1px solid rgba(184,132,63,0.1);
}
.tt-service-card {
  padding: 52px 44px 48px;
  position: relative; overflow: hidden;
  transition: background 0.5s ease;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(184,132,63,0.08);
}
.tt-service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(184,132,63,0.08) 0%, rgba(184,132,63,0) 60%);
  opacity: 0; transition: opacity 0.5s;
}
.tt-service-card:hover::before { opacity: 1; }
.tt-service-card:hover { background: rgba(184,132,63,0.05); border-color: rgba(184,132,63,0.25); }
.tt-service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: #B8843F; transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--tt-transition);
}
.tt-service-card:hover::after { transform: scaleX(1); }
.tt-service-icon { width: 44px; height: 44px; margin-bottom: 28px; opacity: 0.55; transition: opacity 0.4s, transform 0.4s; }
.tt-service-card:hover .tt-service-icon { opacity: 1; transform: translateY(-3px); }
.tt-service-icon svg { width: 44px; height: 44px; stroke: #B8843F; fill: none; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.tt-service-num { font-size: 10px; letter-spacing: 3px; color: rgba(184,132,63,0.5); margin-bottom: 16px; display: block; font-weight: 400; transition: color 0.4s; }
.tt-service-card:hover .tt-service-num { color: #B8843F; }
.tt-service-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: #F0ECE3; margin-bottom: 14px; line-height: 1.2; transition: color 0.4s; margin-top: 0; }
.tt-service-card:hover .tt-service-title { color: #d4a96a; }
.tt-service-desc { font-size: 13px; line-height: 1.8; color: rgba(240,236,227,0.58); font-weight: 300; transition: color 0.4s; }
.tt-service-card:hover .tt-service-desc { color: rgba(240,236,227,0.7); }
.tt-services-quote-block {
  position: relative; z-index: 1;
  max-width: 800px; margin: 64px auto 0;
  padding: 64px 80px 60px;
  border-top: 1px solid rgba(184,132,63,0.35);
  border-bottom: 1px solid rgba(184,132,63,0.35);
  text-align: center; background: transparent;
}
.tt-services-quote-block::before { display: none; }
.tt-services-quote-block-icon {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: #0D1B2A; padding: 0 20px;
  display: flex; align-items: center; justify-content: center;
}
.tt-services-quote-block-icon::after {
  content: '◆ ◆ ◆'; font-size: 5px; color: #B8843F; letter-spacing: 5px;
}
.tt-services-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 28px); font-weight: 300; font-style: italic;
  line-height: 1.85; color: rgba(240,236,227,0.9);
}
.tt-services-quote em { color: #d4a96a; font-style: italic; }
.tt-services-cta { text-align: center; margin-top: 40px; position: relative; z-index: 1; }

/* ─── TESTIMONIALS ─── */
.tt-testimonials { background: #F0ECE3; padding: 96px 80px; position: relative; overflow: hidden; }
.tt-testimonials::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(184,132,63,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.tt-testimonials .tt-section-title { color: #0D1B2A; }
.tt-testimonials .tt-section-eyebrow { color: #B8843F; }
.tt-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 52px; }
.tt-testi-card {
  padding: 52px 44px 48px; background: #0D1B2A;
  position: relative; overflow: hidden;
  transition: all 0.5s var(--tt-transition);
}
.tt-testi-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 160px; line-height: 1; font-weight: 300;
  color: rgba(184,132,63,0.12);
  position: absolute; top: -16px; left: 28px;
  pointer-events: none; transition: color 0.5s; letter-spacing: -4px;
}
.tt-testi-card:hover::before { color: rgba(184,132,63,0.2); }
.tt-testi-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: #B8843F; transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--tt-transition);
}
.tt-testi-card:hover::after { transform: scaleX(1); }
.tt-testi-card:hover { background: #1a2d40; transform: translateY(-6px); box-shadow: 0 32px 64px rgba(0,0,0,0.25); }
.tt-testi-stars { font-size: 15px; color: #B8843F; letter-spacing: 3px; margin-bottom: 28px; position: relative; z-index: 1; }
.tt-testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; font-style: italic;
  line-height: 1.8; color: rgba(240,236,227,0.82);
  margin-bottom: 32px; position: relative; z-index: 1;
}
.tt-testi-divider { width: 32px; height: 1px; background: #B8843F; margin-bottom: 20px; opacity: 0.6; }
.tt-testi-author { font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500; color: #F0ECE3; position: relative; z-index: 1; }
.tt-testi-location { font-size: 13px; color: rgba(240,236,227,0.35); margin-top: 5px; font-weight: 300; position: relative; z-index: 1; }

/* ─── CTA BANNER ─── */
.tt-cta {
  position: relative; overflow: hidden;
  padding: 120px 80px; text-align: center; background: #0D1B2A;
}
.tt-cta-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center 40%;
  filter: brightness(0.35) saturate(0.7);
}
.tt-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.4) 50%, rgba(13,27,42,0.8) 100%),
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(184,132,63,0.08) 0%, transparent 70%);
}
.tt-cta > * { position: relative; z-index: 2; }
.tt-cta .tt-section-title { color: #F0ECE3; }
.tt-cta .tt-section-title em { color: #d4a96a; }
.tt-cta-rule {
  display: flex; align-items: center; gap: 16px;
  justify-content: center; margin: 0 auto 40px; max-width: 300px;
}
.tt-cta-rule::before, .tt-cta-rule::after { content: ''; flex: 1; height: 1px; background: rgba(184,132,63,0.4); }
.tt-cta-rule-gem { width: 5px; height: 5px; background: #B8843F; transform: rotate(45deg); }
.tt-cta-sub { font-size: 15px; font-weight: 300; color: rgba(240,236,227,0.62); max-width: 480px; margin: 16px auto 52px; line-height: 1.75; }
.tt-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.tt-cta-note { margin-top: 40px; font-size: 11px; letter-spacing: 1px; color: rgba(240,236,227,0.32); }
.tt-cta-note a { color: rgba(184,132,63,0.7); text-decoration: none; transition: color 0.3s; }
.tt-cta-note a:hover { color: #B8843F; }

/* ─── GLOBAL CTA ─── */
.tt-global-cta {
  position: relative; overflow: hidden; padding: 120px 80px; text-align: center;
  background: #F8F5EF;
}
.tt-global-cta-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(184,132,63,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.tt-global-cta-inner { position: relative; z-index: 1; }
.tt-global-cta-tag {
  font-size: 9px; letter-spacing: 4.5px; text-transform: uppercase; color: #B8843F;
  display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 20px;
}
.tt-global-cta-tag::before, .tt-global-cta-tag::after { content: ''; width: 40px; height: 1px; background: #B8843F; opacity: 0.5; }
.tt-global-cta-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300; line-height: 1.15; color: #0D1B2A; margin: 0;
}
.tt-global-cta-title em { font-style: italic; color: #B8843F; }
.tt-global-cta-rule {
  display: flex; align-items: center; gap: 14px;
  justify-content: center; margin: 24px auto; max-width: 200px;
}
.tt-global-cta-rule::before, .tt-global-cta-rule::after { content: ''; flex: 1; height: 1px; background: rgba(184,132,63,0.35); }
.tt-global-cta-diamond { width: 5px; height: 5px; background: #B8843F; transform: rotate(45deg); }
.tt-global-cta-text {
  font-size: 15px; font-weight: 300; color: rgba(30,44,56,0.55);
  max-width: 520px; margin: 0 auto 40px; line-height: 1.8;
}
.tt-global-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.tt-global-cta-contact {
  margin-top: 28px; font-size: 11px; color: rgba(30,44,56,0.3); letter-spacing: 0.5px;
}
.tt-global-cta-contact a { color: rgba(184,132,63,0.7); text-decoration: none; }
.tt-global-cta-contact a:hover { color: #B8843F; }
@media (max-width: 768px) {
  .tt-global-cta { padding: 80px 24px; }
  .tt-global-cta-btns { flex-direction: column; align-items: center; }
}

/* Suppress Avada footer globally */
.fusion-footer,
.fusion-footer-widget-area,
.fusion-copyright-footer,
.fusion-tb-footer { display: none !important; }

/* ─── FOOTER ─── */
.tt-footer-boutique {
  background: #0D1B2A;
  padding: 52px 80px 32px;
  border-top: 1px solid rgba(184,132,63,0.18);
  position: relative; overflow: hidden;
}
.tt-footer-boutique::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,132,63,0.5) 30%, #B8843F 50%, rgba(184,132,63,0.5) 70%, transparent);
}
.tt-footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr; gap: 48px; margin-bottom: 36px; align-items: start; }
.tt-footer-brand-logo img { height: 36px; margin-bottom: 20px; opacity: 0.8; }
.tt-footer-brand-desc { font-size: 12px; line-height: 1.8; color: rgba(240,236,227,0.32); font-weight: 300; max-width: 260px; }
.tt-footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.tt-footer-socials a {
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(184,132,63,0.15); color: rgba(240,236,227,0.35);
  font-size: 8px; letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
  transition: all 0.3s;
}
.tt-footer-socials a:hover { border-color: #B8843F; color: #B8843F; background: rgba(184,132,63,0.08); transform: translateY(-2px); }
.tt-footer-col-title {
  font-size: 9px; letter-spacing: 3.5px; text-transform: uppercase;
  color: #B8843F; font-weight: 500; margin-bottom: 20px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(184,132,63,0.1);
}
.tt-footer-links { list-style: none; margin: 0; padding: 0; }
.tt-footer-links li { margin-bottom: 8px; }
.tt-footer-links a { font-size: 12px; color: rgba(240,236,227,0.32); text-decoration: none; font-weight: 300; transition: color 0.3s, padding-left 0.3s; display: inline-block; }
.tt-footer-links a:hover { color: rgba(240,236,227,0.7); padding-left: 4px; }
.tt-footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 12px; color: rgba(240,236,227,0.32); font-weight: 300; line-height: 1.5; }
.tt-footer-contact-item .tt-dot { color: #B8843F; margin-top: 1px; flex-shrink: 0; font-size: 8px; }
.tt-footer-contact-item a { color: rgba(240,236,227,0.32); text-decoration: none; transition: color 0.3s; }
.tt-footer-contact-item a:hover { color: #B8843F; }
.tt-footer-epc-col {
  display: flex; flex-direction: column; align-items: flex-start;
}
.tt-footer-epc-col img {
  width: 100%; max-width: 240px; height: auto; opacity: 0.55;
  filter: grayscale(0.2);
  transition: opacity 0.4s ease, filter 0.4s ease;
  border-radius: 2px;
}
.tt-footer-epc-col img:hover { opacity: 0.8; filter: grayscale(0); }
.tt-footer-bottom { padding-top: 24px; border-top: 1px solid rgba(240,236,227,0.04); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.tt-footer-copy { font-size: 10px; color: rgba(240,236,227,0.18); letter-spacing: 0.5px; }
.tt-footer-craft { font-size: 10px; color: rgba(240,236,227,0.18); font-style: italic; }
.tt-footer-legal { display: flex; gap: 24px; }
.tt-footer-legal a { font-size: 10px; color: rgba(240,236,227,0.18); text-decoration: none; letter-spacing: 0.5px; transition: color 0.3s; }
.tt-footer-legal a:hover { color: rgba(184,132,63,0.6); }

/* ─── ANIMATIONS ─── */
@keyframes ttFadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ttFadeIn { from { opacity: 0; } to { opacity: 1; } }

.reveal { opacity: 0; transform: translateY(50px); transition: opacity 0.8s var(--tt-transition), transform 0.8s var(--tt-transition); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s var(--tt-transition), transform 0.8s var(--tt-transition); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s var(--tt-transition), transform 0.8s var(--tt-transition); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.stagger-children > * { opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.stagger-children.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.5s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  nav.tt-nav { padding: 20px 40px; }
  nav.tt-nav.scrolled { padding: 14px 40px; }
  .tt-nav .nav-links { gap: 24px; }
  .tt-intro { grid-template-columns: 1fr; }
  .tt-intro-left { padding: 60px 48px; }
  .tt-intro-right { padding: 0 48px 60px; }
  .tt-places .tt-section-header { padding: 0 40px; }
  .tt-places-grid { grid-template-columns: repeat(3, 1fr); }
  .tt-place-card { aspect-ratio: 1/1.6; }
  .tt-tours-grid, .tt-yacht-grid { grid-template-columns: repeat(2, 1fr); }
  .tt-services-grid { grid-template-columns: repeat(2, 1fr); }
  .tt-footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  nav.tt-nav { padding: 16px 24px; }
  nav.tt-nav.scrolled { padding: 12px 24px; }
  .nav-toggle { display: block; }
  .tt-nav .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 0; right: 0; width: 280px; height: 100vh;
    background: rgba(13,27,42,0.98); backdrop-filter: blur(16px);
    padding: 88px 32px 40px; z-index: 10000;
    transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    border-left: 1px solid rgba(184,132,63,0.12);
  }
  .tt-nav .nav-links.open { transform: translateX(0); }
  .tt-nav .nav-links li { border-bottom: 1px solid rgba(184,132,63,0.08); }
  .tt-nav .nav-links a { display: block; padding: 16px 0; font-size: 13px; opacity: 0.7; }
  .tt-nav .nav-links a.nav-enquiry {
    margin-top: 16px; text-align: center; border: 1px solid rgba(184,132,63,0.5);
    padding: 14px 24px;
  }
  .tt-hero { padding: 100px 24px 60px; }
  .tt-places-grid { grid-template-columns: repeat(2, 1fr); }
  .tt-place-card { aspect-ratio: 1/1.2; }
  .tt-tours, .tt-yacht, .tt-services, .tt-testimonials, .tt-cta { padding: 64px 24px; }
  .tt-tours-grid, .tt-yacht-grid, .tt-testi-grid { grid-template-columns: 1fr; }
  .tt-services-grid { grid-template-columns: 1fr; }
  .tt-services-quote-block { padding: 48px 32px 40px; }
  .tt-footer-boutique { padding: 60px 24px 32px; }
  .tt-footer-top { grid-template-columns: 1fr; gap: 32px; }
  .tt-footer-bottom { flex-direction: column; text-align: center; }
  .tt-footer-legal { justify-content: center; flex-wrap: wrap; gap: 16px; }
}
