/* Tsjerk Hiddes — maritime, classic, calm */
:root {
  --navy: #10222e;
  --navy-deep: #0a161f;
  --cream: #f7f2e9;
  --cream-dark: #efe6d6;
  --ink: #22303a;
  --muted: #5d6b75;
  --gold: #b9893d;
  --gold-light: #d4a85e;
  --white: #ffffff;
  --serif: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --sans: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --shadow: 0 14px 40px rgba(16, 34, 46, .14);
  --radius: 10px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.15; color: var(--navy); margin: 0 0 .6em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
a { color: var(--gold); }
.small { font-size: .85rem; color: var(--muted); }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled { background: rgba(16, 34, 46, .92); backdrop-filter: blur(10px); box-shadow: 0 2px 18px rgba(0,0,0,.25); }
.nav {
  display: flex; align-items: center; gap: 2rem;
  max-width: 1280px; margin: 0 auto; padding: .9rem 1.5rem;
}
.brand {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600;
  color: var(--white); text-decoration: none; letter-spacing: .02em;
}
.brand-mark { width: 26px; height: 26px; color: var(--gold-light); }
.brand-logo { width: 34px; height: 34px; border-radius: 7px; }
.nav-links {
  display: flex; align-items: center; gap: 1.4rem;
  list-style: none; margin: 0 0 0 auto; padding: 0;
}
.nav-links a:not(.btn) {
  color: rgba(255,255,255,.85); text-decoration: none; font-size: .92rem; font-weight: 500;
  letter-spacing: .02em;
}
.nav-links a:not(.btn):hover { color: var(--gold-light); }
.nav-langs { display: flex; gap: .5rem; padding-left: .8rem; border-left: 1px solid rgba(255,255,255,.25); }
.nav-langs a { font-size: .8rem !important; opacity: .7; }
.nav-langs a.active { opacity: 1; color: var(--gold-light) !important; }
.nav-toggle { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; padding: .85rem 1.7rem; border-radius: 999px;
  font-family: var(--sans); font-size: .95rem; font-weight: 600; letter-spacing: .02em;
  text-decoration: none; cursor: pointer; border: 0; transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--white); box-shadow: 0 6px 20px rgba(185,137,61,.4); }
