/* ==========================================================================
   E&P Thai Travel — design system
   Paleta: głębia Morza Andamańskiego + piasek + koralowy akcent
   ========================================================================== */

:root {
  /* Paleta „Andaman" — głęboka morska zieleń, kremowy piasek i pomarańcz
     zachodu słońca. Kontrasty sprawdzone: --ink-3 na białym 4.66:1,
     --teal na białym 4.50:1, biały na --deep 13.7:1. Przyciski akcji są
     pogrubione i większe, bo pomarańcz dobrano pod wyrazistość, nie pod
     minimalny kontrast. */
  --deep:        #0e3330;   /* głęboka morska zieleń — sekcje ciemne, nagłówki */
  --deep-2:      #17514c;
  --deep-rgb:    14 51 48;  /* do przezroczystych cieni */
  --teal:        #12857c;   /* morska zieleń — drugi kolor marki */
  --teal-dark:   #0c6b64;
  --teal-light:  #d8efec;
  --coral:       #cf6412;   /* pomarańcz — przyciski akcji */
  --coral-dark:  #ad520c;
  --coral-bright:#f5851f;   /* żywszy wariant do akcentów dekoracyjnych */
  --sand:        #faf6f0;
  --sand-2:      #efe7dc;
  --gold:        #e0a33f;

  /* neutrals */
  --ink:         #17211f;
  --ink-2:       #40514d;
  --ink-3:       #667874;
  --line:        #e4e0d8;
  --white:       #ffffff;

  /* type */
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;

  /* rhythm */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --shadow-sm: 0 1px 2px rgb(var(--deep-rgb) / .06), 0 2px 8px rgb(var(--deep-rgb) / .05);
  --shadow:    0 4px 12px rgb(var(--deep-rgb) / .09), 0 12px 32px rgb(var(--deep-rgb) / .09);
  --shadow-lg: 0 10px 24px rgb(var(--deep-rgb) / .14), 0 28px 60px rgb(var(--deep-rgb) / .16);
  --wrap: 1200px;
  --gut: clamp(16px, 4vw, 40px);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--teal-dark); text-decoration-color: color-mix(in srgb, var(--teal) 40%, transparent);
    text-underline-offset: 3px; }
a:hover { color: var(--coral-dark); }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.15;
                 letter-spacing: -.015em; margin: 0 0 .5em; color: var(--deep); }
h1 { font-size: clamp(2rem, 1.3rem + 3.2vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.5rem); }
p  { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
:focus-visible { outline: 3px solid var(--coral-bright); outline-offset: 2px; border-radius: 4px; }

/* ---------- layout ---------- */
.wrap { width: min(var(--wrap), 100% - 2 * var(--gut)); margin-inline: auto; }
.wrap-wide { width: min(1440px, 100% - 2 * var(--gut)); margin-inline: auto; }
.section { padding: clamp(48px, 7vw, 96px) 0; }
.section--sand { background: var(--sand); }
.section--deep { background: var(--deep); color: #cfe0dc; }
.section--deep h2, .section--deep h3 { color: #fff; }
.stack > * + * { margin-top: 1rem; }
.center { text-align: center; }
.muted { color: var(--ink-3); }
.lead { font-size: 1.15em; color: var(--ink-2); }

.grid { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); }

/* ---------- section heading ---------- */
.sec-head { display: flex; flex-wrap: wrap; gap: 12px 24px;
            align-items: end; justify-content: space-between; margin-bottom: clamp(24px, 3vw, 40px); }
.sec-head p { margin: 0; max-width: 62ch; }
.eyebrow { display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--sans); font-size: .8rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal-dark); margin-bottom: .6em; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--coral-bright); border-radius: 2px; }
.section--deep .eyebrow { color: var(--gold); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .85em 1.6em; border-radius: 999px; border: 1.5px solid transparent;
  font: inherit; font-weight: 600; font-size: .96rem; line-height: 1;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--coral); color: #fff; font-weight: 700; font-size: 1rem;
                box-shadow: 0 6px 18px rgb(207 100 18 / .32); }
