:root {
  --ocean-950: #032b3f;
  --ocean-900: #073c55;
  --ocean-800: #07556d;
  --cyan-600: #00a8bc;
  --cyan-400: #35d4d7;
  --turquoise: #11b6a2;
  --green: #21865f;
  --gold: #e6b85c;
  --gold-soft: #f6d995;
  --ink: #17333e;
  --muted: #607984;
  --paper: #ffffff;
  --mist: #f3faf9;
  --line: #dceae9;
  --shadow-sm: 0 10px 34px rgba(3, 43, 63, .08);
  --shadow-lg: 0 28px 70px rgba(3, 43, 63, .16);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --container: 1200px;
  --transition: 180ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, "Segoe UI", "Noto Sans Sinhala", system-ui, -apple-system, sans-serif; line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", "Noto Serif Sinhala", serif; letter-spacing: -.025em; line-height: 1.08; }
h1 { font-size: clamp(2.65rem, 6vw, 5.9rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.65rem); }
h3 { font-size: 1.4rem; }
p { color: var(--muted); }
::selection { color: var(--ocean-950); background: var(--gold-soft); }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(76px, 9vw, 130px) 0; }
.section-tint { background: var(--mist); }
.eyebrow { margin-bottom: 18px; color: var(--cyan-600); font-size: .76rem; font-weight: 800; letter-spacing: .17em; line-height: 1.4; text-transform: uppercase; }
.eyebrow.light { color: var(--gold-soft); }
.lead { max-width: 760px; font-size: clamp(1.06rem, 1.5vw, 1.3rem); }
.large-copy { color: var(--ink); font-family: Georgia, "Times New Roman", "Noto Serif Sinhala", serif; font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.6; }
.fine-print { margin-top: 28px; font-size: .83rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 999; padding: 10px 14px; border-radius: 8px; color: white; background: var(--ocean-950); transform: translateY(-160%); transition: transform var(--transition); }
.skip-link:focus { transform: translateY(0); }

