/* ─── T&T Travel Boutique — Yacht Charter Page ─── */

/* ── CSS vars ── */
: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-yacht-page,
body.tt-yacht-page * { cursor: auto !important; }
body.tt-yacht-page a,
body.tt-yacht-page button { cursor: pointer !important; }

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

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

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

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

/* ── Keyframes ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroZoomOut { 0% { transform: scale(1.08); } 100% { transform: scale(1); } }

/* ════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════ */
.tt-yacht-hero {
  min-height: 88vh; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 160px 80px 80px; position: relative; overflow: hidden;
}
.tt-yacht-hero .h-bg {
  position: absolute; inset: -4%; z-index: 0; width: 108%; height: 108%;
  background-size: cover; background-position: center 40%;
  animation: heroZoomOut 22s ease-out forwards; will-change: transform;
}
.tt-yacht-hero .h-ov {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(13,27,42,.9) 0%, rgba(13,27,42,.55) 55%, rgba(13,27,42,.2) 100%),
    linear-gradient(to top, rgba(13,27,42,.85) 0%, rgba(13,27,42,.15) 50%, transparent 100%);
}
.tt-yacht-hero .h-ov::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 70% at 30% 50%, transparent 40%, rgba(13,27,42,.35) 100%);
}
.tt-yacht-hero > *:not(.h-bg):not(.h-ov) { position: relative; z-index: 2; }
.tt-yacht-hero .h-eyebrow {
  font-size: 9px; letter-spacing: 4.5px; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px; margin-bottom: 32px;
  opacity: 0; animation: fadeUp 1s .3s forwards;
}
.tt-yacht-hero .h-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); opacity: .6; }
.tt-yacht-hero .h-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(52px,6.5vw,90px); font-weight: 300; line-height: 1.08;
  color: var(--light); max-width: 820px; text-shadow: 0 2px 40px rgba(13,27,42,.45); margin: 0;
  opacity: 0; animation: fadeUp 1s .5s forwards;
}
.tt-yacht-hero .h-title em { font-style: italic; color: var(--gold-light); }
.tt-yacht-hero .h-sub {
  margin-top: 28px; font-size: 15px; font-weight: 200; line-height: 1.78;
  color: rgba(240,236,227,.68); max-width: 600px;
  opacity: 0; animation: fadeUp 1s .7s forwards;
}
.yacht-pillars {
  display: flex; gap: 0; margin-top: 56px; border: 1px solid rgba(184,132,63,.2); flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s .9s forwards;
}
.yacht-pillar {
  padding: 22px 36px; border-right: 1px solid rgba(184,132,63,.2);
  min-width: 160px; transition: background .4s ease;
}
.yacht-pillar:last-child { border-right: none; }
.yacht-pillar:hover { background: rgba(184,132,63,.07); }
.yacht-pillar-label { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 500; display: block; margin-bottom: 5px; }
.yacht-pillar-text { font-size: 12px; color: rgba(240,236,227,.48); font-weight: 300; line-height: 1.45; }

/* ════════════════════════════════════════════════════
   FLEET SECTION
   ════════════════════════════════════════════════════ */
.tt-fleet-section {
  background: var(--dark); padding: 96px 80px; position: relative; overflow: hidden;
}
.tt-fleet-section::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 40%, rgba(184,132,63,.04) 0%, transparent 70%);
  pointer-events: none;
}
.fleet-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
.fleet-eyebrow {
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 12px;
}
.fleet-eyebrow::before, .fleet-eyebrow::after { content: ''; flex: 1; height: 1px; background: rgba(184,132,63,.3); max-width: 56px; }
.fleet-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,4vw,52px);
  font-weight: 300; line-height: 1.18; color: var(--light); margin: 0;
}
.fleet-title em { font-style: italic; color: var(--gold-light); }
.fleet-subtitle {
  margin-top: 12px; font-size: 14px; font-weight: 300; color: rgba(240,236,227,.5);
  max-width: 620px; margin-left: auto; margin-right: auto; line-height: 1.75;
}

/* Filter tabs */
.fleet-filter-tabs {
  display: flex; align-items: center; justify-content: center; gap: 0;
  margin-bottom: 48px; position: relative; z-index: 1; flex-wrap: wrap;
  border: 1px solid rgba(184,132,63,.18);
}
.fleet-tab {
  padding: 14px 28px; font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 500; color: rgba(240,236,227,.42); background: transparent; border: none;
  border-right: 1px solid rgba(184,132,63,.12);
  cursor: pointer; transition: color .3s ease, background .3s ease;
  font-family: 'Jost', sans-serif; outline: none;
}
.fleet-tab:last-child { border-right: none; }
.fleet-tab:hover { color: rgba(240,236,227,.85); background: rgba(184,132,63,.05); }
.fleet-tab.active { color: var(--gold); background: rgba(184,132,63,.08); }

/* Yacht grid */
.yacht-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  position: relative; z-index: 1;
}

/* ════════════════════════════════════════════════════
   YACHT CARD
   ════════════════════════════════════════════════════ */
.yacht-card {
  position: relative; overflow: hidden; background: var(--heading-dark);
  border: 1px solid rgba(184,132,63,.1); cursor: pointer;
  transition: transform .5s var(--transition), box-shadow .5s ease, border-color .5s ease;
  display: flex; flex-direction: column;
}
.yacht-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(0,0,0,.45), 0 0 0 1px rgba(184,132,63,.25);
  border-color: rgba(184,132,63,.35);
}
.yc-img { aspect-ratio: 16/10; overflow: hidden; position: relative; flex-shrink: 0; }
.yc-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.78) saturate(.88);
  transition: transform .9s var(--transition), filter .7s ease;
  display: block;
}
.yacht-card:hover .yc-img img { transform: scale(1.07); filter: brightness(.62) saturate(1.05); }

.yc-badge-wrap {
  position: absolute; top: 0; left: 0; right: 0; z-index: 3;
  display: flex; justify-content: space-between; align-items: flex-start; padding: 14px 14px 0;
}
.yc-avail {
  font-size: 8px; letter-spacing: 2px; text-transform: uppercase;
  background: rgba(13,27,42,.75); backdrop-filter: blur(6px);
  color: rgba(240,236,227,.7); padding: 5px 10px; border: 1px solid rgba(255,255,255,.1); font-weight: 400;
}
.yc-featured {
  font-size: 8px; letter-spacing: 2px; text-transform: uppercase;
  background: var(--gold); color: var(--dark); padding: 5px 10px; font-weight: 700;
}
.yc-price {
  position: absolute; bottom: 14px; right: 14px; z-index: 3;
  background: rgba(13,27,42,.82); backdrop-filter: blur(8px);
  border: 1px solid rgba(184,132,63,.25); padding: 8px 14px; text-align: right;
}
.yc-price-from { font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(240,236,227,.45); display: block; margin-bottom: 2px; }
.yc-price-amt { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; color: var(--gold); line-height: 1; }
.yc-price-per { font-size: 8px; color: rgba(240,236,227,.4); margin-top: 1px; display: block; }

/* Specs — slide up on hover */
.yc-specs {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(13,27,42,.78); backdrop-filter: blur(6px);
  display: flex; padding: 0;
  opacity: 0; transform: translateY(100%);
  transition: opacity .4s ease, transform .4s ease;
}
.yacht-card:hover .yc-specs { opacity: 1; transform: translateY(0); }
.yc-spec { flex: 1; padding: 10px 8px; text-align: center; border-right: 1px solid rgba(184,132,63,.12); }
.yc-spec:last-child { border-right: none; }
.yc-spec-v { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 300; color: var(--light); line-height: 1; display: block; }
.yc-spec-l { font-size: 7px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(240,236,227,.38); margin-top: 2px; display: block; }

/* Card body */
.yc-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.yc-type { font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 8px; }
.yc-name {
  font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400;
  color: var(--light); line-height: 1.2; transition: color .3s ease;
  text-decoration: none; display: block; margin-bottom: 0;
}
.yacht-card:hover .yc-name { color: var(--gold-light); }
.yc-amenities { display: flex; gap: 6px; flex-wrap: wrap; margin: 14px 0; min-height: 24px; }
.yc-amenity { font-size: 14px; opacity: .65; transition: opacity .3s; }
.yacht-card:hover .yc-amenity { opacity: 1; }
.yc-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid rgba(184,132,63,.1); margin-top: auto; margin-bottom: 0;
}
.yc-season, .yc-base { font-size: 10px; color: rgba(240,236,227,.38); font-weight: 300; }
.yc-btns { display: flex; gap: 8px; margin-top: 18px; }
.yc-btn-view {
  flex: 1; padding: 10px 16px; background: transparent;
  border: 1px solid rgba(184,132,63,.3); color: var(--gold);
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  text-decoration: none; text-align: center; transition: all .3s ease; display: block;
  font-family: 'Jost', sans-serif;
}
.yc-btn-view:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.yc-btn-enq {
  flex: 1; padding: 10px 16px; background: var(--gold); border: 1px solid var(--gold);
  color: var(--dark); font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; text-decoration: none; text-align: center; transition: all .3s ease; display: block;
  font-family: 'Jost', sans-serif;
}
.yc-btn-enq:hover { background: rgba(184,132,63,.85); }

/* Load More */
.fleet-load-more-wrap { text-align: center; margin-top: 40px; position: relative; z-index: 1; }
.fleet-load-more {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 48px; border: 1px solid rgba(184,132,63,.35); background: transparent;
  color: var(--gold); font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 500; font-family: 'Jost', sans-serif; cursor: pointer;
  transition: border-color .3s ease; outline: none; position: relative; overflow: hidden;
}
.fleet-load-more::before {
  content: ''; position: absolute; inset: 0; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease; z-index: 0; opacity: .08;
}
.fleet-load-more:hover::before { transform: scaleX(1); }
.fleet-load-more:hover { border-color: var(--gold); }
.fleet-load-more span, .fleet-load-more svg { position: relative; z-index: 1; }
.fleet-load-more svg { stroke: var(--gold); }

.fleet-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 48px; position: relative; z-index: 1;
}
.fleet-count { font-size: 11px; letter-spacing: 2px; color: rgba(240,236,227,.35); text-transform: uppercase; }
.fleet-count span { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; margin-right: 6px; }

/* ════════════════════════════════════════════════════
   ROUTES — light, image right
   ════════════════════════════════════════════════════ */
.tt-routes-section {
  background: var(--light); display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px; position: relative; overflow: hidden;
}
.tt-routes-section::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, rgba(184,132,63,.04) 0%, transparent 55%);
  pointer-events: none;
}
.routes-body {
  padding: 96px 72px 96px 80px; display: flex; flex-direction: column;
  justify-content: center; position: relative; z-index: 1;
}
.routes-eyebrow {
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 16px; display: flex; align-items: center; gap: 12px;
}
.routes-eyebrow::after { content: ''; flex: 1; height: 1px; background: rgba(184,132,63,.25); max-width: 48px; }
.routes-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(30px,3.2vw,44px);
  font-weight: 300; line-height: 1.22; color: var(--heading-dark); margin: 0;
}
.routes-title em { font-style: italic; color: var(--gold); }
.routes-rule { width: 32px; height: 1px; background: var(--gold); margin: 24px 0; }
.routes-text { font-size: 14px; line-height: 1.9; font-weight: 300; color: rgba(30,44,56,.62); margin-bottom: 32px; }
.routes-link {
  display: inline-flex; align-items: center; gap: 10px; font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 500; color: var(--gold); text-decoration: none;
  padding-bottom: 5px; border-bottom: 1px solid rgba(184,132,63,.35); transition: gap .3s, border-color .3s;
}
.routes-link:hover { gap: 16px; border-color: var(--gold); }
.routes-photo { position: relative; overflow: hidden; }
.routes-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.78) saturate(.88); transition: transform 1.2s ease, filter .8s ease;
}
.tt-routes-section:hover .routes-photo img { transform: scale(1.04); filter: brightness(.68) saturate(1); }
.routes-photo::before, .routes-photo::after {
  content: ''; position: absolute; z-index: 2; width: 44px; height: 44px;
  pointer-events: none; transition: all .5s ease;
}
.routes-photo::before { top: 28px; left: 28px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); opacity: .7; }
.routes-photo::after  { bottom: 28px; right: 28px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); opacity: .7; }
.tt-routes-section:hover .routes-photo::before,
.tt-routes-section:hover .routes-photo::after { width: 58px; height: 58px; opacity: 1; }

/* ════════════════════════════════════════════════════
   BOUTIQUE CARE — dark, image left
   ════════════════════════════════════════════════════ */
.tt-care-section {
  background: var(--dark); display: grid; grid-template-columns: 1fr 1fr;
  min-height: 580px; position: relative; overflow: hidden;
}
.tt-care-section::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(184,132,63,.05) 0%, transparent 65%);
  pointer-events: none;
}
.care-photo { position: relative; overflow: hidden; }
.care-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.65) saturate(.85); transition: transform 1.2s ease, filter .8s ease;
}
.tt-care-section:hover .care-photo img { transform: scale(1.04); filter: brightness(.55) saturate(1); }
.care-photo::before, .care-photo::after {
  content: ''; position: absolute; z-index: 2; width: 44px; height: 44px;
  pointer-events: none; transition: all .5s ease;
}
.care-photo::before { top: 28px; left: 28px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); opacity: .7; }
.care-photo::after  { bottom: 28px; right: 28px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); opacity: .7; }
.tt-care-section:hover .care-photo::before,
.tt-care-section:hover .care-photo::after { width: 58px; height: 58px; opacity: 1; }
.care-photo-ov { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to right, transparent 65%, rgba(13,27,42,.5) 100%); }
.care-content {
  padding: 88px 80px 88px 72px; display: flex; flex-direction: column;
  justify-content: center; position: relative; z-index: 1;
}
.care-eyebrow {
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 16px; display: flex; align-items: center; gap: 12px;
}
.care-eyebrow::after { content: ''; flex: 1; height: 1px; background: rgba(184,132,63,.25); max-width: 48px; }
.care-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(28px,3vw,42px);
  font-weight: 300; line-height: 1.22; color: var(--light); margin: 0;
}
.care-title em { font-style: italic; color: var(--gold-light); }
.care-rule { width: 32px; height: 1px; background: var(--gold); margin: 24px 0; }
.care-text { font-size: 16px; line-height: 1.9; font-weight: 300; color: rgba(240,236,227,.58); margin-bottom: 28px; }
.care-list { list-style: none; margin: 0; padding: 0; }
.care-item {
  display: flex; align-items: baseline; gap: 12px; padding: 13px 0;
  border-bottom: 1px solid rgba(184,132,63,.1);
  font-size: 15px; font-weight: 300; color: rgba(240,236,227,.55); line-height: 1.6; transition: color .3s ease;
}
.care-item:first-child { border-top: 1px solid rgba(184,132,63,.1); }
.care-item:hover { color: rgba(240,236,227,.8); }
.care-item::before { content: '◆'; font-size: 5px; color: var(--gold); flex-shrink: 0; opacity: .7; }

/* ════════════════════════════════════════════════════
   WHY CROATIA — light, centered
   ════════════════════════════════════════════════════ */
.tt-why-section {
  background: var(--light); padding: 96px 80px; position: relative; overflow: hidden;
}
.tt-why-section::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(135deg, rgba(184,132,63,.04) 0%, transparent 55%),
    radial-gradient(ellipse 55% 65% at 50% 50%, rgba(184,132,63,.05) 0%, transparent 65%);
  pointer-events: none;
}
.tt-why-section::after {
  content: 'Adriatic'; font-family: 'Cormorant Garamond', serif; font-size: 220px;
  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;
}
.why-inner { max-width: 860px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.why-eyebrow {
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 12px;
}
.why-eyebrow::before, .why-eyebrow::after { content: ''; flex: 1; height: 1px; background: rgba(184,132,63,.25); max-width: 56px; }
.why-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(30px,3.5vw,48px);
  font-weight: 300; line-height: 1.2; color: var(--heading-dark); margin: 0;
}
.why-title em { font-style: italic; color: var(--gold); }
.why-rule { width: 36px; height: 1px; background: var(--gold); margin: 24px auto; }
.why-text { font-size: 15px; line-height: 1.9; font-weight: 300; color: rgba(30,44,56,.62); margin: 0; }
.why-features {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
  margin-top: 56px; position: relative; z-index: 1;
}
.why-feat {
  background: var(--heading-dark); padding: 44px 36px; position: relative; overflow: hidden;
  transition: background .4s ease;
}
.why-feat:hover { background: #243748; }
.why-feat::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);
}
.why-feat:hover::before { transform: scaleX(1); }
.why-feat-icon { width: 32px; height: 32px; margin-bottom: 20px; opacity: .5; transition: opacity .4s ease; }
.why-feat:hover .why-feat-icon { opacity: 1; }
.why-feat-icon svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.why-feat-title {
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400;
  color: var(--light); margin: 0 0 10px; transition: color .3s;
}
.why-feat:hover .why-feat-title { color: var(--gold-light); }
.why-feat-desc { font-size: 13px; line-height: 1.72; font-weight: 300; color: rgba(240,236,227,.45); margin: 0; }

