@import url("fonts.css");

/* ============================================================
   Plumbing only. Nothing here is a design decision — no colour,
   no typeface, no layout. Each site writes its own visual system
   on top; this file only carries the things that must be right
   on every site and are invisible when they are.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* A sideways-scrollable page drags position:fixed elements out of view on
     phones. Clip rather than scroll. (clip, not hidden: hidden would make html
     a scroll container and break scroll-padding and sticky.) */
  overflow-x: clip;
}

body { margin: 0; }
/* Lock scrolling on the ROOT, not on body. html already has overflow-x:clip,
   so overflow:hidden on body turns body into its own scroll container — a
   position:sticky header then sticks to body and is thrown off-screen (with
   its close button) when the menu opens after scrolling. site.js puts
   .is-locked on <html> directly; a :has() selector was tried first and its
   style invalidation visibly lagged behind the menu opening. */
html.is-locked { overflow: hidden; }
/* [hidden] must win. A rule like `.gallery-more { display:flex }` outranks the
   browser's own `[hidden] { display:none }`, which left an empty "Show 0 more"
   button on screen whenever a gallery had nothing further to reveal. */
[hidden] { display: none !important; }

img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; }
/* A <button> inherits the user agent's grey `buttonface` unless something says
   otherwise. An outline/ghost button that sets only border-color and color then
   renders as light-grey with (often white) text on it — invisible. Reset here;
   any variant that wants a fill sets one and wins on specificity. */