#site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(220,234,233,.85); background: rgba(255,255,255,.92); box-shadow: 0 8px 32px rgba(3,43,63,.04); backdrop-filter: blur(18px); }
.nav-shell { width: min(1320px, calc(100% - 32px)); min-height: 78px; margin-inline: auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-logo-wrap { width: 70px; height: 55px; display: grid; place-items: center; color: var(--gold); }
.brand-logo { width: 100%; height: 100%; object-fit: contain; }
.brand-monogram { width: 45px; height: 45px; place-items: center; border: 1px solid rgba(230,184,92,.55); border-radius: 50%; font-family: Georgia, serif; font-size: .78rem; letter-spacing: .08em; background: linear-gradient(145deg, var(--ocean-900), var(--ocean-950)); box-shadow: 0 7px 20px rgba(3,43,63,.15); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { max-width: 190px; color: var(--ocean-950); font-family: Georgia, "Times New Roman", "Noto Serif Sinhala", serif; font-size: 1rem; }
.brand-copy small { margin-top: 6px; color: var(--cyan-600); font-size: .61rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: clamp(13px, 1.6vw, 28px); }
.primary-nav a { position: relative; padding: 29px 0 24px; color: #49646f; font-size: .83rem; font-weight: 700; white-space: nowrap; }
.primary-nav a::after { position: absolute; right: 0; bottom: 18px; left: 0; height: 2px; border-radius: 2px; content: ""; background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform var(--transition); }
.primary-nav a:hover, .primary-nav a.active { color: var(--ocean-950); }
.primary-nav a:hover::after, .primary-nav a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.language-picker select { max-width: 140px; min-height: 40px; padding: 0 29px 0 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: #fff; font-size: .78rem; font-weight: 700; }
.menu-button { display: none; width: 43px; height: 43px; border: 1px solid var(--line); border-radius: 50%; color: var(--ocean-900); background: #fff; font-size: 1.25rem; }

.button { min-height: 50px; padding: 13px 23px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid transparent; border-radius: 999px; font-size: .86rem; font-weight: 800; letter-spacing: .015em; transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition); }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible, select:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid rgba(53,212,215,.45); outline-offset: 3px; }
.button-sm { min-height: 42px; padding: 10px 17px; font-size: .77rem; }
.button-gold { color: var(--ocean-950); background: linear-gradient(135deg, var(--gold-soft), var(--gold)); box-shadow: 0 11px 25px rgba(230,184,92,.25); }
.button-gold:hover { box-shadow: 0 14px 30px rgba(230,184,92,.38); }
.button-ocean { color: white; background: linear-gradient(135deg, var(--ocean-800), var(--ocean-950)); box-shadow: 0 13px 28px rgba(3,43,63,.18); }
.button-outline { border-color: var(--line); color: var(--ocean-900); background: white; }
.button-outline:hover { border-color: var(--cyan-400); background: var(--mist); }
.button-glass { border-color: rgba(255,255,255,.38); color: white; background: rgba(255,255,255,.11); backdrop-filter: blur(10px); }
.button-glass:hover { background: rgba(255,255,255,.2); }
.button-whatsapp { color: white; background: #128c7e; box-shadow: 0 13px 28px rgba(18,140,126,.2); }
.button-wide { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ocean-800); font-size: .84rem; font-weight: 850; }
.text-link:hover { color: var(--cyan-600); }

.hero { position: relative; min-height: min(850px, calc(100vh - 78px)); display: flex; align-items: center; isolation: isolate; color: white; background: var(--ocean-950) var(--hero-image) center/cover no-repeat; overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(3,34,50,.94) 0%, rgba(3,43,63,.75) 48%, rgba(3,43,63,.18) 85%), linear-gradient(0deg, rgba(3,43,63,.5), transparent 45%); }
.hero::after { position: absolute; inset: auto 0 0; z-index: -1; height: 170px; content: ""; background: linear-gradient(transparent, rgba(3,43,63,.55)); }
.hero-content { padding: 115px 0 130px; }
.hero h1 { max-width: 800px; margin-bottom: 26px; text-wrap: balance; }
.hero-text { max-width: 720px; margin-bottom: 35px; color: rgba(255,255,255,.84); font-size: clamp(1.05rem, 1.7vw, 1.32rem); }
.hero-actions, .cta-actions, .about-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 13px; }
.trust-row { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 13px; }
.trust-row span { padding: 9px 13px; border: 1px solid rgba(255,255,255,.19); border-radius: 999px; color: rgba(255,255,255,.86); background: rgba(3,43,63,.28); font-size: .75rem; font-weight: 700; backdrop-filter: blur(8px); }
.hero-orbit { position: absolute; z-index: -1; border: 1px solid rgba(53,212,215,.28); border-radius: 50%; }
.orbit-one { width: 500px; height: 500px; right: -180px; top: -210px; }
.orbit-two { width: 300px; height: 300px; right: 10%; bottom: -220px; }
.hero-scroll { position: absolute; right: 36px; bottom: 34px; width: 1px; height: 75px; background: rgba(255,255,255,.3); }
.hero-scroll span { position: absolute; top: 0; left: -1px; width: 3px; height: 24px; border-radius: 3px; background: var(--gold); animation: scrollPulse 2.2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { transform: translateY(0); opacity: .3; } 50% { transform: translateY(48px); opacity: 1; } }

.section-heading { max-width: 750px; margin-bottom: 46px; }
.section-heading h2 { margin-bottom: 18px; color: var(--ocean-950); }
.section-heading > p:last-child { max-width: 680px; font-size: 1.05rem; }
.split-heading { display: grid; grid-template-columns: 1.45fr .85fr; align-items: end; gap: 70px; }
.split-heading .section-heading { margin-bottom: 0; }
.split-heading blockquote { margin: 0 0 8px; padding: 24px 0 24px 26px; border-left: 3px solid var(--gold); color: var(--ocean-900); font-family: Georgia, "Times New Roman", "Noto Serif Sinhala", serif; font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.45; }
.feature-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { min-height: 230px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); transition: transform var(--transition), border var(--transition); }
.feature-card:hover { border-color: rgba(0,168,188,.38); transform: translateY(-5px); }
.feature-icon { width: 51px; height: 51px; margin-bottom: 24px; display: grid; place-items: center; border-radius: 16px; background: var(--mist); font-size: 1.35rem; }
.feature-card h3 { margin-bottom: 11px; color: var(--ocean-900); }
.feature-card p { margin-bottom: 0; font-size: .9rem; }

