@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; }
}

/* ============================================================
   Sailing in Skiathos with Lady Mary — "logbook & chart"
   ------------------------------------------------------------
   Navy and foam teal straight from the logo, chart-paper sand,
   rope-brass for the route. The day at sea is drawn as a route:
   10:00 departure, numbered stops, 17:00 back in port.
   Libre Caslon Display (display) + Instrument Sans (text).
   ============================================================ */

:root {
  --navy: #053951;
  --navy-2: #042c3f;
  --navy-3: #0a4863;
  --foam: #a1d7d9;
  --sand: #f6f1e7;
  --sand-2: #ece3d2;
  --paper: #fffdf8;
  --ink: #10232e;
  --muted: #4b5f6a;
  --line: #ddd3c1;
  --sea: #0a667c;
  --brass: #8a5a1c;
  --rope: #d39b45;
  --r: 14px;
  --ease: cubic-bezier(.2,.75,.25,1);
  --wrap: 1180px;
  --display: "Libre Caslon Display", "Didot", Georgia, serif;
  --text: "Instrument Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
}

html { background: var(--sand); scroll-padding-top: 90px; }
body { background: var(--sand); color: var(--ink); font: 400 clamp(1rem, .97rem + .15vw, 1.08rem)/1.7 var(--text); -webkit-font-smoothing: antialiased; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.05; letter-spacing: -.005em; color: var(--ink); }
h1 { font-size: clamp(3rem, 1.8rem + 5vw, 6rem); }
h2 { font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.6rem); margin-bottom: .9rem; }
h3 { font-size: clamp(1.45rem, 1.25rem + .6vw, 1.85rem); margin-bottom: .4rem; }
h1 em, h2 em { font-style: italic; color: var(--sea); }
a { color: var(--sea); text-underline-offset: .2em; }
a:hover { color: var(--brass); }
:focus-visible { outline: 3px solid var(--rope); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--foam); color: var(--navy); }
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 6rem); }
.section--paper { background: var(--paper); }
.skip-link { position: absolute; left: 1rem; top: -80px; z-index: 300; background: var(--rope); color: var(--navy); padding: .7rem 1.1rem; border-radius: 10px; font-weight: 600; }
.skip-link:focus { top: 1rem; color: var(--navy); }
.ico { width: 1.15em; height: 1.15em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; display: inline-block; vertical-align: -.18em; }
.kicker { display: flex; align-items: center; gap: .6rem; margin-bottom: .9rem; font: 600 .78rem/1 var(--text); letter-spacing: .2em; text-transform: uppercase; color: var(--brass); }
.kicker::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.lede { font-size: clamp(1.12rem, 1.05rem + .35vw, 1.3rem); line-height: 1.6; }
.muted { color: var(--muted); }
.section-head { max-width: 44rem; margin-bottom: clamp(2rem, 4vw, 2.8rem); }
.section-head p:not(.kicker) { color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; text-decoration: none; border-bottom: 1.5px solid currentColor; }
.text-link .ico { transition: transform .3s var(--ease); }
.text-link:hover .ico { transform: translateX(3px); }