/* ════════════════════════════════════════════════════
   CTA
   ════════════════════════════════════════════════════ */
.tt-yacht-cta { position: relative; overflow: hidden; padding: 160px 80px; text-align: center; }
.tt-yacht-cta .cta-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center 40%;
  filter: brightness(.3) saturate(.65);
}
.tt-yacht-cta::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(13,27,42,.72) 0%, rgba(13,27,42,.38) 50%, rgba(13,27,42,.88) 100%),
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(184,132,63,.08) 0%, transparent 70%);
}
.tt-yacht-cta > * { position: relative; z-index: 2; }
.yacht-cta-tag {
  font-size: 9px; letter-spacing: 4.5px; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 20px;
}
.yacht-cta-tag::before, .yacht-cta-tag::after { content: ''; width: 40px; height: 1px; background: var(--gold); opacity: .5; }
.yacht-cta-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(36px,5vw,64px);
  font-weight: 300; line-height: 1.12; color: var(--light); margin: 0;
}
.yacht-cta-title em { font-style: italic; color: var(--gold-light); }
.yacht-cta-rule {
  display: flex; align-items: center; gap: 14px;
  justify-content: center; margin: 26px auto; max-width: 240px;
}
.yacht-cta-rule::before, .yacht-cta-rule::after { content: ''; flex: 1; height: 1px; background: rgba(184,132,63,.4); }
.yacht-cta-diamond { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }
.yacht-cta-text {
  font-size: 15px; font-weight: 200; color: rgba(240,236,227,.55);
  max-width: 500px; margin: 0 auto 48px; line-height: 1.8;
}
.yacht-cta-note { margin-top: 28px; font-size: 11px; color: rgba(240,236,227,.28); letter-spacing: .5px; }
.yacht-cta-note a { color: rgba(184,132,63,.55); text-decoration: none; }
.yacht-cta-note a:hover { color: var(--gold); }

/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .yacht-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 1024px) {
  .tt-yacht-hero { padding: 140px 56px 72px; }
  .tt-fleet-section { padding: 80px 48px; }
  .tt-routes-section, .tt-care-section { grid-template-columns: 1fr; }
  .routes-photo, .care-photo { min-height: 380px; }
  .care-photo { order: -1; }
  .routes-body, .care-content { padding: 72px 56px; }
  .tt-why-section { padding: 80px 48px; }
  .why-features { grid-template-columns: 1fr 1fr; }
  .tt-yacht-cta { padding: 120px 48px; }
}

@media (max-width: 768px) {
  .tt-yacht-hero { padding: 120px 24px 56px; }
  .yacht-pillars { flex-direction: column; }
  .yacht-pillar { border-right: none; border-bottom: 1px solid rgba(184,132,63,.2); }
  .yacht-pillar:last-child { border-bottom: none; }
  .tt-fleet-section { padding: 64px 24px; }
  .yacht-grid { grid-template-columns: 1fr; }
  .fleet-filter-tabs { flex-direction: column; border: none; gap: 4px; }
  .fleet-tab { border-right: none; border: 1px solid rgba(184,132,63,.18); width: 100%; text-align: center; }
  .routes-body, .care-content { padding: 56px 24px; }
  .tt-why-section { padding: 64px 24px; }
  .why-features { grid-template-columns: 1fr; }
  .tt-yacht-cta { padding: 96px 24px; }
}