.btn-gold:hover { background: var(--gold-light); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.6); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-small { padding: .5rem 1.1rem; font-size: .85rem; }
.btn-wide { width: 100%; text-align: center; }
.btn[disabled] { opacity: .6; cursor: wait; transform: none; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; }
.hero picture, .hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(195deg, rgba(16,34,46,.25) 30%, rgba(10,22,31,.82) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 6vw 11vh; max-width: 820px; }
.eyebrow {
  color: var(--gold-light); font-size: .85rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; margin-bottom: 1rem;
}
.hero h1 {
  color: var(--white); font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 500; margin: 0 0 1rem; font-style: italic;
}
.hero-sub { color: rgba(255,255,255,.88); font-size: clamp(1rem, 2vw, 1.2rem); max-width: 34em; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- stats band ---------- */
.stats-band { background: var(--navy); }
.stats {
  display: grid; grid-template-columns: repeat(6, 1fr);
  list-style: none; margin: 0 auto; padding: 1.6rem 1.5rem; max-width: 1280px;
}
.stats li { text-align: center; padding: .4rem 1rem; border-left: 1px solid rgba(255,255,255,.12); }
.stats li:first-child { border-left: 0; }
.stats strong { display: block; font-family: var(--serif); font-size: 1.7rem; color: var(--gold-light); }
.stats span { font-size: .78rem; color: rgba(255,255,255,.65); letter-spacing: .04em; text-transform: uppercase; }

/* ---------- sections ---------- */
.section { padding: clamp(4rem, 9vw, 7rem) 1.5rem; }
.section-alt { background: var(--cream-dark); }
.section-dark { background: var(--navy); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p, .section-dark dd { color: rgba(255,255,255,.82); }
.section-dark dt { color: var(--gold-light); }
.wrap { max-width: 1280px; margin: 0 auto; }
.narrow { max-width: 760px; }
.lead { font-size: 1.15rem; }
.section-sub { color: var(--muted); font-size: 1.1rem; margin-top: -1em; margin-bottom: 2.5em; max-width: 44em; }

/* ---------- occasions chips & landing pages ---------- */
.occasions { margin-top: 1.8rem; display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; }
.occasions-title { font-weight: 600; color: var(--navy); margin-right: .3rem; }
.chip {
  display: inline-block; padding: .45rem 1.1rem; border-radius: 999px;
  background: var(--white); border: 1.5px solid rgba(16,34,46,.2);
  color: var(--navy); text-decoration: none; font-size: .88rem; font-weight: 600;
  transition: border-color .15s, color .15s;
}
.chip:hover { border-color: var(--gold); color: var(--gold); }
.landing-split .split { align-items: center; }
.split-flip .split-img { order: 2; }
.landing-prices { margin: 1.4rem 0 1rem; }
.landing-prices ul { list-style: none; margin: 0; padding: 0; }

/* ---------- ship cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.card img { height: 230px; width: 100%; object-fit: cover; }
.card-imgs { display: flex; gap: 2px; }
.card-imgs img { width: 50%; height: 230px; object-fit: cover; }
.card-body { padding: 1.4rem 1.5rem 1.6rem; }
.card-body p { margin: 0; font-size: .93rem; color: var(--muted); }
.specs { margin-top: 3rem; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.specs summary {
  cursor: pointer; padding: 1.2rem 1.5rem; font-family: var(--serif); font-size: 1.15rem; color: var(--navy);
}
.specs dl { display: grid; grid-template-columns: 1fr 1fr; gap: .2rem 3rem; padding: 0 1.5rem 1.5rem; margin: 0; }
.specs dl div { display: flex; justify-content: space-between; gap: 1rem; padding: .45rem 0; border-bottom: 1px dashed rgba(16,34,46,.15); }
.specs dt { color: var(--muted); }
.specs dd { margin: 0; font-weight: 600; text-align: right; }

/* ---------- splits ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); max-width: 1280px; margin: 0 auto; align-items: center; }
.split-rev { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split-img img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; max-height: 640px; object-fit: cover; }
blockquote {
  margin: 1.6rem 0; padding: 1.2rem 1.6rem; border-left: 3px solid var(--gold);
  background: rgba(185,137,61,.08); border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--serif); font-size: 1.08rem; color: var(--navy);
}

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.gallery-item { border-radius: 8px; overflow: hidden; display: block; }
.gallery-item img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.05); }

/* ---------- availability ---------- */
.avail-legend { display: flex; align-items: center; gap: 1.4rem; margin-bottom: 1.6rem; font-size: .88rem; }
.leg { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; color: var(--navy); }
.leg::before { content: ''; width: 14px; height: 14px; border-radius: 4px; }
.leg-free::before { background: #cfe3cf; border: 1px solid #8fbb8f; }
.leg-booked::before { background: #e9c4bb; border: 1px solid #c98876; }
.leg-partial::before { background: linear-gradient(135deg, #e9c4bb 0 50%, #cfe3cf 50% 100%); border: 1px solid #c3a98f; }
.leg-updated { margin-left: auto; color: var(--muted); }
.avail-years { display: flex; gap: .6rem; margin-bottom: 1.4rem; }
.price-controls { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: .8rem 1.2rem; margin-bottom: 1.4rem; }
.price-controls .avail-years { margin-bottom: 0; flex-wrap: wrap; }
.avail-years button {
  font: inherit; font-weight: 600; font-size: .95rem; cursor: pointer;
  padding: .5rem 1.4rem; border-radius: 999px;
  border: 1.5px solid rgba(16,34,46,.3); background: var(--white); color: var(--navy);
  transition: background .15s, color .15s, border-color .15s;
}
.avail-years button:hover { border-color: var(--gold); }
.avail-years button.active { background: var(--gold); border-color: var(--gold); color: var(--white); }
.avail-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-bottom: 1.6rem; }
.cal { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1rem 1.1rem 1.2rem; }
.cal h4 { font-size: 1rem; margin: 0 0 .7em; text-transform: capitalize; }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-wd { font-size: .65rem; color: var(--muted); text-align: center; text-transform: uppercase; padding-bottom: .2rem; }
.cal-d { font-size: .72rem; text-align: center; padding: .28rem 0; border-radius: 5px; }
.cal-d.free { background: #cfe3cf; color: #2e4d2e; cursor: pointer; }
.cal-d.free:hover { background: #aacfaa; }
.cal-d.booked { background: #e9c4bb; color: #6e2f1f; }
/* changeover day: diagonally split — red on the booked half, green on the free
   half (booked AM = red top-left; booked PM = red bottom-right) */
.cal-d.partial { background: linear-gradient(135deg, #e9c4bb 0 50%, #cfe3cf 50% 100%); color: #3d3526; cursor: pointer; }
.cal-d.partial-pm { background: linear-gradient(135deg, #cfe3cf 0 50%, #e9c4bb 50% 100%); }
.cal-d.partial-both { background: linear-gradient(135deg, #e9c4bb 0 33%, #cfe3cf 33% 67%, #e9c4bb 67% 100%); }
.cal-d.partial:hover { filter: brightness(.93); }
.cal-d.past { color: rgba(93,107,117,.45); }

/* ---------- subpages (ship photo pages) ---------- */
.subpage-main { padding-top: 7rem; min-height: 70vh; }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 1.6rem; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.subpage h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.gallery-more { margin-top: 1.6rem; font-weight: 600; }
.ships-teaser {
  display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap;
  margin-top: 1.8rem; padding: 1.2rem 1.6rem;
  background: var(--navy); border-radius: var(--radius); box-shadow: var(--shadow);
  text-decoration: none; transition: transform .2s;
}
.ships-teaser:hover { transform: translateY(-2px); }
.ships-teaser-thumbs { display: flex; flex-shrink: 0; }
.ships-teaser-thumbs img {
  width: 52px; height: 52px; object-fit: cover; border-radius: 50%;
  border: 2px solid var(--navy); margin-left: -14px;
}
.ships-teaser-thumbs img:first-child { margin-left: 0; }
.ships-teaser-text {
  flex: 1; min-width: 220px; font-family: var(--serif); font-size: 1.1rem; color: var(--white);
}
.ships-teaser .btn { white-space: nowrap; }
.ship-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 2rem; }
.ship-card {
  display: block; background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); text-decoration: none; transition: transform .2s;
}
.ship-card:hover { transform: translateY(-3px); }
.ship-card img { width: 100%; height: 150px; object-fit: cover; }
.ship-card-name { display: block; padding: .8rem 1rem .1rem; font-family: var(--serif); font-size: 1.05rem; color: var(--navy); }
.ship-card-count { display: block; padding: 0 1rem .8rem; font-size: .8rem; color: var(--muted); }
.ship-cta { text-align: center; margin-top: 3rem; }
.ship-cta p { font-family: var(--serif); font-size: 1.2rem; color: var(--navy); }
.ship-cta .btn { margin: .3rem .4rem; }
.btn-ghost-dark { background: transparent; color: var(--navy); border: 1.5px solid rgba(16,34,46,.4); }
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- included band ---------- */
.included-band {
  background: var(--navy); color: var(--white); border-radius: var(--radius);
  padding: 1.8rem 2rem; margin-bottom: 2.5rem; box-shadow: var(--shadow);
}
.included-band h3 { color: var(--gold-light); margin-bottom: .8em; }
.included-list { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem 1.8rem; margin: 0 0 1em; padding: 0; }
.included-list li { display: flex; align-items: center; gap: .45rem; font-size: .95rem; color: rgba(255,255,255,.9); }
.included-list li::before {
  content: '✓'; display: inline-flex; align-items: center; justify-content: center;
  width: 1.25rem; height: 1.25rem; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); color: var(--white); font-size: .75rem; font-weight: 700;
}
.included-note { margin: 0; font-family: var(--serif); font-size: 1.05rem; color: var(--gold-light); }

/* ---------- pricing ---------- */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-bottom: 2.5rem; }
.price-card {
  background: var(--white); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.price-card h3 { margin-bottom: .2em; }
.price-guests { font-size: .85rem; color: var(--muted); margin-bottom: 1.2em; }
.price-card ul { list-style: none; margin: 0; padding: 0; }
.price-card li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .55rem 0; border-bottom: 1px dashed rgba(16,34,46,.15); }
.price-card li:last-child { border-bottom: 0; }
.price-card li span { font-size: .9rem; color: var(--muted); }
.price-card li strong { font-family: var(--serif); font-size: 1.1rem; color: var(--navy); white-space: nowrap; }
.price-extras { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.price-disclaimer { margin-top: 1.6rem; max-width: 60em; }
.price-extras > div { background: var(--white); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.price-extras h4 { font-size: 1.05rem; margin-bottom: .8em; }
.kv { list-style: none; margin: 0; padding: 0; }
.kv li { display: flex; justify-content: space-between; gap: 1rem; padding: .4rem 0; font-size: .9rem; border-bottom: 1px dashed rgba(16,34,46,.12); }
.kv li:last-child { border-bottom: 0; }
.kv strong { white-space: nowrap; }

/* ---------- booking ---------- */
.booking { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%); }
.booking-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: start; }
.booking-fields { display: flex; flex-direction: column; gap: 1.1rem; }
.booking-fields label, .transfers { font-size: .88rem; font-weight: 600; color: var(--navy); display: block; }
.booking-fields input:not([type="checkbox"]), .booking-fields select, .booking-fields textarea {
  display: block; width: 100%; margin-top: .35rem; padding: .75rem .9rem;
  font: inherit; font-size: .95rem; color: var(--ink);
  border: 1px solid rgba(16,34,46,.25); border-radius: 8px; background: var(--white);
}
.booking-fields input:focus, .booking-fields select:focus, .booking-fields textarea:focus {
  outline: 2px solid var(--gold); border-color: var(--gold);
}
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.check { display: flex !important; align-items: center; gap: .6rem; font-weight: 500 !important; cursor: pointer; }
.check input { width: 1.1rem; height: 1.1rem; accent-color: var(--gold); }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.period-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.period-chips .chip { cursor: pointer; font: inherit; font-size: .88rem; font-weight: 600; }
.period-chips .chip.active { background: var(--gold); border-color: var(--gold); color: var(--white); }
.booking-summary {
  position: sticky; top: 5.5rem;
  background: var(--navy); color: var(--white); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow);
}
.booking-summary h3 { color: var(--gold-light); }
.booking-summary ul { list-style: none; margin: 0 0 1rem; padding: 0; }
.booking-summary li { display: flex; justify-content: space-between; gap: 1rem; padding: .45rem 0; font-size: .9rem; border-bottom: 1px dashed rgba(255,255,255,.18); color: rgba(255,255,255,.85); }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; padding: .8rem 0 .4rem; font-weight: 600; }
.summary-total strong { font-family: var(--serif); font-size: 1.7rem; color: var(--gold-light); }
.booking-summary .small { color: rgba(255,255,255,.6); }
.form-error { color: #ffb3a0; font-size: .9rem; font-weight: 600; }
#date-error { color: #b3361f; }
.booking-fields input.field-error {
  border-color: #b3361f; background: #fdf0ee;
  outline: 2px solid rgba(179, 54, 31, .3);
}
/* custom date picker popup (availability colours, replaces the native picker) */
.booking-fields input[type="date"] { cursor: pointer; }
.booking-fields input[type="date"]::-webkit-calendar-picker-indicator { display: none; }
.dp {
  position: absolute; z-index: 300; width: 300px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(16,34,46,.28);
  padding: .9rem 1rem 1.1rem;
}
.dp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .6rem; }
.dp-head strong { font-family: var(--serif); font-size: 1.02rem; color: var(--navy); text-transform: capitalize; }
.dp-nav {
  background: none; border: 1px solid rgba(16,34,46,.2); border-radius: 6px;
  width: 1.9rem; height: 1.9rem; cursor: pointer; font-size: 1.05rem; line-height: 1; color: var(--navy);
}
.dp-nav:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.dp-nav:disabled { opacity: .3; cursor: default; }
.dp .cal-d { padding: .34rem 0; }
.dp .cal-d.sel { outline: 2px solid var(--gold); font-weight: 700; }
.dp .cal-d.from { outline: 2px dashed var(--gold); }
.booking-success {
  max-width: 620px; margin: 0 auto; text-align: center;
  background: var(--white); border-radius: var(--radius); padding: 3rem 2.5rem; box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}

/* ---------- faq ---------- */
.faq-list { display: flex; flex-direction: column; gap: .7rem; }
.faq-item {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer; padding: 1.1rem 1.4rem; font-family: var(--serif);
  font-size: 1.08rem; color: var(--navy); list-style: none; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 1.3rem; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 1.5rem; font-weight: 400; transition: transform .2s;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p { padding: 0 1.4rem 1.2rem; margin: 0; color: var(--muted); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.contact-list { margin: 1.5rem 0 0; }
.contact-list div { padding: .7rem 0; border-bottom: 1px dashed rgba(255,255,255,.15); }
.contact-list dt { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
.contact-list dd { margin: .15rem 0 0; }
.contact-list a { color: var(--gold-light); }
.contact-img img { border-radius: var(--radius); box-shadow: 0 14px 40px rgba(0,0,0,.4); }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.7); text-align: center; padding: 2.2rem 1.5rem; }
.site-footer p { margin: .2em 0; font-size: .9rem; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(10,22,31,.94);
  display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 3rem;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lightbox-caption { color: rgba(255,255,255,.8); margin-top: 1rem; font-size: .95rem; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1.4rem; background: none; border: 0;
  color: var(--white); font-size: 2.6rem; cursor: pointer; line-height: 1;
}

/* ---------- modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 110; background: rgba(10,22,31,.75);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
}
.modal {
  background: var(--cream); border-radius: var(--radius); box-shadow: 0 24px 70px rgba(0,0,0,.45);
  max-width: 480px; padding: 2.2rem 2.4rem; text-align: center;
  border-top: 4px solid var(--gold);
}
.modal h3 { margin-bottom: .5em; }
.modal p { color: var(--muted); margin-bottom: 1.4em; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .cards, .price-cards, .price-extras { grid-template-columns: repeat(2, 1fr); }
  .avail-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .ship-cards { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stats li:nth-child(4) { border-left: 0; }
}
@media (max-width: 820px) {
  .nav-toggle {
    display: block; margin-left: auto; background: none; border: 0; cursor: pointer; padding: .4rem;
  }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: .3s; }
  .site-header { background: rgba(16,34,46,.92); }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--navy-deep); padding: .5rem 0 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a:not(.btn) { display: block; padding: .8rem 1.5rem; }
  .nav-langs { border-left: 0; padding: .8rem 1.5rem; }
  .nav-links .btn { margin: .6rem 1.5rem; }
  .split, .split-rev, .booking-grid, .contact-grid { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
  .specs dl { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; }
}
@media (max-width: 560px) {
  .cards, .price-cards, .price-extras { grid-template-columns: 1fr; }
  .avail-grid { grid-template-columns: 1fr; }
  .avail-legend { flex-wrap: wrap; }
  .leg-updated { margin-left: 0; width: 100%; }
  .ship-cards { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-item img { height: 140px; }
  .row-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); padding: 1rem; }
  .stats li { border-left: 0; }
}

/* ============================================================
   Skyldum.frl — additions & theming on top of the shared base
   ============================================================ */
:root {
  --green: #4a6b4f;        /* Frisian meadow green — secondary accent */
  --green-light: #6f9173;
}

/* skip link for keyboard users */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--gold); color: #fff; padding: .6rem 1rem; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* give the split text column a little breathing room on wide screens */
.split-text { padding: 0 clamp(0rem, 2vw, 2rem); }

/* sub-pages (privacy etc.) clear the fixed header */
.section-page { padding-top: 7.5rem; min-height: 70vh; }
.section-page h2 { margin-top: 1.6em; }

/* richer footer */
.site-footer { padding-top: 2.6rem; }
.footer-grid {
  display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; justify-content: space-between;
  align-items: flex-start; text-align: left; padding-bottom: 1.4rem; margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand { font-family: var(--serif); font-size: 1.3rem; color: var(--gold-light); margin: 0 0 .2em; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-links a { color: rgba(255,255,255,.75); text-decoration: none; font-size: .92rem; }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { opacity: .7; }

/* tourism accents (used from Phase 2 on) */
.section-green { background: var(--green); color: #fff; }
.section-green h2, .section-green h3 { color: #fff; }
.section-green a { color: #fff; }
.tag-green { color: var(--green); font-weight: 600; }

/* ============================================================
   Skyldum — Phase 2 content components
   ============================================================ */
.btn-ghost-dark { background: transparent; color: var(--navy); border: 1.5px solid rgba(16,34,46,.35); }
.btn-ghost-dark:hover { border-color: var(--navy); background: rgba(16,34,46,.05); }

/* B&B unit block */
.bnb-unit { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; margin-bottom: 2.5rem; }
.bnb-gallery { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; gap: .6rem; }
.bnb-gallery .gallery-item:first-child { grid-column: 1 / -1; }
.bnb-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 3 / 2; display: block; }
.bnb-body h3 { font-size: 1.6rem; }
.facts { list-style: none; padding: 0; margin: 1rem 0; display: flex; gap: 1.6rem; flex-wrap: wrap; }
.facts li { font-size: .95rem; color: var(--muted); }
.facts strong { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); display: inline; margin-right: .2rem; }
.bnb-price { font-size: 1.05rem; color: var(--muted); margin: .4rem 0 1.2rem; }
.bnb-price strong { font-family: var(--serif); font-size: 1.5rem; color: var(--gold); }
.bnb-ctas { display: flex; flex-wrap: wrap; gap: .8rem; }

/* two-column info (amenities / rules) */
.info-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2.5rem; }
.ticks, .kv-list { list-style: none; padding: 0; margin: .6rem 0 0; }
.ticks li, .kv-list li { padding: .35rem 0 .35rem 1.6rem; position: relative; color: var(--ink); border-bottom: 1px solid rgba(16,34,46,.07); }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.kv-list li::before { content: "·"; position: absolute; left: .4rem; color: var(--gold); font-weight: 700; }

/* link chips row */
.linkchips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }

/* ferry table */
.ferry-table { overflow-x: auto; margin-top: 1.5rem; }
.ferry-table table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); color: var(--ink); }
.ferry-table th, .ferry-table td { padding: .85rem 1rem; text-align: left; border-bottom: 1px solid rgba(16,34,46,.08); font-size: .95rem; }
.ferry-table thead th { background: var(--navy); color: #fff; font-family: var(--sans); font-weight: 600; font-size: .85rem; letter-spacing: .02em; }
.ferry-table tbody tr:last-child td { border-bottom: none; }
.ferry-table a { color: var(--green); text-decoration: none; font-weight: 600; }
.ferry-table a:hover { text-decoration: underline; }
.badge { display: inline-block; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--green); background: rgba(74,107,79,.12); border-radius: 999px; padding: .12rem .5rem; margin-left: .3rem; vertical-align: middle; }

/* places + restaurants */
.card-text .card-body { padding: 1.3rem 1.4rem; }
.textlink { color: var(--gold); font-weight: 600; text-decoration: none; font-size: .9rem; }
.textlink:hover { text-decoration: underline; }
.restaurants-h { margin-top: 2.5rem; }
.resto-list { list-style: none; padding: 0; margin: .6rem 0 0; }
.resto-list li { padding: .5rem 0; border-bottom: 1px solid rgba(16,34,46,.08); }
.resto-list a { color: var(--navy); font-weight: 600; text-decoration: none; }
.resto-list a:hover { color: var(--gold); }

@media (max-width: 820px) {
  .bnb-unit, .info-cols { grid-template-columns: 1fr; }
  /* stacked ferry table */
  .ferry-table thead { display: none; }
  .ferry-table table, .ferry-table tbody, .ferry-table tr, .ferry-table td { display: block; width: 100%; }
  .ferry-table tr { border-bottom: 2px solid rgba(16,34,46,.1); padding: .4rem 0; }
  .ferry-table td { border: none; padding: .3rem 1rem; }
  .ferry-table td::before { content: attr(data-th) ": "; font-weight: 700; color: var(--muted); }
  .ferry-table td:first-child::before { content: ""; }
}

/* ============================================================
   Skyldum — Phase 3 booking calendar selection + summary
   ============================================================ */
.leg-sel::before { background: var(--gold); border: 1px solid var(--gold); }
.cal-d.sel { background: var(--gold-light); color: #3a2a10; }
.cal-d.sel-start, .cal-d.sel-end { background: var(--gold); color: #fff; font-weight: 700; }
.cal-d.free:focus-visible { outline: 2px solid var(--navy); outline-offset: 1px; }

.summary-hint { color: var(--muted); font-size: .9rem; list-style: none; }
.booking-summary .bnb-name { font-family: var(--serif); font-size: 1.15rem; color: var(--navy); margin: 0 0 .6rem; }
#summary-lines { list-style: none; padding: 0; margin: 0 0 .8rem; }
#summary-lines li { display: flex; justify-content: space-between; gap: 1rem; padding: .3rem 0; border-bottom: 1px solid rgba(16,34,46,.07); font-size: .92rem; }
#summary-lines li strong { font-variant-numeric: tabular-nums; }
.booking-success { background: rgba(74,107,79,.1); border: 1px solid var(--green-light); border-radius: var(--radius); padding: 1.6rem 1.8rem; max-width: 640px; margin: 1rem auto 0; text-align: center; }
.booking-success h3 { color: var(--green); }

/* legible muted text on the green Wadden section */
.section-green .section-sub { color: rgba(255,255,255,.88); }
.section-green .small { color: rgba(255,255,255,.8); }