/* ---------- Buttons ------------------------------------------------------ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-height: 50px; padding: .8rem 1.4rem; border-radius: 999px; border: 1.5px solid transparent; font: 600 1rem/1 var(--text); text-decoration: none; cursor: pointer; transition: transform .3s var(--ease), background .25s, color .25s, border-color .25s; }
.btn:hover { transform: translateY(-2px); }
.btn--rope { background: var(--rope); color: var(--navy-2); }
.btn--rope:hover { background: #e6b163; color: var(--navy-2); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-3); color: #fff; }
.btn--foam { border-color: rgba(161,215,217,.6); color: #fff; }
.btn--foam:hover { border-color: var(--foam); background: rgba(161,215,217,.12); color: #fff; }
.btn--line { border-color: rgba(16,35,46,.3); color: var(--ink); }
.btn--line:hover { border-color: var(--ink); background: var(--paper); color: var(--ink); }

/* ---------- Header (navy, to match the logo) ----------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--navy); transition: box-shadow .3s; }
.site-header.is-stuck { box-shadow: 0 10px 30px -18px rgba(0,0,0,.6); }
.header-inner { display: flex; align-items: center; gap: 1.2rem; min-height: 80px; }
.brand { margin-right: auto; display: block; }
.brand img { width: clamp(170px, 18vw, 220px); height: auto; }
.nav { display: flex; align-items: center; gap: .1rem; }
.nav a { position: relative; padding: .55rem .9rem; color: #dcecee; font-weight: 500; text-decoration: none; }
.nav a:hover { color: #fff; }
.nav a[aria-current="page"] { color: #fff; }
.nav a[aria-current="page"]::after { content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .2rem; height: 2px; background: var(--rope); }
.header-social { display: flex; gap: .3rem; }
.header-social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; color: var(--foam); }
.header-social a:hover { background: rgba(161,215,217,.14); color: #fff; }
.nav-toggle { display: none; }
@media (max-width: 860px) {
  .header-inner { min-height: 68px; gap: .5rem; }
  .brand img { width: 160px; }
  .header-social { display: none; }
  .nav-toggle { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid rgba(161,215,217,.4); background: transparent; cursor: pointer; }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 20px; height: 2px; background: #fff; position: relative; transition: transform .3s var(--ease), background .2s; }
  .nav-toggle span::before { position: absolute; top: -6px; }
  .nav-toggle span::after { position: absolute; top: 6px; }
  .site-header.is-open .nav-toggle span { background: transparent; }
  .site-header.is-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
  .site-header.is-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }
  .nav { position: fixed; inset: 68px 0 auto; flex-direction: column; align-items: stretch; padding: .5rem 1.25rem 1.4rem; background: var(--navy); box-shadow: 0 30px 40px -30px rgba(0,0,0,.6);
    opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s; }
  .site-header.is-open .nav { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: 1rem .2rem; border-bottom: 1px solid rgba(161,215,217,.18); font: 400 1.7rem/1.2 var(--display); }
  .nav a[aria-current="page"]::after { left: auto; right: .3rem; top: 50%; bottom: auto; width: 9px; height: 9px; margin-top: -4.5px; border-radius: 50%; }
}

/* ---------- Hero ------------------------------------------------------------------ */
.hero { position: relative; min-height: min(86svh, 780px); display: grid; align-items: end; color: #fff; background: var(--navy-2); overflow: hidden; isolation: isolate; }
.hero-slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity 1.4s ease; z-index: -2; }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(4,44,63,.15) 0%, rgba(4,44,63,.05) 35%, rgba(4,44,63,.85) 100%), linear-gradient(90deg, rgba(4,44,63,.55), transparent 65%); }
.hero-body { padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4.5rem); }
.hero .kicker { color: var(--foam); }
.hero h1 { color: #fff; max-width: 12ch; margin-bottom: 1rem; text-shadow: 0 4px 30px rgba(0,0,0,.35); }
.hero h1 em { color: var(--foam); }
.hero p { max-width: 36rem; font-size: clamp(1.08rem, 1rem + .4vw, 1.3rem); color: #e4f1f2; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.hero-dots { display: flex; gap: .45rem; margin-top: 1.8rem; }
.hero-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.45); cursor: pointer; transition: width .35s var(--ease), background .3s; }
.hero-dots button[aria-current="true"] { width: 26px; background: var(--rope); }

