/* THE 1ST FLOTILLA — STYLES v2 */
:root {
  --teal: #4ECDC4; --teal-mid: #3BB8B0; --teal-dark: #2A9D96;
  --graphite: #1E2A35; --graphite-mid: #2D3F4E; --graphite-light: #5A7080;
  --sand: #F5F0E8; --white: #FFFFFF;
  --font-display: 'Unbounded', sans-serif; --font-body: 'Jost', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--graphite); background: var(--white); overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 20px 56px; display: flex; align-items: center; justify-content: space-between; transition: background 0.4s, padding 0.4s; }
nav.scrolled { background: rgba(30,42,53,0.96); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: 14px 56px; }
.nav-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo-img { height: 36px; width: auto; }
.nav-name { font-family: var(--font-display); font-weight: 500; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--white); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--teal); }

/* HERO — parallax-ready */
.hero { position: relative; height: 100vh; min-height: 680px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: -15% 0 0 0; height: 115%; will-change: transform; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,32,44,1) 0%, rgba(20,32,44,0.7) 35%, rgba(20,32,44,0.4) 60%, rgba(20,32,44,0.2) 80%, transparent 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 80px 80px; width: 100%; }
.hero-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; animation: slideUp 1s 0.3s both; }
.hero-eyebrow-line { width: 48px; height: 1px; background: var(--teal); }
.hero-eyebrow-text { font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--teal); font-weight: 500; }
.hero-title { font-family: var(--font-display); font-size: clamp(48px,8vw,100px); font-weight: 300; line-height: 1.0; color: var(--white); margin-bottom: 28px; animation: slideUp 1s 0.5s both; }
.hero-title em { font-style: italic; color: var(--teal); }
.hero-title strong { font-weight: 700; display: block; }
.hero-sub { font-size: 18px; font-weight: 400; color: rgba(255,255,255,0.85); max-width: 520px; line-height: 1.75; margin-bottom: 40px; animation: slideUp 1s 0.7s both; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.hero-actions { display: flex; align-items: center; gap: 32px; animation: slideUp 1s 0.9s both; }
.hero-places-indicator { display: flex; align-items: center; gap: 12px; margin-top: 12px; animation: slideUp 1s 1.1s both; }
.hero-places-dots { display: flex; gap: 3px; align-items: center; }
.hero-places-dot { width: 9px; height: 9px; border-radius: 50%; }
.hero-places-dot--filled { background: var(--teal); opacity: 0.9; }
.hero-places-dot--empty { background: rgba(255,255,255,0.2); }
.hero-places-text { font-size: 15px; letter-spacing: 1px; color: rgba(255,255,255,0.5); }
.hero-places-text span { color: var(--teal); font-weight: 600; }
.btn-teal { display: inline-flex; align-items: center; gap: 12px; background: var(--teal); color: var(--graphite); font-size: 13px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; padding: 18px 40px; text-decoration: none; transition: all 0.3s; border-radius: 4px; }
.btn-teal:hover { background: var(--white); box-shadow: 0 16px 48px rgba(78,205,196,0.35); transform: translateY(-2px); }
.hero-date-badge { font-size: 16px; color: rgba(255,255,255,0.5); letter-spacing: 1px; }
.hero-date-badge span { color: var(--white); font-weight: 500; }
@keyframes slideUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }

/* No wave dividers — clean section transitions */

/* HOOK */
.hook { background: var(--graphite); padding: 100px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.hook-label { font-size: 12px; letter-spacing: 5px; text-transform: uppercase; color: var(--teal); font-weight: 600; margin-bottom: 24px; }
.hook-title { font-family: var(--font-display); font-size: clamp(32px,4vw,52px); font-weight: 300; line-height: 1.15; color: var(--white); margin-bottom: 32px; }
.hook-title em { font-style: normal; color: var(--teal); }
.hook-body { font-size: 18px; line-height: 1.85; color: rgba(255,255,255,0.65); margin-bottom: 40px; }
.hook-body p + p { margin-top: 16px; }
.hook-quote { border-left: 2px solid var(--teal); padding: 20px 28px; background: rgba(78,205,196,0.06); border-radius: 0 8px 8px 0; }
.hook-quote-text { font-family: var(--font-display); font-size: 18px; font-weight: 300; color: var(--white); line-height: 1.55; margin-bottom: 12px; }
.hook-quote-author { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); }
.hook-visual { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px; gap: 8px; }
.hook-img { overflow: hidden; border-radius: 4px; }
.hook-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.hook-img:hover img { transform: scale(1.05); }
.hook-img:nth-child(1) { grid-row: span 2; }