button { background: transparent; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

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

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Reveal-on-scroll. The JS failsafe shows everything if the observer
   never runs, so content can never be stranded invisible. */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease, ease), transform .7s var(--ease, ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

@media print {
  .site-header, .lightbox, .skip-link, .gallery-more, .filters, .map-consent, .callbar { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body { background: #fff !important; color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .75em; color: #555; }
}

/* =====================================================================
   Nireas Sailing — "sunlit deck"
   Deep ultramarine frame for the white logo (the brand's blue sail), warm
   sand pages, turquoise water accents, amber "Book now", wave dividers.
   Aleo (soft slab, close to the logo lettering) + Schibsted Grotesk.
   ===================================================================== */
:root {
  --deep: #0a1f4d;
  --deep-2: #12306b;
  --deep-3: #1b3f86;
  --azure: #1f6fff;
  --azure-ink: #1450c8;
  --turq: #17b5c0;
  --turq-soft: #dff4f3;
  --turq-light: #86e3e8;
  --sun: #ffb43f;
  --sun-2: #ffc766;
  --sand: #f6f1e8;
  --sand-2: #ece4d6;
  --white: #fffdf9;
  --ink: #13203a;
  --muted: #56627a;
  --teak: #8d5226;
  --line: #ddd4c4;
  --radius: 22px;
  --shadow: 0 1px 2px rgba(10, 31, 77, .06), 0 12px 34px -12px rgba(10, 31, 77, .22);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --display: "Aleo", Georgia, "Times New Roman", serif;
  --text: "Schibsted Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --header-h: 84px;
}

html { scroll-padding-top: calc(var(--header-h) + 16px); }
body { font: 400 1.0625rem/1.68 var(--text); color: var(--ink); background: var(--sand); -webkit-font-smoothing: antialiased; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.12; color: var(--deep); letter-spacing: -.01em; text-wrap: balance; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.28rem; }
a { color: var(--azure-ink); text-underline-offset: .2em; }
p { text-wrap: pretty; }
strong { font-weight: 600; }

.wrap { width: min(1200px, 100% - 2 * clamp(20px, 4vw, 40px)); margin-inline: auto; }
.narrow { max-width: 820px; }
.center { text-align: center; }
.muted { color: var(--muted); }

.ico { width: 1.2em; height: 1.2em; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; display: inline-block; vertical-align: middle; }

.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--sun); color: var(--deep); padding: .6rem 1rem; border-radius: 10px; font-weight: 600; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; }

/* ---------- Buttons & links ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; padding: .9rem 1.45rem; border-radius: 999px; font: 600 1rem/1.1 var(--text); text-decoration: none; border: 1.5px solid transparent; cursor: pointer; white-space: nowrap; transition: transform .25s var(--ease), background-color .25s, color .25s, border-color .25s, box-shadow .25s; }
.btn .ico { width: 1.1em; height: 1.1em; transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover .ico { transform: translateX(2px); }
.btn--sun { background: var(--sun); color: var(--deep); box-shadow: 0 10px 24px -10px rgba(255, 164, 40, .8); }
.btn--sun:hover { background: var(--sun-2); }
.btn--glass { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .42); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.btn--glass:hover { background: rgba(255, 255, 255, .22); }
.btn--deep { background: var(--deep); color: #fff; }
.btn--deep:hover { background: var(--deep-3); }
.btn--line { color: var(--deep); border-color: rgba(10, 31, 77, .35); }
.btn--line:hover { border-color: var(--deep); background: #fff; }
.btn--line-light { color: #fff; border-color: rgba(255, 255, 255, .45); }
.btn--line-light:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
.btn[disabled] { opacity: .6; cursor: progress; transform: none; }

.text-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--azure-ink); text-decoration: none; border-bottom: 1.5px solid rgba(20, 80, 200, .3); padding-bottom: 2px; transition: border-color .2s, gap .2s; }
.text-link:hover { border-color: var(--azure-ink); gap: .6rem; }

.kicker { display: flex; align-items: center; gap: .5rem; margin: 0 0 .9rem; font: 600 .78rem/1.3 var(--text); letter-spacing: .16em; text-transform: uppercase; color: var(--teak); }
.kicker .ico { color: var(--turq); width: 1.25em; height: 1.25em; }
.kicker--light { color: var(--turq-light); }
.kicker--light .ico { color: var(--sun); }
.lede { font-size: clamp(1.08rem, 1.5vw, 1.2rem); color: var(--muted); }

/* ---------- Header ---------- */
.site-header { position: fixed; inset: 0 0 auto; z-index: 50; transition: background-color .35s, box-shadow .35s; }
.site-header::before { content: ""; position: absolute; inset: 0 0 -30px; background: linear-gradient(180deg, rgba(6, 18, 46, .55), transparent); pointer-events: none; transition: opacity .35s; }
.site-header.is-stuck { background: rgba(10, 31, 77, .94); box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .6); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.site-header.is-stuck::before { opacity: 0; }
.header-inner { position: relative; display: flex; align-items: center; gap: 1.5rem; height: var(--header-h); }
.brand { display: block; flex-shrink: 0; margin-right: auto; }
.brand img { height: 52px; width: auto; }
.nav { display: flex; align-items: center; gap: .2rem; }
.nav a { color: rgba(255, 255, 255, .9); text-decoration: none; font-weight: 500; font-size: .98rem; padding: .5rem .8rem; border-radius: 999px; transition: background-color .2s, color .2s; }
.nav a:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.nav a[aria-current="page"] { color: #fff; background: rgba(255, 255, 255, .14); }
.nav .nav-book { display: none; }
.header-book { padding: .72rem 1.2rem; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1.5px solid rgba(255, 255, 255, .4); border-radius: 50%; cursor: pointer; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { position: absolute; left: 50%; width: 18px; height: 2px; margin-left: -9px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; left: 0; margin: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.is-open .nav-toggle span { background: transparent; }
.is-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.is-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1080px) { .nav a { padding: .5rem .55rem; font-size: .93rem; } .header-inner { gap: 1rem; } }
@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .brand img { height: 44px; }
  .nav-toggle { display: block; }
  .header-book { display: none; }
  .nav { position: fixed; inset: var(--header-h) 0 0; flex-direction: column; align-items: stretch; gap: .25rem; padding: 1.5rem clamp(20px, 5vw, 40px) 2rem; background: var(--deep); overflow-y: auto; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .3s, transform .3s var(--ease), visibility .3s; }
  .nav a { font: 600 1.5rem/1.2 var(--display); padding: .9rem .4rem; border-radius: 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
  .nav a[aria-current="page"] { background: none; color: var(--turq-light); }
  .nav .nav-book { display: flex; justify-content: center; margin-top: 1.5rem; border: 0; border-radius: 999px; background: var(--sun); color: var(--deep); font: 600 1.1rem/1 var(--text); padding: 1.05rem; }
  .is-open .nav { opacity: 1; visibility: visible; transform: none; }
  .site-header.is-open { background: var(--deep); }
  /* backdrop-filter makes the header the containing block of its position:fixed
     children, so once the header is "stuck" the full-screen menu would be sized
     to the 72px header instead of the viewport. No blur on small screens. */
  .site-header.is-stuck { -webkit-backdrop-filter: none; backdrop-filter: none; background: var(--deep); }
}

/* ---------- Waves ---------- */
.section, .page-head, .site-footer, .cta { position: relative; }
.wave { position: absolute; left: 0; width: 100%; height: clamp(22px, 3.8vw, 54px); pointer-events: none; display: block; }
.wave path { fill: currentColor; }
.wave--sand { bottom: -1px; color: var(--sand); }
.wave--white-top { bottom: calc(100% - 1px); color: var(--white); }
.wave--deep-top { bottom: calc(100% - 1px); color: var(--deep); }
.wave--deep { bottom: calc(100% - 1px); color: var(--deep); }

/* ---------- Sections ---------- */
.section { padding-block: clamp(64px, 9vw, 116px); }
.section--sand { background: var(--sand); }
.section--white { background: var(--white); }
.section--deep { background: var(--deep); color: rgba(255, 255, 255, .84); }
.section--deep h2, .section--deep h3 { color: #fff; }
.section--deep .lede { color: rgba(255, 255, 255, .8); }
.section-head { margin-bottom: clamp(28px, 4vw, 48px); max-width: 720px; }
.section-head h2 + .lede { margin-top: 1rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .kicker { justify-content: center; }
.two .section-head, .route-text .section-head { margin-bottom: 1.3rem; }
.split-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem 2rem; flex-wrap: wrap; margin-bottom: clamp(24px, 3.5vw, 40px); }
.two { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 80px); align-items: center; }
.two--wide-right { grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr); }
.two > *, .route > *, .intro-grid > *, .teaser-grid > *, .captain-grid > *, .contact-grid > *, .faq-layout > *, .todo-grid > * { min-width: 0; }
.small-head { font-size: 1.1rem; margin: 1.6rem 0 .8rem; }
[id] { scroll-margin-top: calc(var(--header-h) + 20px); }

/* ---------- Photo tiles ---------- */
.tile { display: block; position: relative; width: 100%; padding: 0; border: 0; border-radius: 16px; overflow: hidden; cursor: zoom-in; background: var(--deep-2); isolation: isolate; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .4s; }
.tile:hover img { transform: scale(1.045); }
.tile::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08); pointer-events: none; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(100svh, 940px); display: flex; flex-direction: column; justify-content: flex-end; color: #fff; background: var(--deep); overflow: hidden; }
.hero-slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity 1.4s ease; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.hero-slide.is-active { opacity: 1; }
.hero-slide.is-active img { animation: drift 14s ease-out forwards; }
@keyframes drift { from { transform: scale(1.1); } to { transform: scale(1.02); } }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6, 18, 46, .78) 0%, rgba(6, 18, 46, .45) 45%, rgba(6, 18, 46, .05) 75%), linear-gradient(0deg, rgba(6, 18, 46, .75), transparent 45%); pointer-events: none; }
.hero-inner { position: relative; z-index: 2; padding: calc(var(--header-h) + 64px) 0 clamp(40px, 6vw, 72px); }
.hero h1 { color: #fff; font-size: clamp(2.5rem, 6.2vw, 5rem); max-width: 13ch; line-height: 1.02; margin-bottom: 1.2rem; text-shadow: 0 2px 30px rgba(0, 0, 0, .25); }
.hero h1 span { display: block; font-weight: 500; font-style: italic; color: var(--turq-light); font-size: .62em; margin-top: .35em; line-height: 1.1; }
.hero-lede { max-width: 560px; font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: rgba(255, 255, 255, .9); margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-dots { position: absolute; z-index: 3; right: clamp(16px, 3vw, 40px); top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: .6rem; }
.hero-dots button { width: 12px; height: 12px; padding: 0; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .8); cursor: pointer; transition: background-color .3s, transform .3s; }
.hero-dots button[aria-current="true"] { background: var(--sun); border-color: var(--sun); transform: scale(1.2); }
.hero-facts { position: relative; z-index: 2; background: rgba(8, 24, 62, .62); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-top: 1px solid rgba(255, 255, 255, .14); }
.facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.facts p { display: flex; align-items: center; gap: .8rem; margin: 0; padding: 1.15rem 1rem; font-size: .92rem; line-height: 1.3; color: rgba(255, 255, 255, .78); }
.facts p + p { border-left: 1px solid rgba(255, 255, 255, .12); }
.facts .ico { width: 1.7em; height: 1.7em; color: var(--sun); }
.facts strong { display: block; color: #fff; font: 600 1.08rem/1.25 var(--display); }
@media (max-width: 900px) {
  .hero::after { background: linear-gradient(0deg, rgba(6, 18, 46, .9) 10%, rgba(6, 18, 46, .5) 55%, rgba(6, 18, 46, .3)); }
  .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .facts p:nth-child(3) { border-left: 0; }
  .facts p:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .12); }
  .hero-dots { top: auto; bottom: auto; transform: none; flex-direction: row; right: auto; left: clamp(20px, 4vw, 40px); top: calc(var(--header-h) + 22px); }
}
@media (max-width: 520px) { .facts p { padding: .9rem .6rem; gap: .55rem; font-size: .84rem; } .facts .ico { width: 1.4em; height: 1.4em; } .facts strong { font-size: .98rem; } .hero-actions .btn { flex: 1 1 100%; } }

/* ---------- Page head ---------- */
.page-head { background: radial-gradient(120% 90% at 85% 0%, var(--deep-3), var(--deep) 60%); color: #fff; padding: calc(var(--header-h) + clamp(56px, 8vw, 96px)) 0 clamp(84px, 11vw, 136px); overflow: hidden; }
.page-head-bg { position: absolute; inset: 0; }
.page-head-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-head--photo::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(6, 18, 46, .86), rgba(6, 18, 46, .55) 55%, rgba(6, 18, 46, .25)), linear-gradient(0deg, rgba(6, 18, 46, .45), transparent 50%); }
.page-head-inner { position: relative; z-index: 2; }
.page-head h1 { color: #fff; font-size: clamp(2.5rem, 5.6vw, 4.4rem); max-width: 16ch; margin-bottom: 1rem; }
.page-head .lede { color: rgba(255, 255, 255, .88); max-width: 620px; margin: 0; }
.page-head .kicker { color: var(--turq-light); }
.page-head .kicker .ico { color: var(--sun); }
.page-head .wave { z-index: 3; }

/* ---------- Home: intro ---------- */
.intro-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(36px, 6vw, 80px); align-items: center; }
.intro h2 { margin-bottom: 1.1rem; }
.pull { margin: 1.8rem 0 0; padding: .3rem 0 .3rem 1.3rem; border-left: 4px solid var(--turq); font: 500 italic clamp(1.25rem, 2vw, 1.5rem)/1.4 var(--display); color: var(--deep); }
.uses { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.use { position: relative; display: flex; flex-direction: column; gap: .55rem; padding: 1.5rem 1.4rem 1.6rem; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); color: var(--ink); text-decoration: none; transition: transform .35s var(--ease), box-shadow .35s; }
.use:hover { transform: translateY(-4px); box-shadow: 0 1px 2px rgba(10, 31, 77, .06), 0 22px 40px -16px rgba(10, 31, 77, .32); }
.use > .ico { width: 2.6rem; height: 2.6rem; padding: .55rem; border-radius: 14px; background: var(--turq-soft); color: #0e7f88; margin-bottom: .3rem; }
.use h3 { font-size: 1.15rem; }
.use p { font-size: .93rem; color: var(--muted); margin: 0; line-height: 1.5; }
.use-more { position: absolute; top: 1.4rem; right: 1.3rem; color: var(--azure-ink); opacity: .4; transition: opacity .25s, transform .25s var(--ease); }
.use:hover .use-more { opacity: 1; transform: translateX(3px); }

/* ---------- Home: experience bento ---------- */
.exp-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: 270px; gap: 16px; }
.exp { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--deep); }
.exp .tile { position: absolute; inset: 0; height: 100%; border-radius: 0; }
.exp--0 { grid-column: span 7; grid-row: span 2; }
.exp--1, .exp--2 { grid-column: span 5; }
.exp--3, .exp--4 { grid-column: span 6; }
.exp-body { position: absolute; inset: auto 0 0; z-index: 2; padding: 4.5rem 1.6rem 1.5rem; background: linear-gradient(0deg, rgba(6, 18, 46, .92) 0%, rgba(6, 18, 46, .7) 55%, transparent); color: rgba(255, 255, 255, .88); pointer-events: none; }
.exp-body .ico { width: 1.9rem; height: 1.9rem; color: var(--sun); margin-bottom: .5rem; }
.exp-body h3 { color: #fff; font-size: 1.4rem; margin-bottom: .35rem; }
.exp-body p { margin: 0; font-size: .95rem; line-height: 1.5; max-width: 46ch; }
.exp--0 .exp-body h3 { font-size: 1.9rem; }
@media (max-width: 900px) {
  .exp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 300px; }
  .exp--0 { grid-column: span 2; grid-row: auto; }
  .exp--1, .exp--2, .exp--3, .exp--4 { grid-column: span 1; }
}
@media (max-width: 600px) { .exp-grid { grid-template-columns: minmax(0, 1fr); grid-auto-rows: 330px; } .exp--0 { grid-column: auto; } .exp-body { padding: 4rem 1.2rem 1.2rem; } }