.btn--primary:hover { background: var(--coral-dark); color: #fff; }
.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { background: var(--teal-dark); color: #fff; }
.btn--ghost { border-color: currentColor; color: var(--deep); background: transparent; }
.btn--ghost:hover { background: var(--deep); color: #fff; border-color: var(--deep); }
.btn--light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.35);
              backdrop-filter: blur(6px); }
.btn--light:hover { background: #fff; color: var(--deep); }
.btn--sm { padding: .6em 1.1em; font-size: .85rem; }
.btn--block { width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar { display: flex; align-items: center; gap: 20px;
                    min-height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex: 0 0 auto; }
.brand__mark { height: 44px; width: auto; flex: none; display: block; }
@media (max-width: 420px) { .brand__mark { height: 38px; } .brand__sub { display: none; } }
.brand__text { display: grid; line-height: 1.15; }
.brand__name { font-family: var(--display); font-weight: 600; font-size: 1.12rem; color: var(--deep); }
.brand__sub { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a { padding: .55em .8em; border-radius: 8px; font-size: .95rem; font-weight: 500;
         color: var(--ink-2); text-decoration: none; }
.nav a:hover { background: var(--sand-2); color: var(--deep); }
.nav a[aria-current="page"] { color: var(--deep); font-weight: 600;
  box-shadow: inset 0 -2px 0 var(--coral-bright); border-radius: 8px 8px 0 0; }
/* `.nav a` is more specific than `.btn--primary`, so the CTA in the header
   would otherwise inherit the link colour instead of its own. */
.nav a.btn { color: #fff; }
.nav a.btn:hover { background: var(--coral-dark); color: #fff; }
.nav a.btn--ghost { color: var(--deep); }
.nav a.btn--ghost:hover { background: var(--deep); color: #fff; }
.header-cta { margin-left: 8px; }

.nav-toggle { display: none; margin-left: auto; background: none; border: 1.5px solid var(--line);
  border-radius: 10px; width: 44px; height: 44px; cursor: pointer; align-items: center;
  justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 20px; height: 2px; background: var(--deep); border-radius: 2px; position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav { position: fixed; inset: 72px 0 auto; flex-direction: column; align-items: stretch;
         background: #fff; padding: 12px var(--gut) 24px; gap: 2px; margin: 0;
         border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
         transform: translateY(-120%); transition: transform .25s ease; }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { padding: .8em .6em; font-size: 1.02rem; }
  .header-cta { margin: 10px 0 0; }
}

/* ---------- hero ---------- */
.hero { position: relative; min-height: min(84vh, 760px); display: grid; align-items: end;
        color: #fff; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: var(--deep); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1;
  /* Neutral black scrim, never the brand brown: a tinted overlay would mute the
     turquoise that sells these photos. Just enough to keep the text readable. */
  background:
    linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.10) 34%, rgba(0,0,0,.74) 100%),
    linear-gradient(100deg, rgba(0,0,0,.52) 0%, rgba(0,0,0,.16) 52%, rgba(0,0,0,0) 78%); }
.hero__eyebrow { color: var(--gold); text-shadow: 0 1px 12px rgba(0,0,0,.6); }
.hero__eyebrow::before { background: var(--gold); }
.hero__inner { padding: clamp(60px, 10vw, 120px) 0 clamp(36px, 5vw, 64px); }
.hero h1 { color: #fff; max-width: 17ch; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero__lead { font-size: clamp(1.05rem, .95rem + .5vw, 1.3rem); max-width: 56ch;
              color: #eef4f2; margin-bottom: 1.8em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 2.4em;
  padding-top: 1.6em; border-top: 1px solid rgba(255,255,255,.22); font-size: .92rem; color: #e4eeeb; }
.hero__badges b { color: #fff; }

/* ---------- cards ---------- */
.card {
  display: flex; flex-direction: column; overflow: hidden; height: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 22px; }
.card__title { font-size: 1.16rem; margin: 0 0 .35em; }
.card__title a { color: inherit; text-decoration: none; }
.card__title a::after { content: ""; position: absolute; inset: 0; }
.card__excerpt { font-size: .93rem; color: var(--ink-2); margin: 0 0 1.1em;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card__foot { margin-top: auto; display: flex; align-items: baseline; justify-content: space-between;
              gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.card { position: relative; }

.price { font-family: var(--display); font-size: 1.32rem; font-weight: 600; color: var(--deep); }
.price small { font-family: var(--sans); font-size: .68rem; font-weight: 600; letter-spacing: .08em;
               text-transform: uppercase; color: var(--ink-3); display: block; }
.price del { font-size: .78rem; color: var(--ink-3); font-weight: 400; margin-right: .4em; }
/* Orientacyjna kwota w złotych — zawsze podrzędna wobec ceny w bahtach.
   Siedzi w tej samej linii, na tej samej linii pisma; rozmiar skaluje się
   z ceną obok (.38em), ale nigdy nie schodzi poniżej czytelnych 11 px. */
.price-pln { font-family: var(--sans); font-size: max(.69rem, .38em); font-weight: 500;
             color: var(--ink-3); letter-spacing: .01em; white-space: nowrap;
             margin-left: .5em; }
.pln-inline { font-family: var(--sans); font-size: .74rem; font-weight: 500;
              color: var(--ink-3); white-space: nowrap; margin-left: .45em; }
table.data .pln-inline { display: block; font-size: .71rem; margin: 1px 0 0; }
.rate-note { font-size: .72rem; line-height: 1.5; color: var(--ink-3); max-width: 78ch; }
.section--deep .price-pln, .section--deep .pln-inline { color: #9fb8b3; }

.chip { display: inline-flex; align-items: center; gap: .4em; padding: .3em .75em;
  border-radius: 999px; font-size: .76rem; font-weight: 600; letter-spacing: .02em;
  background: var(--teal-light); color: var(--teal-dark); }
.chip--sand { background: var(--sand-2); color: var(--ink-2); }
.chip--deal { background: color-mix(in srgb, var(--coral-bright) 15%, #fff); color: var(--coral-dark); }
.card__badge { position: absolute; left: 14px; top: 14px; z-index: 2;
  background: rgba(0,0,0,.62); color: #fff; backdrop-filter: blur(4px); }

/* ---------- region tiles ---------- */
.tile { position: relative; display: block; border-radius: var(--r-lg); overflow: hidden;
        aspect-ratio: 3 / 4; color: #fff; text-decoration: none; box-shadow: var(--shadow-sm); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.tile:hover img { transform: scale(1.06); }
.tile::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(0,0,0,.78) 100%); }
.tile__label { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 18px 20px; }
.tile__label strong { display: block; font-family: var(--display); font-size: 1.35rem; color: #fff; }
.tile__label span { font-size: .84rem; color: #e6efec; }

/* ---------- tables ---------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r);
                background: #fff; -webkit-overflow-scrolling: touch; }
table.data { width: 100%; border-collapse: collapse; font-size: .94rem; min-width: 640px; }
table.data th, table.data td { padding: 12px 16px; text-align: left; vertical-align: top;
                               border-bottom: 1px solid var(--line); }
table.data thead th { background: var(--sand); font-size: .74rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-3); font-weight: 700; white-space: nowrap;
  position: sticky; top: 0; z-index: 1; }
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr:hover { background: color-mix(in srgb, var(--teal-light) 45%, #fff); }
table.data .num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.times { display: flex; flex-direction: column; gap: 3px; font-variant-numeric: tabular-nums;
         color: var(--ink-2); font-size: .9rem; }

/* ---------- itinerary ---------- */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 62px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(var(--teal-light), var(--sand-2)); }
.timeline li { display: grid; grid-template-columns: 62px 1fr; gap: 22px; padding: 0 0 26px; position: relative; }
.timeline time { font-variant-numeric: tabular-nums; font-weight: 700; font-size: .88rem;
                 color: var(--teal-dark); padding-top: 2px; }
.timeline li::before { content: ""; position: absolute; left: 57px; top: 7px; width: 12px; height: 12px;
  border-radius: 50%; background: #fff; border: 3px solid var(--teal); }
.timeline p { margin: 0; color: var(--ink-2); }
@media (max-width: 640px) {
  .timeline::before, .timeline li::before { display: none; }
  .timeline li { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- lists with icons ---------- */
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: .6em; }
/* padding + absolute marker, so a bullet may hold <strong>, links or several
   nodes without each one becoming its own grid cell */
.ticks li { position: relative; padding-left: 30px; font-size: .95rem; color: var(--ink-2); }
.ticks li::before { content: "✓"; position: absolute; left: 4px; top: 0;
  font-weight: 700; color: var(--teal); line-height: 1.65; }
.ticks li strong { color: var(--ink); }
.ticks--cross li::before { content: "✕"; color: var(--coral-dark); }
.ticks--dot li::before { content: "•"; color: var(--gold); font-size: 1.3em; line-height: 1.2; }

/* ---------- gallery ---------- */
.gallery { display: grid; gap: 10px;
           grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr)); }
.gallery a { display: block; border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 1;
             background: var(--sand-2); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease, filter .4s ease; }
.gallery a:hover img { transform: scale(1.07); filter: brightness(1.05); }

/* ---------- service cards (home, dark section) ---------- */
.svc { display: flex; flex-direction: column; overflow: hidden; height: 100%;
  background: #fff; border-radius: var(--r-lg); text-decoration: none; color: var(--ink);
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: var(--ink); }
.svc__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--sand-2); }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc:hover .svc__media img { transform: scale(1.05); }
.svc__body { display: flex; flex-direction: column; gap: .5em; flex: 1; padding: 20px 22px 22px; }
.svc__body strong { font-family: var(--display); font-size: 1.2rem; font-weight: 600;
  color: var(--deep); line-height: 1.2; }
.svc__body .muted { font-size: .92rem; }
.svc__cta { margin-top: auto; padding-top: .5em; font-weight: 600; font-size: .9rem;
  color: var(--coral-dark); }

/* ---------- licence / trust block ---------- */
.trust { display: grid; gap: clamp(18px, 3vw, 34px); align-items: center;
  grid-template-columns: auto 1fr auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(20px, 3vw, 30px); box-shadow: var(--shadow-sm); }
.trust__badges { display: flex; align-items: center; gap: 18px; }
.trust__badges img { height: 70px; width: auto; }
.trust__text h3 { font-size: 1.15rem; margin: 0 0 .4em; }
.trust__text p { margin: 0; font-size: .93rem; }
.trust__doc { display: grid; gap: 6px; justify-items: center; text-decoration: none;
  font-size: .8rem; font-weight: 600; color: var(--teal-dark); }
.trust__doc img { width: 120px; height: auto; border-radius: 8px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .2s ease; }
.trust__doc:hover img { transform: translateY(-2px) scale(1.02); }
@media (max-width: 860px) {
  .trust { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .trust__badges { justify-content: center; }
}

/* ---------- video gallery ---------- */
.videos { display: grid; gap: clamp(16px, 2.2vw, 26px);
          grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); }
.video { display: flex; flex-direction: column; }
.video__play { position: relative; display: block; padding: 0; border: 0; cursor: pointer;
  width: 100%; aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--r);
  background: var(--sand-2); box-shadow: var(--shadow-sm); }
.video__play img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.video__play:hover img { transform: scale(1.04); }
.video__icon { position: absolute; inset: 0; display: grid; place-items: center;
  transition: transform .2s ease; }
.video__icon svg { filter: drop-shadow(0 2px 10px rgba(0,0,0,.45)); opacity: .92; }
.video__play:hover .video__icon { transform: scale(1.08); }
.video__play:hover .video__icon svg { opacity: 1; }
.video__title { font-family: var(--sans); font-size: .96rem; font-weight: 600;
  line-height: 1.4; margin: .7em 0 0; color: var(--ink); }
.video iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: var(--r);
                display: block; box-shadow: var(--shadow-sm); }

/* ---------- forms ---------- */
.field { display: grid; gap: 6px; margin-bottom: 18px; }
.field label { font-size: .86rem; font-weight: 600; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; padding: .72em .9em; border: 1.5px solid var(--line);
  border-radius: 10px; background: #fff; color: var(--ink); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px var(--teal-light); }
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; gap: 0 18px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { padding: 14px 18px; border-radius: var(--r); margin-bottom: 22px; font-size: .95rem;
         border: 1px solid; }
.alert--error { background: #fff3f0; border-color: #f6c6b8; color: #8c2c12; }
.alert--ok { background: var(--teal-light); border-color: #9fd9d1; color: #0b5f57; }
.alert--info { background: var(--sand); border-color: var(--sand-2); color: var(--ink-2); }
.alert ul { margin: .4em 0 0; }

/* ---------- panel / box ---------- */
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
         padding: clamp(20px, 3vw, 32px); box-shadow: var(--shadow-sm); }
.panel--sticky { position: sticky; top: 96px; }
.split { display: grid; gap: clamp(28px, 4vw, 56px); grid-template-columns: minmax(0, 1fr); }
@media (min-width: 960px) { .split--aside { grid-template-columns: minmax(0,1fr) 360px; } }

.kv { display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; font-size: .94rem; margin: 0; }
.kv dt { color: var(--ink-3); }
.kv dd { margin: 0; font-weight: 600; color: var(--ink); word-break: break-word; }

/* ---------- breadcrumbs ---------- */
.crumbs { font-size: .85rem; color: var(--ink-3); padding: 18px 0 0; display: flex;
          flex-wrap: wrap; gap: .4em; }
.crumbs a { color: var(--ink-3); text-decoration: none; }
.crumbs a:hover { color: var(--teal-dark); text-decoration: underline; }

/* ---------- footer ---------- */
.site-footer { background: var(--deep); color: #c9d8d4; padding: clamp(48px, 6vw, 80px) 0 28px;
               font-size: .93rem; }
.footer-logo { height: 60px; width: auto; margin-bottom: 14px; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .78rem; letter-spacing: .12em;
                  text-transform: uppercase; margin: 0 0 1.1em; }
.site-footer a { color: #e2ede9; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55em; }
.footer-grid { display: grid; gap: 36px;
               grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: .85rem;
  color: #8ba39e; }

/* ---------- utilities ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { display: inline-flex; align-items: center; gap: .4em; padding: .5em 1em; border-radius: 999px;
  border: 1.5px solid var(--line); background: #fff; font-size: .88rem; font-weight: 500;
  color: var(--ink-2); text-decoration: none; }
.pill:hover { border-color: var(--teal); color: var(--teal-dark); }
.pill[aria-current="page"], .pill.is-active { background: var(--deep); border-color: var(--deep); color: #fff; }
.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: absolute; left: -9999px; }
.skip-link:focus { left: 12px; top: 12px; z-index: 100; background: #fff; padding: 10px 16px;
                   border-radius: 8px; box-shadow: var(--shadow); }

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

/* ---------- lightbox ---------- */
.lightbox { border: 0; padding: 0; background: transparent; max-width: 94vw; max-height: 94vh; }
.lightbox::backdrop { background: rgba(0,0,0,.92); backdrop-filter: blur(4px); }
.lightbox img { max-width: 94vw; max-height: 90vh; width: auto; border-radius: var(--r);
                box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: -6px; right: -6px; width: 40px; height: 40px;
  border-radius: 50%; border: 0; background: #fff; color: var(--deep); font-size: 24px;
  line-height: 1; cursor: pointer; box-shadow: var(--shadow); }

/* ---------- ferry photo strip ---------- */
.ferry-strip { display: grid; gap: 10px; margin-bottom: 28px;
               grid-template-columns: repeat(3, 1fr); }
.ferry-strip a { display: block; border-radius: var(--r); overflow: hidden;
                 background: var(--sand-2); aspect-ratio: 3 / 2; }
.ferry-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ferry-strip a:hover img { transform: scale(1.05); }
@media (max-width: 700px) {
  .ferry-strip { grid-template-columns: 1fr 1fr; }
  .ferry-strip a:first-child { grid-column: 1 / -1; }
}

/* ---------- tour hero mosaic ---------- */
.tour-hero { display: grid; gap: 10px; grid-template-columns: 2fr 1fr; }
.tour-hero a { display: block; border-radius: var(--r); overflow: hidden; background: var(--sand-2); }
.tour-hero img { width: 100%; height: 100%; object-fit: cover; }
.tour-hero__main { aspect-ratio: 3 / 2; }
.tour-hero__side { display: grid; gap: 10px; grid-template-rows: repeat(2, 1fr); }
.tour-hero__side a { aspect-ratio: 3 / 2; }
@media (max-width: 760px) {
  .tour-hero { grid-template-columns: 1fr; }
  .tour-hero__side { grid-template-columns: repeat(2, 1fr); grid-template-rows: none; }
}