/* STATS — compact strip */
.stats { background: var(--teal); display: flex; justify-content: center; padding: 24px 40px; gap: 0; }
.stat { flex: 1; max-width: 200px; text-align: center; padding: 12px 20px; border-right: 1px solid rgba(30,42,53,0.15); }
.stat:last-child { border-right: none; }
.stat-n { font-family: var(--font-display); font-size: 36px; font-weight: 700; line-height: 1; color: var(--graphite); }
.stat-l { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(30,42,53,0.6); margin-top: 4px; }

/* SECTION COMMON */
.section-label { font-size: 13px; letter-spacing: 5px; text-transform: uppercase; color: var(--teal-dark); font-weight: 600; margin-bottom: 20px; }
.section-title { font-family: var(--font-display); font-size: clamp(28px,4vw,48px); font-weight: 300; line-height: 1.15; color: var(--graphite); margin-bottom: 20px; }
.section-title em { font-style: normal; color: var(--teal-dark); }
.section-body { font-size: 18px; line-height: 1.8; color: var(--graphite-light); }

/* ROUTE */
.route { background: var(--sand); padding: 100px 80px; }
.route-header { display: grid; grid-template-columns: 1fr 520px; gap: 80px; align-items: start; margin-bottom: 64px; }
.route-map-box { position: relative; overflow: hidden; border: 2px solid var(--teal); min-height: 280px; border-radius: 4px; }
.route-map-box img { width: 100%; height: 100%; display: block; object-fit: cover; }
.route-map-pill { position: absolute; top: 16px; left: 16px; background: var(--teal); color: var(--graphite); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 7px 16px; border-radius: 4px; }
.route-timeline { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.route-day { display: flex; gap: 20px; padding: 24px 0; border-top: 1px solid rgba(30,42,53,0.1); }
.route-day:first-child, .route-day:nth-child(2) { border-top: none; }
.rday-dot { flex-shrink: 0; margin-top: 4px; width: 28px; height: 28px; border: 1.5px solid var(--teal-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; color: var(--teal-dark); text-transform: uppercase; }
.rday-title { font-size: 18px; font-weight: 600; color: var(--graphite); margin-bottom: 4px; }
.rday-miles { font-size: 14px; color: var(--teal-dark); font-weight: 500; letter-spacing: 1px; margin-bottom: 6px; }
.rday-desc { font-size: 16px; color: var(--graphite-light); line-height: 1.7; }

/* EXPERIENCE */
.experience { background: var(--graphite); padding: 100px 80px; }
.exp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 56px; }
.exp-card { background: rgba(255,255,255,0.04); padding: 48px 36px; border-bottom: 2px solid transparent; transition: all 0.3s; }
.exp-card:hover { background: rgba(78,205,196,0.08); border-bottom-color: var(--teal); }
.exp-icon { width: 52px; height: 52px; border: 1px solid rgba(78,205,196,0.35); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.exp-icon svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.exp-title { font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--white); margin-bottom: 12px; }
.exp-body { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.6); }