.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tour-card { min-width: 0; border: 1px solid rgba(220,234,233,.9); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.tour-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-7px); }
.image-frame { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--ocean-900), var(--cyan-600)); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms ease; }
.tour-card:hover .image-frame img, .destination-card:hover .image-frame img { transform: scale(1.045); }
.tour-card-image { height: 245px; }
.image-wash { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,43,63,.25), transparent 58%); }
.tour-card-body { padding: 25px; }
.tour-title-row { display: flex; align-items: flex-start; gap: 11px; }
.tour-title-row h3 { margin-bottom: 13px; color: var(--ocean-950); font-size: 1.48rem; }
.tour-icon { flex: 0 0 auto; font-size: 1.22rem; }
.tour-card-body > p { min-height: 76px; margin-bottom: 18px; font-size: .87rem; }
.tour-facts { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tour-facts div:last-child { grid-column: 1 / -1; }
.tour-facts div { padding: 10px 12px; border-radius: 11px; background: var(--mist); }
.tour-facts dt { color: var(--muted); font-size: .64rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.tour-facts dd { margin: 2px 0 0; color: var(--ocean-900); font-size: .79rem; font-weight: 800; }
.tour-price { position: relative; margin-top: 18px; padding: 18px; border: 1px solid rgba(230,184,92,.35); border-radius: 14px; background: #fffaf0; }
.tour-price .discount-badge { display: inline-flex; padding: 4px 8px; border-radius: 999px; color: #fff; background: #b16b19; font-size: .62rem; font-weight: 900; letter-spacing: .06em; }
.price-values { margin: 9px 0 4px; display: flex; align-items: baseline; gap: 10px; }
.price-values del { color: #87979c; font-size: .92rem; }
.price-values strong { color: var(--ocean-950); font-family: Georgia, "Times New Roman", "Noto Serif Sinhala", serif; font-size: 1.75rem; line-height: 1; }
.tour-price small { display: block; color: var(--muted); font-size: .7rem; font-weight: 750; letter-spacing: 0; line-height: 1.4; text-transform: none; }
.tour-price.compact { margin-top: 16px; padding: 14px; }
.tour-price.compact .price-values { margin-top: 7px; }
.tour-price.compact .price-values strong { font-size: 1.45rem; }
.tour-warning { min-height: auto !important; margin: 14px 0 0 !important; color: #9b671d !important; font-size: .73rem !important; font-weight: 800; }
.card-actions { margin-top: 23px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.center-action { margin-top: 45px; text-align: center; }

.next-ship-section { padding: 42px 0; color: white; background: linear-gradient(115deg, var(--ocean-950), #075f72); }
.next-ship-card { display: grid; grid-template-columns: auto minmax(270px, 1fr) auto minmax(230px, auto); align-items: center; gap: 28px; }
.next-ship-icon { width: 72px; height: 72px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.17); border-radius: 22px; color: var(--gold-soft); background: rgba(255,255,255,.06); font-size: 2rem; }
.next-ship-main .eyebrow { margin-bottom: 8px; color: var(--cyan-400); }
.next-ship-main h2 { margin-bottom: 12px; color: white; font-size: clamp(1.55rem, 2.5vw, 2.55rem); }
.ship-name-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; }
.ship-name-row strong { color: var(--gold-soft); font-size: 1.02rem; }
.ship-name-row span { color: rgba(255,255,255,.72); font-size: .86rem; }
.ship-times { margin: 0; display: flex; gap: 12px; }
.ship-times div { min-width: 92px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; background: rgba(255,255,255,.06); }
.ship-times dt { color: var(--cyan-400); font-size: .61rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.ship-times dd { margin: 2px 0 0; color: white; font-size: 1.07rem; font-weight: 850; }
.next-ship-actions { display: grid; justify-items: start; gap: 10px; }
.next-ship-actions .text-link { color: rgba(255,255,255,.72); font-size: .73rem; }
.next-ship-actions .text-link:hover { color: var(--gold-soft); }
.ship-schedule-note { grid-column: 2 / -1; margin: -10px 0 0; color: rgba(255,255,255,.56); font-size: .7rem; }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.why-card { min-height: 250px; padding: 36px 28px; border-right: 1px solid var(--line); background: white; }
.why-card:last-child { border-right: 0; }
.why-card > span { font-size: 1.7rem; }
.why-card h3 { margin: 28px 0 12px; color: var(--ocean-950); }
.why-card p { margin: 0; font-size: .88rem; }

.safety-section { position: relative; color: white; background: radial-gradient(circle at 70% 25%, rgba(0,168,188,.23), transparent 32%), linear-gradient(135deg, var(--ocean-950), #064f62); overflow: hidden; }
.safety-section .section-heading h2, .safety-section .section-heading p, .safety-section .fine-print { color: white; }
.safety-grid { display: grid; grid-template-columns: 1fr .86fr; align-items: center; gap: 80px; }
.check-list { margin: 0; padding: 0; display: grid; gap: 15px; list-style: none; }
.check-list li { position: relative; padding-left: 34px; color: inherit; }
.check-list li::before { position: absolute; left: 0; top: .2em; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; content: "✓"; color: var(--ocean-950); background: var(--gold); font-size: .7rem; font-weight: 900; }
.check-list.columns { grid-template-columns: 1fr 1fr; color: var(--ink); }
.safety-art { position: relative; min-height: 380px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; background: radial-gradient(circle, rgba(53,212,215,.13), transparent 67%); }
.safety-art::before, .safety-art::after { position: absolute; inset: 11%; border: 1px dashed rgba(255,255,255,.17); border-radius: 50%; content: ""; }
.safety-art::after { inset: 25%; }
.safety-art .ship { position: absolute; top: 24%; left: 26%; color: var(--gold-soft); font-size: 4rem; transform: rotate(-12deg); }
.route-line { position: absolute; width: 43%; height: 43%; border-right: 2px dashed rgba(246,217,149,.75); border-bottom: 2px dashed rgba(246,217,149,.75); border-radius: 0 0 50% 0; transform: rotate(28deg); }
.port-dot { position: absolute; right: 25%; bottom: 28%; width: 13px; height: 13px; border: 3px solid white; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 8px rgba(230,184,92,.14); }
.safety-art strong { align-self: end; margin-bottom: 63px; color: white; font-family: Georgia, serif; letter-spacing: .14em; }
.safety-art small { position: absolute; bottom: 40px; color: var(--cyan-400); letter-spacing: .17em; }

.cta-band { padding: 65px 0; color: white; background: linear-gradient(105deg, #086b7a, var(--ocean-950)); }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.cta-band h2 { margin-bottom: 10px; font-size: clamp(2rem, 3.6vw, 3.3rem); }
.cta-band p { max-width: 690px; margin-bottom: 0; color: rgba(255,255,255,.76); }
.cta-actions { flex: 0 0 auto; }

.page-hero { position: relative; padding: clamp(95px, 11vw, 165px) 0 clamp(75px, 9vw, 125px); color: white; background: radial-gradient(circle at 75% 0, rgba(53,212,215,.23), transparent 34%), linear-gradient(130deg, var(--ocean-950), #075f72); overflow: hidden; }
.page-hero::after { position: absolute; right: -110px; bottom: -170px; width: 420px; height: 420px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; content: ""; box-shadow: 0 0 0 65px rgba(255,255,255,.025), 0 0 0 130px rgba(255,255,255,.018); }
.page-hero.compact { padding-top: 80px; padding-bottom: 85px; }
.page-hero h1 { max-width: 950px; margin-bottom: 25px; font-size: clamp(2.6rem, 5vw, 5.2rem); }
.page-hero .lead { color: rgba(255,255,255,.78); }

.destination-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.destination-card { display: grid; grid-template-columns: .88fr 1.12fr; min-height: 320px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); overflow: hidden; }
.destination-card .image-frame { min-height: 100%; }
.destination-copy { padding: 33px; }
.destination-copy > span { font-size: 1.4rem; }
.destination-copy h2 { margin: 13px 0; color: var(--ocean-950); font-size: 1.8rem; }
.destination-copy p { font-size: .88rem; }

.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; }
.about-actions { margin-top: 40px; }
.values-stack { border-top: 1px solid var(--line); }
.value-line { padding: 26px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 52px 1fr; gap: 18px; }
.value-line > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 15px; background: var(--mist); }
.value-line h2 { margin-bottom: 6px; color: var(--ocean-900); font-size: 1.35rem; }
.value-line p { margin-bottom: 0; font-size: .86rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 18px; }
.gallery-item { position: relative; margin: 0; border-radius: var(--radius); background: var(--ocean-900); box-shadow: var(--shadow-sm); overflow: hidden; }
.gallery-item.item-1, .gallery-item.item-5 { grid-column: span 2; }
.gallery-item.item-2 { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after { position: absolute; inset: 45% 0 0; content: ""; background: linear-gradient(transparent, rgba(3,43,63,.83)); }
.gallery-item figcaption { position: absolute; right: 19px; bottom: 17px; left: 19px; z-index: 1; display: flex; align-items: center; gap: 9px; color: white; font-family: Georgia, "Times New Roman", "Noto Serif Sinhala", serif; font-size: 1.08rem; }

.faq-layout { display: grid; grid-template-columns: 1fr 350px; align-items: start; gap: 70px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 25px 0; display: flex; justify-content: space-between; gap: 20px; color: var(--ocean-950); font-family: Georgia, "Times New Roman", "Noto Serif Sinhala", serif; font-size: 1.25rem; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--cyan-600); transition: transform var(--transition); }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 800px; padding: 0 36px 25px 0; margin: 0; }
.faq-aside { position: sticky; top: 110px; padding: 34px; border-radius: var(--radius); color: white; background: linear-gradient(145deg, var(--ocean-800), var(--ocean-950)); box-shadow: var(--shadow-lg); }
.faq-aside > span { color: var(--gold); font-size: 2rem; }
.faq-aside h2 { margin: 24px 0 14px; font-size: 2rem; }
.faq-aside p { color: rgba(255,255,255,.75); }

.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.contact-card { min-width: 0; min-height: 190px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column; background: white; box-shadow: var(--shadow-sm); }
a.contact-card:hover { border-color: var(--cyan-400); transform: translateY(-4px); }
.contact-card span { font-size: 1.6rem; }
.contact-card small { margin: auto 0 8px; color: var(--muted); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-card strong { color: var(--ocean-900); overflow-wrap: anywhere; }
.booking-panel { display: grid; grid-template-columns: .72fr 1.28fr; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-lg); overflow: hidden; }
.booking-intro { padding: clamp(35px, 5vw, 65px); color: white; background: radial-gradient(circle at 10% 85%, rgba(53,212,215,.22), transparent 28%), linear-gradient(145deg, var(--ocean-800), var(--ocean-950)); }
.booking-intro h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
.booking-intro > p { color: rgba(255,255,255,.75); }
.booking-help { margin-top: 42px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.16); display: flex; gap: 15px; }
.booking-help span { font-size: 1.7rem; }
.booking-help strong { color: var(--gold-soft); }
.booking-help p { margin: 4px 0 0; color: rgba(255,255,255,.66); font-size: .78rem; }
.booking-form { padding: clamp(30px, 4vw, 55px); display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--ink); font-size: .76rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid #cfe0df; border-radius: 12px; color: var(--ink); background: white; outline: none; transition: border var(--transition), box-shadow var(--transition); }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan-600); box-shadow: 0 0 0 4px rgba(0,168,188,.1); }
.form-status { min-height: 23px; margin-bottom: 8px; font-size: .8rem; }
.form-status.error { color: #a13d34; }
.form-status.success { color: var(--green); }
.map-placeholder { min-height: 320px; padding: 55px; border: 1px dashed #b9d7d5; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; gap: 30px; background: radial-gradient(circle at 25% 25%, rgba(53,212,215,.18), transparent 25%), var(--mist); text-align: left; }
.map-pin { width: 100px; height: 100px; display: grid; place-items: center; border: 1px solid rgba(0,168,188,.25); border-radius: 50%; color: var(--cyan-600); background: white; font-size: 3rem; box-shadow: var(--shadow-sm); }
.map-placeholder h2 { margin-bottom: 5px; color: var(--ocean-950); }

.tour-hero { position: relative; min-height: 720px; display: flex; align-items: end; color: white; background: var(--ocean-950); overflow: hidden; }
.tour-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tour-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,34,50,.93), rgba(3,43,63,.5) 58%, rgba(3,43,63,.14)), linear-gradient(0deg, rgba(3,43,63,.84), transparent 55%); }
.tour-hero .container { position: relative; z-index: 1; padding-top: 90px; padding-bottom: 90px; }
.back-link { position: absolute; top: 48px; left: 0; color: rgba(255,255,255,.78); font-size: .82rem; font-weight: 800; }
.tour-hero-copy { max-width: 840px; }
.tour-hero-icon { font-size: 2.8rem; }
.tour-hero h1 { margin: 10px 0 20px; font-size: clamp(3rem, 6vw, 5.8rem); }
.tour-hero-copy > p:not(.eyebrow) { max-width: 720px; color: rgba(255,255,255,.8); font-size: 1.12rem; }
.tour-fact-bar { color: white; background: var(--ocean-900); }
.tour-fact-bar .container { min-height: 120px; display: grid; grid-template-columns: .65fr .8fr 1fr 1.5fr; align-items: stretch; }
.tour-fact-bar .container > div { padding: 25px 26px; border-right: 1px solid rgba(255,255,255,.12); display: flex; flex-direction: column; justify-content: center; }
.tour-fact-bar .container > div:first-child { border-left: 1px solid rgba(255,255,255,.12); }
.tour-fact-bar small { margin-bottom: 5px; color: var(--cyan-400); font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.tour-fact-bar strong { line-height: 1.3; }
.tour-fact-bar .tour-price { margin: 0; padding: 0; border: 0; background: transparent; }
.tour-fact-bar .tour-price .discount-badge { color: var(--ocean-950); background: var(--gold); }
.tour-fact-bar .tour-price .price-values strong { color: white; }
.tour-fact-bar .tour-price .price-values del { color: rgba(255,255,255,.58); }
.tour-fact-bar .tour-price small { color: rgba(255,255,255,.7); }
.tour-detail-grid { display: grid; grid-template-columns: 1fr 360px; align-items: start; gap: 80px; }
.tour-detail-main > section { margin-bottom: 80px; }
.tour-detail-main h2 { color: var(--ocean-950); }
.timeline { margin-top: 38px; }
.timeline > div { position: relative; min-height: 100px; padding: 0 0 30px 70px; border-left: 1px solid var(--line); }
.timeline > div:last-child { border-left-color: transparent; }
.timeline span { position: absolute; left: -24px; top: -5px; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--cyan-600); background: white; font-size: .72rem; font-weight: 900; }
.timeline p { margin: 0; color: var(--ink); font-size: 1rem; }
.timing-callout { padding: 34px; border: 1px solid rgba(230,184,92,.45); border-radius: var(--radius); display: grid; grid-template-columns: 50px 1fr; gap: 16px; background: #fffaf0; }
.timing-callout > span { font-size: 1.8rem; }
.timing-callout h2 { margin-bottom: 10px; font-size: 1.65rem; }
.timing-callout p { margin-bottom: 11px; }
.timing-callout strong { color: #895d1d; }
.detail-list { margin-bottom: 20px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
.detail-list h2 { margin-bottom: 18px; color: var(--ocean-950); font-size: 1.5rem; }
.detail-list ul { margin: 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.detail-list li { position: relative; padding-left: 23px; color: var(--muted); font-size: .86rem; }
.detail-list li::before { position: absolute; left: 0; color: var(--turquoise); content: "✓"; font-weight: 900; }
.sticky-book { position: sticky; top: 110px; padding: 28px; border-radius: var(--radius); color: white; background: linear-gradient(145deg, var(--ocean-800), var(--ocean-950)); box-shadow: var(--shadow-lg); }
.sticky-book p { margin-bottom: 4px; color: var(--cyan-400); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.sticky-book .tour-price { margin: 10px 0 22px; border-color: rgba(255,255,255,.13); background: rgba(255,255,255,.07); }
.sticky-book .tour-price .price-values strong { color: white; }
.sticky-book .tour-price .price-values del { color: rgba(255,255,255,.58); }
.sticky-book .tour-price small { color: rgba(255,255,255,.72); }

.credits-list { display: grid; grid-template-columns: 1fr 340px; align-items: start; gap: 70px; }
.credits-list ul { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.credits-list li { padding: 20px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 25px; }
.credits-list li a { color: var(--cyan-600); font-size: .84rem; text-align: right; }
.credits-note { padding: 30px; border-radius: var(--radius); background: var(--mist); }
.credits-note h2 { color: var(--ocean-950); font-size: 1.5rem; }

#site-footer { color: white; background: #032532; }
.footer-main { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; padding: 75px 0 55px; display: grid; grid-template-columns: 1.6fr .7fr 1fr; gap: 80px; }
.footer-brand .brand-copy strong { color: white; }
.footer-brand > p { max-width: 390px; margin: 23px 0 0; color: rgba(255,255,255,.58); }
.footer-main h2 { margin: 8px 0 20px; color: var(--gold-soft); font-family: inherit; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: grid; gap: 11px; }
.footer-links a, .footer-links span { color: rgba(255,255,255,.67); font-size: .84rem; overflow-wrap: anywhere; }
.footer-links a:hover { color: var(--cyan-400); }
.footer-bottom { padding: 20px max(20px, calc((100% - var(--container)) / 2)); border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 30px; color: rgba(255,255,255,.42); font-size: .7rem; }
.footer-bottom a { color: var(--gold-soft); }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 90; min-height: 50px; padding: 11px 17px; border: 2px solid white; border-radius: 999px; display: flex; align-items: center; gap: 8px; color: white; background: #128c7e; box-shadow: 0 16px 35px rgba(3,43,63,.25); font-size: .76rem; font-weight: 850; transition: transform var(--transition); }
.floating-whatsapp:hover { transform: translateY(-3px); }
.floating-whatsapp > span:first-child { font-size: 1.2rem; }

@media (max-width: 1120px) {
  .nav-shell { grid-template-columns: auto auto 1fr; }
  .menu-button { display: grid; place-items: center; order: 3; justify-self: end; }
  .nav-actions { order: 2; justify-self: end; }
  .primary-nav { position: absolute; top: 78px; right: 16px; left: 16px; padding: 16px; border: 1px solid var(--line); border-radius: 0 0 20px 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: white; box-shadow: var(--shadow-lg); }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 12px 15px; border-radius: 10px; }
  .primary-nav a::after { display: none; }
  .primary-nav a:hover, .primary-nav a.active { background: var(--mist); }
  .tour-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card:nth-child(2) { border-right: 0; }
  .why-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .destination-card { grid-template-columns: 1fr; }
  .destination-card .image-frame { min-height: 240px; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .next-ship-card { grid-template-columns: auto 1fr; }
  .ship-times, .next-ship-actions, .ship-schedule-note { grid-column: 2; }
}

@media (max-width: 820px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .nav-shell { width: calc(100% - 22px); min-height: 70px; grid-template-columns: 1fr auto auto; gap: 8px; }
  .brand-copy strong { max-width: 175px; font-size: .9rem; }
  .brand-copy small { font-size: .53rem; }
  .brand-logo-wrap { width: 60px; height: 47px; }
  .nav-actions { display: flex; order: initial; }
  .nav-actions .button { display: none; }
  .language-picker select { max-width: 116px; min-height: 38px; padding-left: 9px; font-size: .7rem; }
  .menu-button { order: initial; }
  .primary-nav { top: 70px; }
  .hero { min-height: 720px; }
  .hero-content { padding: 95px 0 110px; }
  .hero-scroll { display: none; }
  .trust-row { margin-top: 30px; }
  .split-heading, .safety-grid, .about-grid, .booking-panel, .tour-detail-grid, .credits-list { grid-template-columns: 1fr; gap: 45px; }
  .split-heading blockquote { margin-top: 25px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .next-ship-card { grid-template-columns: 1fr; }
  .next-ship-icon { display: none; }
  .ship-times, .next-ship-actions, .ship-schedule-note { grid-column: 1; }
  .destination-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 230px; }
  .gallery-item.item-1, .gallery-item.item-5 { grid-column: span 1; }
  .gallery-item.item-2 { grid-row: span 1; }
  .faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .faq-aside { position: static; }
  .booking-intro { min-height: 360px; }
  .map-placeholder { padding: 35px; }
  .tour-fact-bar .container { grid-template-columns: 1fr 1fr; }
  .tour-fact-bar .container > div:nth-child(odd) { border-left: 1px solid rgba(255,255,255,.12); }
  .tour-fact-bar .container > div { border-bottom: 1px solid rgba(255,255,255,.12); }
  .tour-detail-aside { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .sticky-book { position: static; grid-column: 1 / -1; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 45px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .cta-band .container { align-items: flex-start; flex-direction: column; }
  .cta-actions { flex: auto; }
}

@media (max-width: 480px) { .brand-copy { display: none; } }

@media (max-width: 600px) {
  .section { padding: 72px 0; }
  h1 { font-size: clamp(2.5rem, 13vw, 4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero { min-height: 760px; background-position: 58% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(3,34,50,.94), rgba(3,43,63,.69)), linear-gradient(0deg, rgba(3,43,63,.65), transparent); }
  .hero-actions, .cta-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button, .cta-actions .button { width: 100%; }
  .trust-row { display: grid; }
  .feature-grid, .tour-grid, .why-grid, .contact-cards, .booking-form, .tour-detail-aside, .check-list.columns { grid-template-columns: 1fr; }
  .ship-times { width: 100%; }
  .ship-times div { flex: 1; }
  .feature-card { min-height: 0; }
  .tour-card-body > p { min-height: 0; }
  .why-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .why-card:last-child { border-bottom: 0; }
  .card-actions { align-items: stretch; flex-direction: column; }
  .card-actions .button { width: 100%; }
  .destination-copy { padding: 26px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .booking-intro { min-height: 0; }
  .booking-form { padding: 25px 20px; }
  .map-placeholder { align-items: flex-start; flex-direction: column; }
  .map-pin { width: 76px; height: 76px; font-size: 2.3rem; }
  .tour-hero { min-height: 720px; }
  .tour-hero-shade { background: linear-gradient(0deg, rgba(3,34,50,.95), rgba(3,43,63,.58) 80%, rgba(3,43,63,.35)); }
  .tour-hero .container { padding-top: 100px; padding-bottom: 65px; }
  .back-link { top: 34px; left: 0; }
  .tour-fact-bar .container { width: 100%; }
  .tour-fact-bar .container > div { padding: 20px; }
  .timeline > div { padding-left: 45px; }
  .timing-callout { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .floating-whatsapp { width: 52px; height: 52px; padding: 0; justify-content: center; }
  .floating-whatsapp > span:last-child { display: none; }
  .credits-list li { align-items: flex-start; flex-direction: column; gap: 5px; }
  .credits-list li a { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