/* ---------- Home: yacht teaser ---------- */
.teaser-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(40px, 7vw, 96px); align-items: center; }
.teaser-photos { position: relative; aspect-ratio: 1 / .92; }
.teaser-photos .tile { position: absolute; border-radius: var(--radius); }
.teaser-a { inset: 0 18% 16% 0; width: auto; height: auto; }
.teaser-b { width: 50%; height: 46%; right: 0; bottom: 0; box-shadow: 0 0 0 8px var(--deep), 0 30px 50px -20px rgba(0, 0, 0, .6); }
.yacht-teaser h2 { margin-bottom: 1.1rem; }
.ticks { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem 1.2rem; margin: 1.6rem 0 2rem; }
.ticks li { display: flex; gap: .55rem; align-items: flex-start; line-height: 1.4; color: #fff; }
.ticks .ico { color: var(--turq-light); margin-top: .1em; }

/* ---------- Home: strip ---------- */
.strip { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px max(clamp(20px, 4vw, 40px), (100vw - 1200px) / 2) 18px; scroll-padding-inline: max(clamp(20px, 4vw, 40px), (100vw - 1200px) / 2); scrollbar-width: thin; scrollbar-color: var(--turq) transparent; }
.strip .tile { flex: 0 0 clamp(250px, 29vw, 370px); aspect-ratio: 4 / 3; height: auto; scroll-snap-align: start; border-radius: 18px; }
.strip .tile:nth-child(3n+2) { flex-basis: clamp(200px, 22vw, 280px); aspect-ratio: 3 / 3.4; align-self: end; }
.strip:focus-visible { outline-offset: -3px; }

/* ---------- Home: airport + to-do ---------- */
.airport { padding-block: clamp(52px, 7vw, 84px); }
.airport-grid { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: clamp(20px, 4vw, 44px); align-items: center; max-width: 900px; margin-inline: auto; }
.airport-icon { width: clamp(76px, 10vw, 104px); aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; background: var(--turq-soft); color: #0e7f88; }
.airport-icon .ico { width: 46%; height: 46%; }
.airport h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin-bottom: .5rem; }
.airport p { margin: 0; color: var(--muted); }
.todo-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(36px, 7vw, 90px); align-items: center; }
.todo { background: #fffef8 repeating-linear-gradient(180deg, transparent 0 39px, rgba(23, 181, 192, .22) 39px 40px); border-radius: 6px 6px 22px 6px; box-shadow: 0 30px 60px -30px rgba(10, 31, 77, .45), 0 2px 6px rgba(10, 31, 77, .08); padding: 2.2rem 2rem 2.4rem 2.4rem; rotate: -2deg; position: relative; border-left: 3px solid rgba(208, 90, 60, .35); }
.todo::before { content: ""; position: absolute; top: -14px; left: 50%; width: 110px; height: 30px; margin-left: -55px; background: rgba(255, 180, 63, .55); rotate: 3deg; }
.todo-title { font: 500 italic 1.55rem/1.2 var(--display); color: var(--deep); margin: 0 0 1.2rem; }
.todo ol { list-style: none; display: grid; gap: 1rem; }
.todo li { display: flex; gap: .9rem; align-items: center; font: 500 1.14rem/1.35 var(--display); color: var(--deep); }
.todo li:first-child { color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(23, 181, 192, .7); text-decoration-thickness: 2px; }
.box { flex: 0 0 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; background: var(--turq); color: #fff; }
.box .ico { width: 20px; height: 20px; stroke-width: 2.6; }
.box--empty { background: transparent; border: 2px solid var(--deep); }
.todo-section h2 { margin-bottom: .9rem; }
.todo-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }

/* ---------- CTA ---------- */
.cta { background: linear-gradient(120deg, var(--deep) 0%, var(--deep-2) 60%, #0d5a86 100%); color: rgba(255, 255, 255, .85); padding-block: clamp(56px, 8vw, 96px); overflow: hidden; }
.cta::before { content: ""; position: absolute; width: 520px; height: 520px; right: -140px; top: -220px; border-radius: 50%; background: radial-gradient(circle, rgba(23, 181, 192, .35), transparent 65%); pointer-events: none; }
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem 3rem; flex-wrap: wrap; }
.cta h2 { color: #fff; margin-bottom: .5rem; }
.cta p { margin: 0; max-width: 520px; font-size: 1.1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--deep); color: rgba(255, 255, 255, .72); font-size: .96rem; }
.cta + .site-footer .wave, main:has(> .cta:last-child) + .site-footer .wave { display: none; }
.footer-body { padding: clamp(40px, 6vw, 72px) 0 1.6rem; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(28px, 5vw, 64px); }
.footer-brand img { width: 170px; height: auto; margin-bottom: 1.1rem; }
.footer-brand p { max-width: 380px; }
.site-footer h2 { font: 600 .78rem/1.3 var(--text); letter-spacing: .16em; text-transform: uppercase; color: var(--turq-light); margin-bottom: 1rem; }
.footer-nav { display: flex; flex-direction: column; align-items: flex-start; gap: .45rem; }
.footer-nav a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.footer-nav a:hover { color: #fff; text-decoration: underline; }
.footer-contact { display: flex; flex-direction: column; gap: .6rem; }
.footer-link { display: flex; gap: .65rem; align-items: flex-start; margin: 0; color: rgba(255, 255, 255, .82); text-decoration: none; line-height: 1.45; overflow-wrap: anywhere; }
.footer-link .ico { color: var(--sun); margin-top: .1em; }
.footer-link a, a.footer-link:hover { color: #fff; }
.social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.social a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: #fff; border: 1px solid rgba(255, 255, 255, .25); transition: background-color .2s, border-color .2s; }
.social a:hover { background: rgba(255, 255, 255, .1); border-color: #fff; }
.social--light { flex-wrap: wrap; }
.social--light a { width: auto; height: auto; display: inline-flex; gap: .5rem; padding: .55rem 1rem; border-radius: 999px; text-decoration: none; font-weight: 500; font-size: .92rem; }
.colophon { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: clamp(32px, 5vw, 56px); padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .88rem; color: rgba(255, 255, 255, .6); }
.colophon a { color: rgba(255, 255, 255, .78); }

/* ---------- The yacht ---------- */
.crew-line { display: flex; gap: .7rem; align-items: center; padding: 1rem 1.2rem; border-radius: 16px; background: var(--white); box-shadow: var(--shadow); margin-top: 1.4rem; }
.crew-line .ico { width: 1.8rem; height: 1.8rem; color: var(--turq); }
.specs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.spec { display: flex; gap: .9rem; align-items: flex-start; padding: 1.3rem 1.2rem; background: var(--white); border-radius: 18px; box-shadow: var(--shadow); }
.spec .ico { width: 2.5rem; height: 2.5rem; padding: .5rem; border-radius: 12px; background: var(--turq-soft); color: #0e7f88; }
.spec strong { display: block; font: 600 1.06rem/1.25 var(--display); color: var(--deep); margin-bottom: .2rem; }
.spec span { display: block; font-size: .9rem; color: var(--muted); line-height: 1.4; }
.mosaic { display: grid; gap: 14px; }
.mosaic .tile { height: 100%; }
.mosaic--six { grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: clamp(150px, 17vw, 220px); }
.mosaic--six .tile:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.mosaic--six .tile:nth-child(n+4) { grid-column: span 2; }
.grid-photos { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: clamp(160px, 20vw, 280px); grid-auto-flow: dense; gap: 14px; }
.grid-photos .tile { height: 100%; }
.grid-photos .tile:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.grid-photos .tile:nth-child(6), .grid-photos .tile:nth-child(11) { grid-column: span 2; }
.captain-grid { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: clamp(40px, 7vw, 90px); align-items: center; }
.captain-photo { margin: 0 16px 16px 0; border-radius: var(--radius); overflow: hidden; box-shadow: 16px 16px 0 var(--turq); max-width: 380px; }
.captain-photo img { width: 100%; }
.captain h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); margin-bottom: .8rem; }

/* ---------- Destinations ---------- */
.jump { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; padding-top: clamp(28px, 4vw, 40px); }
.jump a { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1.1rem; border-radius: 999px; background: var(--white); color: var(--deep); text-decoration: none; font-weight: 600; font-size: .95rem; box-shadow: var(--shadow); transition: transform .2s var(--ease); }
.jump a:hover { transform: translateY(-2px); }
.jump .ico { color: var(--turq); }
#skiathos { padding-top: clamp(40px, 6vw, 64px); }
.route { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(36px, 6vw, 80px); align-items: start; }
.route--flip { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); align-items: center; }
.route-photos { position: sticky; top: calc(var(--header-h) + 20px); }
.stops { list-style: none; margin: 2rem 0 1.5rem; }
.stop { position: relative; display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 1.1rem; padding-bottom: 1.6rem; }
.stop::before { content: ""; position: absolute; left: 25px; top: 52px; bottom: 4px; border-left: 2px dashed rgba(23, 181, 192, .55); }
.stop:last-child::before { display: none; }
.stop-n { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--white); border: 2px solid var(--turq); color: var(--deep); font: 600 1.3rem/1 var(--display); box-shadow: 0 6px 16px -8px rgba(10, 31, 77, .35); }
.stop h3 { margin: .7rem 0 .35rem; font-size: 1.25rem; }
.stop p { margin: 0; color: var(--muted); }
.stops--light .stop-n { background: var(--deep-2); color: #fff; border-color: var(--turq-light); box-shadow: none; }
.stops--light .stop p { color: rgba(255, 255, 255, .78); }
.stops--light .stop::before { border-color: rgba(134, 227, 232, .4); }
.route-end { display: flex; gap: .7rem; align-items: flex-start; padding: 1.1rem 1.3rem; border-radius: 16px; background: var(--turq-soft); color: var(--deep); font-weight: 500; }
.route-end .ico { color: #0e7f88; margin-top: .15em; }
.mosaic--dest { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: clamp(130px, 14vw, 180px); }
.mosaic--dest .tile:nth-child(3n+1) { grid-column: span 2; grid-row: span 1; }
.mosaic--dest .tile:nth-child(3n+1) { grid-row: span 1; }
.wildlife { padding: clamp(28px, 4vw, 40px); border-radius: 26px; background: linear-gradient(160deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .03)); border: 1px solid rgba(255, 255, 255, .16); }
.wildlife h3 { font-size: 1.6rem; margin-bottom: .8rem; }
.wildlife-icons { display: flex; gap: .8rem; margin-top: 1.4rem; }
.wildlife-icons .ico { width: 3rem; height: 3rem; padding: .7rem; border-radius: 50%; background: rgba(134, 227, 232, .14); color: var(--turq-light); }
.center-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .8rem; }

/* ---------- What we offer ---------- */
.stats-section { padding-block: clamp(40px, 5vw, 64px) clamp(72px, 9vw, 110px); }
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); background: var(--white); border-radius: 26px; box-shadow: var(--shadow); padding: clamp(16px, 2.5vw, 28px) 0; }
.stats p { margin: 0; padding: .6rem clamp(12px, 2.5vw, 32px); text-align: center; }
.stats p + p { border-left: 1px solid var(--line); }
.stats strong { display: block; font: 600 clamp(2.4rem, 5vw, 3.6rem)/1 var(--display); color: var(--deep); }
.stats strong::after { content: ""; display: block; width: 28px; height: 3px; margin: .6rem auto .5rem; border-radius: 3px; background: var(--turq); }
.stats span { display: block; color: var(--muted); font-size: .95rem; line-height: 1.35; }
.reviews { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 18px; }
.review:first-child { grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between; }
.review { margin: 0; padding: clamp(24px, 3vw, 34px); background: var(--sand); border-radius: var(--radius); position: relative; }
.review:first-child { background: var(--deep); color: rgba(255, 255, 255, .86); }
.quote-mark { width: 2.4rem; height: 2.4rem; fill: var(--turq); stroke: none; margin-bottom: .8rem; }
.review blockquote { margin: 0 0 1.3rem; }
.review blockquote p { font-size: .98rem; line-height: 1.62; }
.review:first-child blockquote p { font: 500 italic 1.12rem/1.6 var(--display); }
.review figcaption { display: flex; flex-direction: column; gap: .1rem; font-size: .9rem; color: var(--muted); }
.review:first-child figcaption { color: rgba(255, 255, 255, .7); }
.review figcaption strong { color: var(--deep); font-size: 1rem; }
.review:first-child figcaption strong { color: #fff; }
.stars { display: flex; gap: 2px; margin-bottom: .35rem; }
.stars .ico { width: 1rem; height: 1rem; fill: var(--sun); stroke: none; }
.badge { display: inline-flex; align-items: center; gap: .5rem; padding: .55rem 1rem; border-radius: 999px; background: var(--turq-soft); color: var(--deep); font-weight: 600; margin-top: .6rem; }
.badge .ico { color: #0e7f88; }
.food-photos { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); grid-template-rows: repeat(2, clamp(150px, 16vw, 220px)); gap: 14px; }
.food-photos .tile { height: 100%; }
.food-photos .tile:first-child { grid-row: span 2; }
.courses { list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; counter-reset: c; }
.course { position: relative; padding: 1.6rem 1.4rem 1.7rem; border-radius: var(--radius); background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .13); }
.course::before { content: ""; position: absolute; top: 0; left: 1.4rem; right: 1.4rem; height: 3px; border-radius: 0 0 3px 3px; background: var(--sun); }
.course-n { display: block; font: 500 italic 1.5rem/1.2 var(--display); color: var(--turq-light); margin-bottom: .6rem; }
.course p { margin: 0; font-size: .96rem; line-height: 1.55; }
.menu-notes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px 32px; margin-top: clamp(28px, 4vw, 44px); padding-top: clamp(24px, 3vw, 32px); border-top: 1px solid rgba(255, 255, 255, .14); }
.menu-notes p { display: flex; gap: .7rem; align-items: flex-start; margin: 0; font-size: .96rem; }
.menu-notes .ico { color: var(--sun); margin-top: .15em; }
.menu-notes strong { color: #fff; }
.onboard { list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.onboard li { display: flex; gap: .8rem; align-items: center; padding: .95rem 1rem; background: var(--white); border-radius: 14px; box-shadow: 0 1px 2px rgba(10, 31, 77, .05); line-height: 1.3; font-size: .96rem; }
.onboard .ico { width: 2.2rem; height: 2.2rem; padding: .45rem; border-radius: 10px; background: var(--turq-soft); color: #0e7f88; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; }
.chips li { padding: .5rem .95rem; border-radius: 999px; background: var(--white); border: 1px solid var(--line); font-size: .93rem; line-height: 1.2; }
.section--white .chips li { background: var(--sand); border-color: transparent; }
.linen { display: grid; gap: 14px; }
.linen-card { padding: 1.4rem 1.5rem; border-radius: 18px; background: var(--sand); }
.linen-card h3 { display: flex; gap: .6rem; align-items: center; font-size: 1.15rem; margin-bottom: .45rem; }
.linen-card h3 .ico { color: var(--turq); }
.linen-card p { margin: 0; color: var(--muted); }
.guarantee { display: flex; gap: .6rem; align-items: center; margin: .4rem 0 0; font: 500 italic 1.12rem/1.4 var(--display); color: var(--deep); }
.guarantee .ico { color: var(--turq); width: 1.6rem; height: 1.6rem; }

/* ---------- Gallery ---------- */
.gallery-section { padding-top: clamp(40px, 5vw, 60px); }
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: clamp(24px, 3.5vw, 36px); }
.filter { display: inline-flex; align-items: center; gap: .45rem; padding: .6rem 1.05rem; border-radius: 999px; background: var(--white); border: 1.5px solid var(--line); color: var(--deep); font-weight: 600; font-size: .95rem; cursor: pointer; transition: background-color .2s, border-color .2s, color .2s; }
.filter small { font-size: .78rem; font-weight: 600; padding: .1rem .45rem; border-radius: 999px; background: var(--sand-2); color: var(--muted); }
.filter:hover { border-color: var(--deep); }
.filter[aria-pressed="true"] { background: var(--deep); border-color: var(--deep); color: #fff; }
.filter[aria-pressed="true"] small { background: var(--sun); color: var(--deep); }
.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.gallery .tile { aspect-ratio: 4 / 3; height: auto; border-radius: 14px; }
.gallery .tile.is-entering { animation: rise .5s var(--ease) both; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.gallery-more { display: flex; justify-content: center; margin-top: clamp(24px, 3.5vw, 40px); }

/* ---------- FAQ ---------- */
.faq-layout { display: grid; grid-template-columns: minmax(0, 290px) minmax(0, 1fr); gap: clamp(32px, 5vw, 64px); align-items: start; }
.faq-aside { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 18px; }
.faq-nav { display: flex; flex-direction: column; gap: .3rem; padding: .8rem; border-radius: 20px; background: var(--white); box-shadow: var(--shadow); }
.faq-nav a { padding: .65rem .9rem; border-radius: 12px; color: var(--deep); text-decoration: none; font-weight: 600; transition: background-color .2s; }
.faq-nav a:hover { background: var(--turq-soft); }
.ask { padding: 1.5rem; border-radius: 20px; background: var(--deep); color: rgba(255, 255, 255, .8); }
.ask h2 { color: #fff; font-size: 1.3rem; margin-bottom: .4rem; }
.ask p { font-size: .94rem; }
.ask-phone { display: flex; gap: .55rem; align-items: center; color: #fff; text-decoration: none; font-weight: 600; padding: .3rem 0; }
.ask-phone .ico { color: var(--sun); }
.ask .btn { margin-top: 1rem; width: 100%; background: var(--sun); color: var(--deep); }
.faq-group + .faq-group { margin-top: clamp(36px, 5vw, 56px); }
.faq-group h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); margin-bottom: 1.1rem; }
.faq { background: var(--white); border-radius: 16px; margin-bottom: 10px; box-shadow: 0 1px 2px rgba(10, 31, 77, .05); transition: box-shadow .25s; }
.faq[open] { box-shadow: var(--shadow); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 1.3rem; cursor: pointer; list-style: none; font: 600 1.1rem/1.35 var(--display); color: var(--deep); }
.faq summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; flex: 0 0 30px; height: 30px; border-radius: 50%; background: var(--turq-soft); transition: background-color .25s, transform .3s var(--ease); }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; margin: -1px 0 0 -6px; background: var(--deep); border-radius: 2px; }
.faq-plus::after { transform: rotate(90deg); transition: transform .3s var(--ease); }
.faq[open] .faq-plus { background: var(--sun); transform: rotate(180deg); }
.faq[open] .faq-plus::after { transform: rotate(0); }
.faq-a { padding: 0 1.3rem 1.25rem; color: var(--muted); }
.faq-a ul, .faq-a ol { padding-left: 1.2rem; margin: 0 0 1em; }
.faq-a li { margin-bottom: .25rem; }
.faq-a strong { color: var(--deep); }
.policy { counter-reset: p; list-style: none; padding: 0 !important; }
.policy li { position: relative; padding: .55rem 0 .55rem 2.3rem; border-bottom: 1px solid var(--line); }
.policy li:last-child { border-bottom: 0; }
.policy li::before { counter-increment: p; content: counter(p, lower-roman); position: absolute; left: 0; top: .55rem; width: 1.7rem; height: 1.7rem; border-radius: 50%; display: grid; place-items: center; background: var(--sand); font: 600 .78rem/1.7rem var(--text); color: var(--deep); text-align: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: clamp(20px, 3vw, 32px); align-items: start; }
.form-card { padding: clamp(24px, 4vw, 44px); background: var(--white); border-radius: 26px; box-shadow: var(--shadow); }
.form-card h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: .5rem; }
.form-card > .muted { margin-bottom: 1.6rem; }
.cf { display: grid; gap: 1.1rem; }
.cf-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field span { font-weight: 600; font-size: .93rem; color: var(--deep); }
.field input, .field textarea { font: inherit; font-size: 1rem; width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 12px; background: var(--sand); color: var(--ink); transition: border-color .2s, background-color .2s, box-shadow .2s; }
.field textarea { resize: vertical; min-height: 10rem; }
.field input::placeholder, .field textarea::placeholder { color: #7b8497; }
.field input:hover, .field textarea:hover { border-color: #c5bba7; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--azure); background: #fff; box-shadow: 0 0 0 4px rgba(31, 111, 255, .15); }
.cf-consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .93rem; color: var(--muted); line-height: 1.45; }
.cf-consent input { width: 20px; height: 20px; margin: .1rem 0 0; accent-color: var(--deep); flex-shrink: 0; }
.cf-hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.cf-turnstile { min-height: 65px; }
.cf-send { justify-self: start; padding-inline: 1.8rem; }
.cf-status { min-height: 1.5em; margin: 0; font-weight: 600; }
.cf-status[data-kind="ok"] { color: #13704a; }
.cf-status[data-kind="error"] { color: #b3261e; }
.cf-status[data-kind="busy"] { color: var(--muted); }
.cf-noscript { margin-top: 1rem; color: #b3261e; }
.info-card { padding: clamp(24px, 3.5vw, 40px); border-radius: 26px; background: var(--deep); color: rgba(255, 255, 255, .8); position: sticky; top: calc(var(--header-h) + 24px); overflow: hidden; }
.info-card::after { content: ""; position: absolute; width: 300px; height: 300px; right: -120px; bottom: -140px; border-radius: 50%; background: radial-gradient(circle, rgba(23, 181, 192, .3), transparent 65%); pointer-events: none; }
.info-card h2 { color: #fff; font-size: 1.9rem; margin-bottom: 1.1rem; }
.info-phones { display: grid; gap: .4rem; }
.info-phone { display: flex; align-items: center; gap: .7rem; color: #fff; text-decoration: none; font: 600 1.22rem/1.3 var(--display); padding: .35rem 0; }
.info-phone .ico { width: 2.1rem; height: 2.1rem; padding: .45rem; border-radius: 50%; background: rgba(255, 180, 63, .16); color: var(--sun); }
.info-phone:hover span { text-decoration: underline; }
.info-mail { display: flex; align-items: center; gap: .7rem; margin: .5rem 0 0; overflow-wrap: anywhere; }
.info-mail .ico { width: 2.1rem; height: 2.1rem; padding: .45rem; border-radius: 50%; background: rgba(134, 227, 232, .14); color: var(--turq-light); }
.info-mail a { color: var(--turq-light); font-weight: 600; font-size: 1.05rem; }
.info-block { margin-top: 1.3rem; padding-top: 1.2rem; border-top: 1px solid rgba(255, 255, 255, .14); }
.info-block h3 { display: flex; gap: .5rem; align-items: center; color: #fff; font-size: 1.08rem; margin-bottom: .35rem; }
.info-block h3 .ico { color: var(--sun); }
.info-block p { margin: 0; font-size: .96rem; }
.info-card .social { position: relative; z-index: 1; margin-top: 1.5rem; }
.map-frame { position: relative; aspect-ratio: 4 / 3.3; border-radius: var(--radius); overflow: hidden; background: linear-gradient(145deg, var(--deep-2), var(--deep)); box-shadow: var(--shadow); }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-consent { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .8rem; padding: 2rem; text-align: center; color: rgba(255, 255, 255, .82); }
.map-consent > .ico { width: 3rem; height: 3rem; color: var(--sun); }
.map-consent p { margin: 0; }
.map-consent a { color: var(--turq-light); }
.map-consent .btn { background: var(--sun); color: var(--deep); }

/* ---------- Prose ---------- */
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 1.75rem); margin: 2.2rem 0 .7rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: #3c475d; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; background: rgba(4, 12, 32, .95); opacity: 0; transition: opacity .26s; }
.lightbox.is-open { display: block; }
.lightbox.is-visible { opacity: 1; }
.lb-stage { position: absolute; inset: 0; display: grid; place-items: center; padding: 64px 72px 72px; }
.lb-figure { margin: 0; display: grid; justify-items: center; gap: .8rem; max-width: 100%; max-height: 100%; }
.lb-img { max-width: min(1400px, 100%); max-height: calc(100vh - 170px); width: auto; height: auto; border-radius: 10px; object-fit: contain; transition: opacity .25s; }
.lb-img.is-loading { opacity: .35; }
.lb-caption { color: rgba(255, 255, 255, .86); font-size: .96rem; text-align: center; max-width: 60ch; }
.lb-counter { position: absolute; top: 20px; left: 24px; margin: 0; color: rgba(255, 255, 255, .7); font-size: .9rem; font-variant-numeric: tabular-nums; }
.lb-btn { position: absolute; width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .25); display: grid; place-items: center; cursor: pointer; color: #fff; background: rgba(255, 255, 255, .06); transition: background-color .2s; }
.lb-btn:hover { background: rgba(255, 255, 255, .18); }
.lb-btn svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lb-btn[disabled] { opacity: .3; cursor: default; }
.lb-prev { left: 14px; top: 50%; margin-top: -25px; }
.lb-next { right: 14px; top: 50%; margin-top: -25px; }
.lb-close { top: 12px; right: 14px; }
@media (max-width: 700px) { .lb-stage { padding: 60px 8px 96px; } .lb-prev, .lb-next { top: auto; bottom: 20px; margin: 0; } .lb-prev { left: calc(50% - 62px); } .lb-next { right: calc(50% - 62px); } }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .courses { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .onboard { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .reviews { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .review:first-child { grid-column: span 2; }
  .faq-layout { grid-template-columns: minmax(0, 1fr); }
  .faq-aside { position: static; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .faq-nav { flex-direction: row; flex-wrap: wrap; align-content: flex-start; }
}
@media (max-width: 900px) {
  .two, .two--wide-right, .intro-grid, .teaser-grid, .captain-grid, .route, .route--flip, .contact-grid, .todo-grid { grid-template-columns: minmax(0, 1fr); }
  .route-photos, .info-card { position: static; }
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .footer-brand { grid-column: span 2; }
  .menu-notes { grid-template-columns: minmax(0, 1fr); }
  .captain-photo { max-width: 320px; }
  .todo { max-width: 460px; justify-self: center; width: 100%; }
}
@media (max-width: 680px) {
  body { font-size: 1rem; }
  .uses, .specs, .ticks { grid-template-columns: minmax(0, 1fr); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0; }
  .stats p { padding: 1.2rem .6rem; }
  .stats p:nth-child(3) { border-left: 0; }
  .stats p:nth-child(n+3) { border-top: 1px solid var(--line); }
  .reviews { grid-template-columns: minmax(0, 1fr); }
  .review:first-child { grid-column: auto; }
  .courses, .onboard { grid-template-columns: minmax(0, 1fr); }
  .onboard { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .onboard li { flex-direction: column; align-items: flex-start; gap: .5rem; font-size: .9rem; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .gallery .tile { border-radius: 10px; }
  .mosaic--six { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 42vw; }
  .mosaic--six .tile:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .mosaic--six .tile:nth-child(n+4) { grid-column: span 1; }
  .mosaic--six .tile:nth-child(6) { grid-column: span 2; }
  .grid-photos { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 40vw; gap: 10px; }
  .grid-photos .tile:nth-child(1) { grid-row: span 1; }
  .mosaic--dest { grid-auto-rows: 36vw; }
  .food-photos { grid-template-rows: repeat(2, 38vw); }
  .cf-row { grid-template-columns: minmax(0, 1fr); }
  .cf-send { justify-self: stretch; }
  .faq-aside { grid-template-columns: minmax(0, 1fr); }
  .faq summary { font-size: 1.02rem; padding: 1rem 1.05rem; }
  .faq-a { padding: 0 1.05rem 1.1rem; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-brand { grid-column: auto; }
  .airport-grid { grid-template-columns: minmax(0, 1fr); text-align: center; justify-items: center; }
  .cta-actions .btn { flex: 1 1 100%; }
  .teaser-photos { aspect-ratio: 1 / 1; }
}