/* EXCURSIONS */
.excursions { padding: 100px 80px; background: var(--sand); }
.exc-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 56px; }
.exc-note { font-size: 18px; line-height: 1.8; color: var(--graphite-light); }
.exc-grid-top { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; margin-bottom: 4px; }
.exc-grid-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.exc-card { position: relative; height: 420px; overflow: hidden; border-radius: 4px; }
.exc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
.exc-card:hover img { transform: scale(1.07); }
.exc-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,32,44,0.92) 0%, rgba(20,32,44,0.1) 55%); z-index: 1; }
.exc-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; z-index: 2; }
.exc-tag { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.exc-name { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--white); line-height: 1.15; margin-bottom: 10px; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.exc-desc { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.65; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }

/* YACHT */
.yacht { background: var(--white); padding: 100px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.yacht-img { position: relative; height: 560px; overflow: hidden; border-radius: 4px; }
.yacht-img img { width: 100%; height: 100%; object-fit: cover; }
.yacht-img-badge { position: absolute; bottom: 0; right: 0; background: var(--graphite); padding: 24px 28px; border-left: 3px solid var(--teal); border-radius: 4px 0 4px 0; }
.yacht-img-badge h4 { font-family: var(--font-display); font-size: 18px; font-weight: 400; color: var(--white); margin-bottom: 4px; }
.yacht-img-badge p { font-size: 11px; color: var(--teal); letter-spacing: 1.5px; text-transform: uppercase; }
.yacht-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.yacht-spec { border-bottom: 1.5px solid var(--teal-dark); padding: 20px 0; }
.yacht-spec-n { font-family: var(--font-display); font-size: 26px; color: var(--teal-dark); font-weight: 400; }
.yacht-spec-l { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--graphite-light); margin-top: 4px; }

/* YACHT INTERIOR */
.yacht-interior { background: var(--white); padding: 0 80px 80px; }
.yacht-interior-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-bottom: 4px; border-radius: 4px; overflow: hidden; }
.yacht-interior-photo { height: 340px; overflow: hidden; position: relative; }
.yacht-interior-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.yacht-interior-photo-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 24px; background: linear-gradient(to top, rgba(20,32,44,0.85), transparent); }
.yacht-interior-photo-tag { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); margin-bottom: 4px; }
.yacht-interior-photo-name { font-family: var(--font-display); font-size: 20px; color: white; font-weight: 300; }
.yacht-layout-wrap { background: var(--sand); padding: 40px 0 0; border-radius: 4px; overflow: hidden; }
.yacht-layout-header { text-align: center; padding: 0 0 28px; }
.yacht-layout-label { font-size: 12px; letter-spacing: 5px; text-transform: uppercase; color: var(--teal-dark); font-weight: 600; margin-bottom: 12px; }
.yacht-layout-title { font-family: var(--font-display); font-size: 26px; font-weight: 300; color: var(--graphite); margin-bottom: 4px; }
.yacht-layout-sub { font-size: 15px; color: var(--graphite-light); }
.yacht-layout-img-wrap { max-width: 800px; margin: 0 auto; padding: 0 40px 40px; }
.yacht-layout-img { width: 100%; display: block; border: 1px solid rgba(30,42,53,0.1); border-radius: 4px; }
.yacht-layout-stats { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(30,42,53,0.1); }
.yacht-layout-stat { padding: 24px; text-align: center; border-right: 1px solid rgba(30,42,53,0.1); }
.yacht-layout-stat:last-child { border-right: none; }
.yacht-layout-stat-n { font-family: var(--font-display); font-size: 26px; color: var(--teal-dark); font-weight: 400; }
.yacht-layout-stat-l { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--graphite-light); margin-top: 4px; }

/* GALLERY SLIDER */
.gallery-slider-section { background: var(--graphite); padding: 80px 0 60px; }
.gallery-slider-header { padding: 0 80px 48px; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.gallery-slider-sub { font-size: 16px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-top: 12px; max-width: 480px; }
.slider-controls { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.slider-btn { width: 48px; height: 48px; border: 1px solid rgba(78,205,196,0.4); background: transparent; color: var(--teal); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.25s; border-radius: 50%; }
.slider-btn:hover { background: var(--teal); color: var(--graphite); border-color: var(--teal); }
.slider-counter { font-size: 14px; color: rgba(255,255,255,0.4); font-family: var(--font-display); letter-spacing: 2px; min-width: 48px; text-align: center; }
.slider-counter span:first-child { color: var(--white); font-size: 20px; }
.slider-viewport { overflow: hidden; width: 100%; cursor: grab; user-select: none; }
.slider-viewport:active { cursor: grabbing; }
.slider-track { display: flex; gap: 8px; transition: transform 0.5s var(--ease); will-change: transform; }
.slider-slide { flex-shrink: 0; width: 60vw; max-width: 900px; height: 560px; overflow: hidden; background: #111d27; display: flex; align-items: center; justify-content: center; border-radius: 4px; }
.slider-slide img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; transition: transform 0.6s var(--ease); }
.slider-slide:hover img { transform: scale(1.02); }
.slider-dots { display: flex; gap: 8px; justify-content: center; padding: 32px 80px 0; }
.slider-dot { width: 24px; height: 3px; background: rgba(255,255,255,0.2); cursor: pointer; transition: all 0.3s; border-radius: 2px; }
.slider-dot.active { background: var(--teal); width: 40px; }

/* REVIEWS */
.reviews { background: var(--graphite); padding: 100px 80px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 56px; }
.review-card { background: rgba(255,255,255,0.04); padding: 52px 40px 40px; position: relative; transition: background 0.3s; border-radius: 4px; }
.review-card:hover { background: rgba(255,255,255,0.07); }
.review-card::before { content: "\201C"; position: absolute; top: 20px; left: 32px; font-family: var(--font-display); font-size: 72px; line-height: 1; color: var(--teal); opacity: 0.25; }
.review-text { font-family: var(--font-display); font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 32px; margin-top: 32px; }
.review-author { font-size: 13px; font-weight: 600; letter-spacing: 2px; color: var(--teal); text-transform: uppercase; }
.review-trip { font-size: 12px; color: rgba(255,255,255,0.28); margin-top: 4px; }

/* SKIPPER */
.skipper { background: var(--sand); padding: 100px 80px; display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: center; }
.skipper-photo-wrap { position: relative; }
.skipper-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 15%; display: block; border-radius: 4px; }
.skipper-photo-frame { position: absolute; top: 20px; left: 20px; right: -20px; bottom: -20px; border: 1.5px solid var(--teal-dark); z-index: -1; border-radius: 4px; }
.skipper-label { font-size: 12px; letter-spacing: 5px; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 24px; }
.skipper-quote { font-family: var(--font-display); font-size: clamp(18px,2.5vw,26px); font-weight: 300; color: var(--graphite); line-height: 1.5; margin-bottom: 36px; }
.skipper-quote::before { content: '\201C'; font-size: 60px; color: var(--teal-dark); line-height: 0; vertical-align: -28px; margin-right: 6px; }
.skipper-name { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--graphite); margin-bottom: 4px; }
.skipper-role { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 28px; }
.skipper-bio { font-size: 18px; line-height: 1.8; color: var(--graphite-light); }
.skipper-bio + .skipper-bio { margin-top: 16px; }
.skipper-creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.skipper-cred { display: flex; align-items: center; gap: 8px; border: 1px solid rgba(42,157,150,0.35); padding: 8px 16px; border-radius: 100px; font-size: 14px; color: var(--graphite-light); background: rgba(42,157,150,0.06); }
.skipper-cred svg { width: 16px; height: 16px; stroke: var(--teal-dark); fill: none; stroke-width: 2; flex-shrink: 0; }

/* BOARDING */
.boarding { padding: 100px 80px; background: var(--white); }
.boarding-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.boarding .section-label, .boarding .section-title { text-align: center; }
.boarding .section-title { margin: 0 auto 20px; }
.boarding-intro { font-size: 18px; line-height: 1.8; color: var(--graphite-light); margin-bottom: 56px; }
.boarding-deadline { background: rgba(78,205,196,0.08); border: 1px solid rgba(78,205,196,0.3); padding: 20px 28px; margin-bottom: 40px; display: flex; align-items: flex-start; gap: 16px; border-radius: 8px; text-align: left; }
.boarding-deadline-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: rgba(78,205,196,0.15); display: flex; align-items: center; justify-content: center; }
.boarding-deadline-icon svg { width: 20px; height: 20px; stroke: var(--teal-dark); fill: none; stroke-width: 2; }
.boarding-deadline-label { font-size: 14px; font-weight: 600; color: var(--teal-dark); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.boarding-deadline-text { font-size: 18px; color: var(--graphite-light); line-height: 1.75; }
.boarding-deadline-text strong { color: var(--graphite); }
.boarding-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; text-align: left; margin-bottom: 40px; }
.boarding-step { padding: 36px 28px; background: var(--sand); border-top: 2px solid var(--teal); border-radius: 0 0 4px 4px; }
.boarding-step-n { font-family: var(--font-display); font-size: 36px; font-weight: 300; color: var(--teal); line-height: 1; margin-bottom: 16px; }
.boarding-step h4 { font-size: 18px; font-weight: 600; color: var(--graphite); margin-bottom: 8px; }
.boarding-step p { font-size: 16px; color: var(--graphite-light); line-height: 1.7; }
.boarding-note { background: var(--graphite); padding: 32px 40px; display: flex; align-items: flex-start; gap: 20px; text-align: left; border-radius: 4px; }
.boarding-note-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: rgba(78,205,196,0.15); display: flex; align-items: center; justify-content: center; }
.boarding-note-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 2; }
.boarding-note-text { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.75); }
.boarding-note-text strong { color: var(--teal); font-weight: 500; }

/* FAQ — ACCORDION */
.faq { background: var(--sand); padding: 100px 80px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; margin-top: 56px; }
.faq-item { border-top: 1px solid rgba(30,42,53,0.12); }
.faq-q { font-family: var(--font-display); font-size: 16px; font-weight: 500; color: var(--graphite); padding: 24px 40px 24px 0; cursor: pointer; position: relative; display: block; transition: color 0.3s; }
.faq-q:hover { color: var(--teal-dark); }
.faq-q::after { content: ''; position: absolute; right: 0; top: 50%; width: 20px; height: 20px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%232A9D96' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center/contain no-repeat; transform: translateY(-50%); transition: transform 0.3s var(--ease); }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(180deg); }
.faq-a { font-size: 18px; line-height: 1.75; color: var(--graphite-light); max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.4s var(--ease); padding-bottom: 0; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; }

/* PRICE */
.price { background: var(--graphite); padding: 100px 80px; color: var(--white); }
.price-header { text-align: center; margin-bottom: 56px; }
.price-header .section-label { text-align: center; color: var(--teal); }
.price-header .section-title { color: var(--white); text-align: center; max-width: 560px; margin: 0 auto 16px; }
.price-header p { font-size: 15px; color: rgba(255,255,255,0.4); }
.price-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; max-width: 860px; margin: 0 auto 40px; }
.price-card { padding: 44px 32px; background: rgba(255,255,255,0.05); border-radius: 4px; }
.price-card.hl { background: var(--teal); }
.price-card.hl .price-l { color: rgba(30,42,53,0.6); }
.price-card.hl .price-n { color: var(--graphite); }
.price-card.hl .price-d { color: rgba(30,42,53,0.65); }
.price-card--service { background: rgba(255,255,255,0.07); border-left: 2px solid rgba(78,205,196,0.4); }
.price-l { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.price-n { font-family: var(--font-display); font-size: 36px; font-weight: 400; color: var(--white); line-height: 1; margin-bottom: 8px; }
.price-d { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.price-service-list { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.price-service-label { font-size: 13px; color: rgba(255,255,255,0.35); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.price-service-item { font-size: 15px; color: rgba(255,255,255,0.65); display: flex; gap: 8px; align-items: flex-start; }
.price-service-item svg { width: 14px; height: 14px; stroke: var(--teal); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.price-footer { max-width: 860px; margin: 0 auto; font-size: 16px; color: rgba(255,255,255,0.4); line-height: 1.8; text-align: center; }
.price-footer strong { color: rgba(255,255,255,0.65); font-size: 17px; display: block; margin-bottom: 12px; }
.price-footer-total { color: rgba(78,205,196,0.9); font-size: 18px; font-weight: 500; display: block; margin-top: 12px; }

/* CONTACT */
.contact { padding: 100px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-right { background: var(--sand); padding: 56px 48px; border-radius: 8px; }
.contact-links { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.contact-link { display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: var(--graphite); text-decoration: none; transition: all 0.3s; border-radius: 8px; }
.contact-link:hover { background: var(--teal); }
.contact-link:hover .cl-label, .contact-link:hover .cl-val { color: var(--graphite); }
.contact-link:hover .cl-icon svg { stroke: var(--graphite); }
.cl-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(78,205,196,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cl-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.3s; }
.cl-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 3px; }
.cl-val { font-size: 16px; font-weight: 500; color: var(--white); }

/* FOOTER */
footer { background: #111D27; padding: 36px 80px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(78,205,196,0.1); }
.footer-logo { height: 32px; width: auto; }
.footer-meta { font-size: 13px; color: rgba(255,255,255,0.25); letter-spacing: 1px; }
.footer-meta a { color: rgba(255,255,255,0.4); text-decoration: none; }

/* CTA BANNER */
.cta-banner { background: var(--teal); padding: 48px 80px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-banner--dark { background: var(--graphite); border-top: 2px solid var(--teal); }
.cta-banner-text h3 { font-family: var(--font-display); font-size: 24px; font-weight: 300; color: var(--graphite); margin-bottom: 6px; }
.cta-banner--dark .cta-banner-text h3 { color: var(--white); }
.cta-banner-text p { font-size: 16px; color: rgba(30,42,53,0.7); }
.cta-banner--dark .cta-banner-text p { color: rgba(255,255,255,0.5); }
.btn-dark { flex-shrink: 0; display: inline-flex; align-items: center; gap: 10px; background: var(--graphite); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: 16px 36px; text-decoration: none; transition: all 0.3s; white-space: nowrap; border-radius: 4px; }
.btn-dark:hover { background: var(--white); color: var(--graphite); }

/* FLOATING CTA */
.floating-cta { position: fixed; bottom: 28px; right: 28px; z-index: 300; display: flex; align-items: center; gap: 10px; background: var(--teal); color: var(--graphite); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 16px 28px; border-radius: 100px; text-decoration: none; box-shadow: 0 8px 32px rgba(78,205,196,0.5), 0 2px 8px rgba(0,0,0,0.15); transform: translateY(100px); opacity: 0; transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1); }
.floating-cta.visible { transform: translateY(0); opacity: 1; }
.floating-cta:hover { background: var(--white); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(78,205,196,0.4); }
.floating-cta-dot { width: 8px; height: 8px; background: var(--graphite); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.7; } }

/* SCROLL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal.delay-1 { transition-delay: 0.1s; } .reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; } .reveal.delay-4 { transition-delay: 0.45s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-48px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(48px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── COLLAPSIBLE TEXT — "Подробнее" ── */
.text-collapse { position: relative; max-height: 5.6em; overflow: hidden; transition: max-height 0.5s var(--ease); }
.text-collapse::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4em; background: linear-gradient(to top, var(--graphite) 10%, transparent 100%); pointer-events: none; transition: opacity 0.4s; }
.text-collapse.on-sand::after { background: linear-gradient(to top, var(--sand) 10%, transparent 100%); }
.text-collapse.on-white::after { background: linear-gradient(to top, var(--white) 10%, transparent 100%); }
.text-collapse.expanded { max-height: 2000px; }
.text-collapse.expanded::after { opacity: 0; }
.read-more-btn { display: inline-flex; align-items: center; gap: 6px; background: none; border: none; color: var(--teal); font-family: var(--font-body); font-size: 15px; font-weight: 500; cursor: pointer; padding: 12px 0; transition: color 0.2s; }
.read-more-btn:hover { color: var(--teal-dark); }
.read-more-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.3s var(--ease); }
.read-more-btn.expanded svg { transform: rotate(180deg); }

/* On dark background variant */
.text-collapse-dark::after { background: linear-gradient(to top, var(--graphite) 10%, transparent 100%); }
.read-more-btn-light { color: var(--teal); }

/* ── ENHANCED ANIMATIONS ── */
/* Stagger children within grids */
.exp-grid .exp-card { opacity: 0; transform: translateY(40px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), background 0.3s, border-bottom-color 0.3s; }
.exp-grid .exp-card:nth-child(1) { transition-delay: 0s; }
.exp-grid .exp-card:nth-child(2) { transition-delay: 0.1s; }
.exp-grid .exp-card:nth-child(3) { transition-delay: 0.2s; }
.exp-grid .exp-card:nth-child(4) { transition-delay: 0.3s; }
.exp-grid .exp-card:nth-child(5) { transition-delay: 0.35s; }
.exp-grid .exp-card:nth-child(6) { transition-delay: 0.4s; }
.exp-grid.animated .exp-card { opacity: 1; transform: translateY(0); }

/* Smooth scale-in for cards */
.exc-card { opacity: 0; transform: scale(0.95); transition: opacity 0.7s var(--ease), transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
.exc-card:nth-child(1) { transition-delay: 0s; }
.exc-card:nth-child(2) { transition-delay: 0.12s; }
.exc-card:nth-child(3) { transition-delay: 0.24s; }
.exc-card.animated { opacity: 1; transform: scale(1); }

/* Route days stagger */
.route-day { opacity: 0; transform: translateX(-24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.route-day.animated { opacity: 1; transform: translateX(0); }

/* Review cards stagger */
.review-card { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), background 0.3s; }
.review-card:nth-child(1) { transition-delay: 0s; }
.review-card:nth-child(2) { transition-delay: 0.15s; }
.review-card:nth-child(3) { transition-delay: 0.3s; }
.review-card.animated { opacity: 1; transform: translateY(0); }

/* Boarding steps stagger */
.boarding-step { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.boarding-step:nth-child(1) { transition-delay: 0s; }
.boarding-step:nth-child(2) { transition-delay: 0.12s; }
.boarding-step:nth-child(3) { transition-delay: 0.24s; }
.boarding-step.animated { opacity: 1; transform: translateY(0); }

/* Price cards stagger */
.price-card { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.price-card:nth-child(1) { transition-delay: 0s; }
.price-card:nth-child(2) { transition-delay: 0.12s; }
.price-card:nth-child(3) { transition-delay: 0.24s; }
.price-card.animated { opacity: 1; transform: translateY(0); }

/* Stat numbers counter-style appear */
.stat { opacity: 0; transform: translateY(16px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.stat:nth-child(1) { transition-delay: 0s; }
.stat:nth-child(2) { transition-delay: 0.08s; }
.stat:nth-child(3) { transition-delay: 0.16s; }
.stat:nth-child(4) { transition-delay: 0.24s; }
.stat.animated { opacity: 1; transform: translateY(0); }

/* Yacht specs stagger */
.yacht-spec { opacity: 0; transform: translateY(16px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.yacht-spec:nth-child(1) { transition-delay: 0s; }
.yacht-spec:nth-child(2) { transition-delay: 0.1s; }
.yacht-spec:nth-child(3) { transition-delay: 0.2s; }
.yacht-spec:nth-child(4) { transition-delay: 0.3s; }
.yacht-spec.animated { opacity: 1; transform: translateY(0); }

/* Hook images stagger */
.hook-img { opacity: 0; transform: scale(0.92); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.hook-img:nth-child(1) { transition-delay: 0.1s; }
.hook-img:nth-child(2) { transition-delay: 0.25s; }
.hook-img:nth-child(3) { transition-delay: 0.4s; }
.hook-img.animated { opacity: 1; transform: scale(1); }

/* FAQ items stagger */
.faq-item { opacity: 0; transform: translateY(16px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.faq-item.animated { opacity: 1; transform: translateY(0); }

/* ALWAYS HIDDEN */
.typical-day, .checklist-section, .urgency-bar { display: none !important; }


/* ═══ TABLET ═══ */
@media (max-width: 1024px) {
  nav { padding: 16px 24px; } nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .hero-content { padding: 0 32px 60px; }
  .hook,.route,.excursions,.experience,.yacht,.skipper,.boarding,.faq,.price,.contact,.reviews { padding: 60px 32px; }
  .hook { grid-template-columns: 1fr; gap: 48px; }
  .hook-visual { grid-template-rows: 180px 180px 180px; }
  .stats { flex-wrap: wrap; padding: 20px 24px; }
  .stat { min-width: 120px; }
  .route-header { grid-template-columns: 1fr; gap: 40px; }
  .route-timeline { grid-template-columns: 1fr; }
  .route-map-box { height: 260px; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .exc-intro { grid-template-columns: 1fr; gap: 20px; }
  .exc-grid-top,.exc-grid-bottom { grid-template-columns: 1fr; }
  .yacht { grid-template-columns: 1fr; gap: 40px; }
  .yacht-img { height: 380px; }
  .yacht-interior { padding: 0 32px 60px; }
  .yacht-interior-photos { grid-template-columns: 1fr; }
  .yacht-layout-stats { grid-template-columns: 1fr 1fr; }
  .gallery-slider-header { padding: 0 32px 36px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .slider-slide { width: 90vw; height: 320px; }
  .slider-dots { padding: 24px 32px 0; }
  .reviews-grid { grid-template-columns: 1fr; }
  .skipper { grid-template-columns: 1fr; gap: 40px; }
  .skipper-photo { aspect-ratio: 16/9; object-position: center 20%; }
  .skipper-photo-frame { display: none; }
  .boarding-steps { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: 1fr; max-width: 400px; }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .cta-banner { padding: 36px 32px; flex-direction: column; text-align: center; }
  footer { flex-direction: column; gap: 12px; text-align: center; padding: 28px 24px; }
  .floating-cta { bottom: 20px; right: 20px; padding: 13px 22px; }
}


/* ═══ MOBILE — крупный текст, скрытые лишние блоки ═══ */
@media (max-width: 640px) {
  body { font-size: 17px; }
  nav { padding: 14px 16px; } nav.scrolled { padding: 10px 16px; }
  .nav-logo-img { height: 28px; }
  .nav-name { font-size: 10px; letter-spacing: 2px; }

  .hero { min-height: 100svh; }
  .hero-content { padding: 0 20px 48px; }
  .hero-title { font-size: clamp(40px,12vw,64px); line-height: 1.05; }
  .hero-sub { font-size: 18px; line-height: 1.7; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .btn-teal { padding: 18px 32px; font-size: 13px; }
  .hero-date-badge { font-size: 16px; }
  .hero-places-text { font-size: 14px; }
  .hero-eyebrow-text { font-size: 12px; }

  .hook,.route,.excursions,.yacht,.skipper,.boarding,.faq,.price,.contact,.reviews { padding: 56px 20px; }

  /* BIG TEXT */
  .section-label { font-size: 12px; }
  .hook-title { font-size: 28px; line-height: 1.25; }
  .section-title { font-size: 24px; line-height: 1.25; }
  .hook-body,.section-body,.exc-note,.skipper-bio,.boarding-intro,.hook-quote-text { font-size: 18px !important; line-height: 1.75 !important; }
  .exc-desc,.rday-desc,.boarding-step p,.faq-a,.price-d,.price-footer,.exp-body,.boarding-note-text,.boarding-deadline-text,.review-text,.cta-banner-text p,.gallery-slider-sub { font-size: 16px !important; line-height: 1.7 !important; }
  .faq-q { font-size: 17px; }
  .rday-title { font-size: 17px; }
  .rday-miles { font-size: 13px; }
  .exc-name { font-size: 20px; }
  .exp-title { font-size: 18px; }
  .hook-quote-author,.review-author { font-size: 13px; }
  .review-trip { font-size: 12px; }
  .skipper-name { font-size: 20px; }
  .skipper-role { font-size: 13px; }
  .cl-val { font-size: 15px; }
  .cl-label { font-size: 11px; }
  .boarding-step h4 { font-size: 16px; }
  .boarding-step p { font-size: 16px !important; }
  .boarding-step-n { font-size: 30px; }
  .price-n { font-size: 30px; }
  .price-l { font-size: 11px; }
  .price-service-item { font-size: 13px; }
  .cta-banner-text h3 { font-size: 20px; }
  .exc-tag { font-size: 11px; }
  .stat-l { font-size: 11px; }

  /* Stats strip */
  .stats { padding: 16px 12px; gap: 0; flex-wrap: nowrap; }
  .stat { padding: 10px 6px; min-width: auto; }
  .stat-n { font-size: 26px; }

  .hook-visual { grid-template-columns: 1fr 1fr; grid-template-rows: 150px 150px; }
  .hook-visual .hook-img:nth-child(1) { grid-row: span 1; }
  .route-map-box { height: 200px; }
  .route-day { gap: 12px; }
  .rday-dot { width: 24px; height: 24px; font-size: 8px; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card { padding: 28px 20px; }
  .exc-card { height: 300px; }
  .yacht-img { height: 260px; }
  .yacht-img-badge { padding: 16px 20px; }
  .yacht-img-badge h4 { font-size: 16px; }
  .yacht-specs { grid-template-columns: 1fr 1fr; gap: 12px; }
  .yacht-interior { padding: 0 20px 48px; }
  .yacht-interior-photo { height: 240px; }
  .yacht-layout-stats { grid-template-columns: 1fr 1fr; }
  .yacht-layout-stat-n { font-size: 22px; }
  .gallery-slider-section { padding: 56px 0 40px; }
  .gallery-slider-header { padding: 0 20px 28px; }
  .slider-slide { width: 95vw; height: 260px; }
  .slider-dots { padding: 20px 20px 0; }
  .slider-btn { width: 44px; height: 44px; }
  .skipper-photo { aspect-ratio: 4/5; object-position: center top; }
  .skipper-quote { font-size: 20px; }
  .skipper-quote::before { font-size: 44px; vertical-align: -16px; }
  .boarding-step { padding: 24px 20px; }
  .boarding-note { flex-direction: column; gap: 12px; padding: 24px 20px; }
  .boarding-deadline { flex-direction: column; gap: 12px; }
  .price-cards { grid-template-columns: 1fr; max-width: 100%; }
  .price-card { padding: 32px 24px; }
  .contact-right { padding: 36px 24px; }
  .contact-links { gap: 12px; }
  .contact-link { padding: 16px 20px; }
  .cta-banner { padding: 28px 20px; }
  footer { padding: 24px 20px; gap: 10px; }
  .footer-meta { font-size: 12px; }
  .floating-cta { bottom: 16px; right: 16px; font-size: 11px; padding: 14px 20px; }
  .review-card { padding: 40px 24px 32px; }
  .review-card::before { font-size: 56px; left: 20px; }

  /* HIDE non-essential on mobile */
  .yacht-interior,
  .experience,
  .cta-banner,
  .reviews { display: none !important; }
}