/* ---------- Highlights (the four promises) ------------------------------------------ */
.promises { background: var(--navy); color: #dcecee; }
.promises ul { list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.promises li { display: flex; align-items: center; gap: .8rem; padding: 1.3rem 1rem; }
.promises li + li { border-left: 1px solid rgba(161,215,217,.18); }
.promises .ico { width: 42px; height: 42px; padding: 9px; border-radius: 50%; background: rgba(161,215,217,.12); color: var(--foam); }
.promises span { font-weight: 500; line-height: 1.35; }
@media (max-width: 900px) { .promises ul { grid-template-columns: repeat(2, minmax(0, 1fr)); } .promises li:nth-child(3) { border-left: 0; } .promises li:nth-child(-n+2) { border-bottom: 1px solid rgba(161,215,217,.18); } }
@media (max-width: 480px) { .promises ul { grid-template-columns: 1fr; } .promises li + li { border-left: 0; border-top: 1px solid rgba(161,215,217,.18); } .promises li:nth-child(-n+2) { border-bottom: 0; } }

/* ---------- Captain ----------------------------------------------------------------------- */
.captain-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.captain-photo { position: relative; margin: 0; }
.captain-photo .tile { height: auto; aspect-ratio: 4 / 5; border-radius: var(--r); }
.captain-photo figcaption { position: absolute; right: -1rem; bottom: 1.5rem; padding: .9rem 1.1rem; border-radius: 10px; background: var(--navy); color: #fff; box-shadow: 0 16px 30px -16px rgba(0,0,0,.6); pointer-events: none; }
.captain-photo figcaption b { display: block; font: 400 2rem/1 var(--display); color: var(--rope); }
.captain-photo figcaption span { font-size: .85rem; color: #cfe3e5; }
.captain-text p:not(.kicker):not(.lede) { color: var(--muted); }
@media (max-width: 860px) { .captain-grid { grid-template-columns: 1fr; } .captain-photo { max-width: 460px; } .captain-photo figcaption { right: .8rem; } }

/* ---------- The route (a day on board) ------------------------------------------------------ */
.route-section { position: relative; background: radial-gradient(circle at 85% 20%, rgba(161,215,217,.14), transparent 40%), repeating-radial-gradient(circle at 85% 20%, transparent 0 38px, rgba(161,215,217,.07) 38px 39px), var(--navy-2); color: #dcecee; overflow: hidden; }
.route-section h2 { color: #fff; }
.route-section h2 em { color: var(--foam); }
.route-section .kicker { color: var(--rope); }
.route-section .section-head p:not(.kicker) { color: #cfe3e5; }
.voyage { list-style: none; position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; margin-top: 1rem; }
.voyage::before { content: ""; position: absolute; left: 1rem; right: 1rem; top: 27px; border-top: 2px dashed rgba(211,155,69,.7); }
.voyage li { position: relative; padding-top: 4.2rem; }
.voyage li::before { content: attr(data-mark); position: absolute; left: 0; top: 0; display: grid; place-items: center; min-width: 56px; height: 56px; padding: 0 .7rem; border-radius: 999px; background: var(--navy); border: 2px solid var(--rope); color: #fff; font: 600 .95rem/1 var(--text); }
.voyage h3 { color: #fff; font-size: 1.45rem; }
.voyage p { color: #cfe3e5; margin: 0; font-size: .98rem; }
@media (max-width: 860px) {
  .voyage { grid-template-columns: 1fr; gap: 0; }
  .voyage::before { left: 37px; right: auto; top: 1rem; bottom: 1rem; border-top: 0; border-left: 2px dashed rgba(211,155,69,.7); }
  .voyage li { padding: 0 0 1.8rem 6.1rem; min-height: 70px; }
  .voyage li::before { width: 76px; min-width: 0; padding: 0; font-size: .8rem; }
}
.route-photos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem; margin-top: clamp(2rem, 4vw, 3rem); }
.route-photos .tile { height: auto; aspect-ratio: 3 / 2; border-radius: var(--r); background: var(--navy-3); }

/* ---------- Tiles & strips ---------------------------------------------------------------------- */
.tile { position: relative; display: block; width: 100%; height: 100%; padding: 0; border: 0; overflow: hidden; border-radius: 12px; background: var(--sand-2); cursor: zoom-in; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.tile:hover img, .tile:focus-visible img { transform: scale(1.04); }
.tile.is-entering { animation: rise .45s var(--ease) backwards; }
@keyframes rise { from { opacity: 0; transform: translateY(12px); } }
.strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .9rem; }
.strip .tile { height: auto; aspect-ratio: 4 / 5; border-radius: var(--r); }
@media (max-width: 760px) { .strip { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.section-head--split { max-width: none; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: .5rem 3rem; }
.section-head--split > p { margin: 0; }

/* ---------- FAQ -------------------------------------------------------------------------------- */
.faq-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; list-style: none; padding: 1.15rem 3rem 1.15rem 0; cursor: pointer; font: 400 1.35rem/1.3 var(--display); color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: .4rem; top: 50%; width: 12px; height: 12px; margin-top: -9px; border-right: 2px solid var(--sea); border-bottom: 2px solid var(--sea); transform: rotate(45deg); transition: transform .25s var(--ease), margin .25s; }
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq summary:hover { color: var(--sea); }
.faq details p { margin: 0 0 1.2rem; color: var(--muted); max-width: 44rem; }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; } }

/* ---------- Call to action ---------------------------------------------------------------------- */
.cta { padding: 0 0 clamp(4rem, 8vw, 6rem); }
.cta-card { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 2rem; align-items: center; padding: clamp(2rem, 5vw, 3.4rem); border-radius: calc(var(--r) + 6px); background: repeating-radial-gradient(circle at 100% 100%, transparent 0 34px, rgba(161,215,217,.08) 34px 35px), var(--navy); color: #dcecee; }
.cta-card h2 { color: #fff; }
.cta-card h2 em { color: var(--foam); }
.cta-card p { margin: 0; color: #cfe3e5; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: flex-end; }
@media (max-width: 760px) { .cta-card { grid-template-columns: 1fr; } .cta-actions { justify-content: flex-start; } }

/* ---------- Inner pages ---------------------------------------------------------------------------- */
.page-head { position: relative; padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 3.5rem); background: repeating-radial-gradient(circle at 90% 0%, transparent 0 40px, rgba(161,215,217,.08) 40px 41px), var(--navy); color: #dcecee; }
.page-head h1 { color: #fff; font-size: clamp(2.6rem, 1.7rem + 3.8vw, 4.8rem); }
.page-head h1 em { color: var(--foam); }
.page-head .kicker { color: var(--rope); }
.page-head .lede { max-width: 40rem; color: #cfe3e5; }
.info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.info-grid + .info-grid { margin-top: clamp(3rem, 6vw, 5rem); }
.info-grid--rev .info-text { order: 2; }
.info-text p { color: var(--muted); }
.info-photos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem; }
.info-photos .tile { height: auto; aspect-ratio: 4 / 5; border-radius: var(--r); }
.facts { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem; margin-top: 1.3rem; }
.facts li { display: flex; align-items: center; gap: .6rem; padding: .8rem .9rem; border-radius: 12px; background: var(--paper); border: 1px solid var(--line); font-weight: 500; }
.facts .ico { color: var(--sea); }
@media (max-width: 860px) { .info-grid { grid-template-columns: 1fr; } .info-grid--rev .info-text { order: 0; } }
@media (max-width: 480px) { .facts { grid-template-columns: 1fr; } }
.stops { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1rem, 3vw, 1.6rem); counter-reset: stop; }
.stop { position: relative; overflow: hidden; border-radius: var(--r); background: var(--paper); border: 1px solid var(--line); counter-increment: stop; }
.stop .tile { height: auto; aspect-ratio: 16 / 10; border-radius: 0; }
.stop-body { padding: 1.3rem 1.4rem 1.5rem; }
.stop-body p { margin: 0; color: var(--muted); }
.stop-body small { display: block; margin-bottom: .2rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--brass); font-size: .75rem; }
.stop::before { content: counter(stop); position: absolute; left: 1rem; top: 1rem; z-index: 1; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); border: 2px solid var(--rope); color: #fff; font: 600 1.05rem/1 var(--text); pointer-events: none; }
@media (max-width: 760px) { .stops { grid-template-columns: 1fr; } }
.grid { columns: 3 260px; column-gap: .9rem; }
.grid .tile { height: auto; margin-bottom: .9rem; break-inside: avoid; }
.grid .tile img { height: auto; }
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.6rem; }
.filter { display: inline-flex; align-items: center; gap: .45rem; padding: .6rem 1.1rem; border-radius: 999px; border: 1.5px solid var(--line); background: var(--paper); color: var(--ink); font: 600 .95rem/1 var(--text); cursor: pointer; }
.filter small { color: var(--muted); font-weight: 400; }
.filter:hover { border-color: var(--sea); }
.filter[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: #fff; }
.filter[aria-pressed="true"] small { color: #cfe3e5; }
.gallery-more { display: flex; justify-content: center; margin-top: 2rem; }
.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.contact-card { display: flex; flex-direction: column; gap: .4rem; padding: clamp(1.4rem, 3vw, 1.9rem); border-radius: var(--r); background: var(--paper); border: 1px solid var(--line); }
.contact-card > .ico { width: 48px; height: 48px; padding: 12px; border-radius: 50%; background: var(--sand-2); color: var(--sea); margin-bottom: .3rem; }
.contact-card h2 { font-size: 1.7rem; margin: 0; }
.contact-card p { margin: 0; color: var(--muted); }
.contact-card .big { font: 600 1.2rem/1.5 var(--text); color: var(--ink); text-decoration: none; overflow-wrap: anywhere; }
.contact-card .big a, a.big { color: var(--ink); }
.contact-card a.big:hover, .contact-card .big a:hover { color: var(--sea); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.booking-tips { list-style: none; display: grid; gap: .1rem; border-top: 1px solid var(--line); }
.booking-tips li { display: grid; grid-template-columns: 2rem minmax(0, 1fr); gap: .6rem; padding: .85rem 0; border-bottom: 1px solid var(--line); }
.booking-tips .ico { width: 1.4rem; height: 1.4rem; color: var(--brass); margin-top: .15rem; }

/* ---------- Footer ------------------------------------------------------------------------------------ */
.site-footer { background: var(--navy-2); color: #cfe3e5; padding: clamp(2.8rem, 6vw, 4rem) 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2rem; }
.footer-grid > * { min-width: 0; }
.footer-brand img { width: 200px; height: auto; margin-bottom: .9rem; }
.site-footer h2 { font-size: 1.4rem; color: #fff; margin: 0 0 .7rem; }
.site-footer p { margin: 0 0 .45rem; }
.site-footer a { color: #fff; overflow-wrap: anywhere; }
.site-footer a:hover { color: var(--rope); }
.colophon { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; margin-top: 2.2rem; padding-top: 1.1rem; border-top: 1px solid rgba(161,215,217,.16); font-size: .88rem; color: #a9c6ca; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Lightbox ------------------------------------------------------------------------------------ */
.lightbox { position: fixed; inset: 0; z-index: 400; display: none; padding: clamp(1rem, 4vw, 3rem); background: rgba(3,30,43,.96); opacity: 0; transition: opacity .26s; }
.lightbox.is-open { display: grid; grid-template-rows: 1fr auto; }
.lightbox.is-visible { opacity: 1; }
.lb-stage { display: grid; place-items: center; min-height: 0; }
.lb-figure { margin: 0; display: grid; place-items: center; gap: .9rem; max-height: 100%; }
.lb-img { max-width: 100%; max-height: 80vh; width: auto; height: auto; object-fit: contain; border-radius: 10px; transition: opacity .2s; }
.lb-img.is-loading { opacity: .35; }
.lb-caption { max-width: 60ch; text-align: center; color: #e4f1f2; font: 400 1.25rem/1.35 var(--display); }
.lb-counter { margin: .6rem 0 0; text-align: center; color: var(--rope); font-size: .92rem; }
.lb-btn { position: absolute; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; border: 0; background: var(--foam); color: var(--navy); cursor: pointer; transition: transform .2s, background .2s; }
.lb-btn:hover:not(:disabled) { background: #fff; transform: scale(1.06); }
.lb-btn:disabled { opacity: .35; cursor: default; }
.lb-btn svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lb-prev { left: clamp(.5rem, 2vw, 1.5rem); top: 50%; margin-top: -26px; }
.lb-next { right: clamp(.5rem, 2vw, 1.5rem); top: 50%; margin-top: -26px; }
.lb-close { right: clamp(.5rem, 2vw, 1.5rem); top: clamp(.5rem, 2vw, 1.5rem); }

@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }
