
/* grabwp-chunk: style.css */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,800&family=Be+Vietnam+Pro:wght@300;400;500;600&display=swap');

:root {
  --ink: oklch(0.24 0.035 240);
  --ink-soft: oklch(0.44 0.025 240);
  --sea: oklch(0.5 0.095 215);
  --sea-deep: oklch(0.36 0.075 225);
  --coral: oklch(0.68 0.14 42);
  --sand: oklch(0.955 0.018 82);
  --paper: oklch(0.992 0.005 82);
  --line: oklch(0.88 0.015 82);
  --display: 'Bricolage Grotesque', Georgia, serif;
  --body: 'Be Vietnam Pro', Helvetica, Arial, sans-serif;
  --shell: min(1180px, 100% - 3rem);
  --r: 14px;
}

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

body {
  margin: 0;
  font-family: var(--body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }

p { margin: 0; text-wrap: pretty; }

a { color: var(--sea); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--coral); }

img { display: block; max-width: 100%; height: auto; }

ul { margin: 0; }

/* ---------- header + navigation ---------- */

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in oklab, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}

header.is-stuck {
  border-bottom-color: var(--line);
  background: color-mix(in oklab, var(--paper) 96%, transparent);
}

.bar {
  width: var(--shell);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  margin-right: auto;
}

.brand:hover { color: var(--ink); }

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--sea);
  box-shadow: inset 0 -9px 0 var(--coral);
  flex: none;
}

.brand small {
  display: block;
  font-family: var(--body);
  font-weight: 300;
  font-size: .62rem;
  letter-spacing: .22em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  font: 500 .8rem/1 var(--body);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .8rem 1.1rem;
  color: var(--ink);
  cursor: pointer;
}

.wp-block-navigation {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: .35rem;
}

.wp-block-navigation-item__content {
  display: block;
  padding: .6rem .9rem;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 400;
  color: var(--ink-soft);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.wp-block-navigation-item__content:hover {
  background: var(--sand);
  color: var(--ink);
}

.wp-block-navigation-item__content[aria-current="page"] {
  background: var(--ink);
  color: var(--paper);
}

.bar .btn { flex: none; }

@media (max-width: 900px) {
  .nav-toggle { display: block; order: 3; }
  .bar > .btn { display: none; }
  nav {
    order: 4;
    flex-basis: 100%;
    display: none;
    padding-bottom: 1rem;
  }
  nav[data-open="true"] { display: block; }
  .wp-block-navigation.is-responsive {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .wp-block-navigation-item {
    border-bottom: 1px solid var(--line);
  }
  .wp-block-navigation-item__content {
    border-radius: 0;
    padding: .9rem .2rem;
    font-size: 1rem;
  }
}

/* ---------- primitives ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font: 500 .88rem/1 var(--body);
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.btn:hover { background: var(--sea-deep); border-color: var(--sea-deep); color: var(--paper); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: currentColor; }
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-light:hover { background: var(--coral); border-color: var(--coral); color: var(--paper); }

.eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}

.lead { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--ink-soft); max-width: 62ch; }

.section {
  width: var(--shell);
  margin-inline: auto;
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem 3rem;
  align-items: end;
  margin-bottom: 3rem;
}

.band { background: var(--sand); }
.band-ink { background: var(--ink); color: var(--paper); }
.band-ink .lead, .band-ink .muted { color: color-mix(in oklab, var(--paper) 72%, var(--ink)); }
.band-ink .eyebrow { color: oklch(0.8 0.11 60); }

.muted { color: var(--ink-soft); }
.small { font-size: .86rem; }

.grid { display: grid; gap: 1.5rem; }
.g2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.g3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.g4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px oklch(0.24 0.035 240 / .45); }
.card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.card-body { padding: 1.4rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }

.tag {
  align-self: flex-start;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sea-deep);
  background: color-mix(in oklab, var(--sea) 14%, var(--paper));
  padding: .32rem .6rem;
  border-radius: 999px;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  color: var(--paper);
  display: flex;
  align-items: flex-end;
  min-height: clamp(420px, 74vh, 720px);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, oklch(0.24 0.035 240 / .35) 0%, oklch(0.2 0.04 240 / .82) 100%);
}

.hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner { width: var(--shell); margin-inline: auto; max-width: var(--shell); }
.hero h1 { color: var(--paper); max-width: 20ch; }
.hero .lead { color: color-mix(in oklab, var(--paper) 82%, var(--ink)); margin-top: 1.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.hero-compact { min-height: clamp(320px, 46vh, 460px); }

.hero-facts {
  width: var(--shell);
  margin: -2.5rem auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}

.hero-facts div { padding: 1.4rem 1.6rem; border-right: 1px solid var(--line); }
.hero-facts div:last-child { border-right: 0; }
.hero-facts strong { display: block; font-family: var(--display); font-size: 1.8rem; font-weight: 600; }

/* ---------- split ---------- */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.split-media img { border-radius: var(--r); aspect-ratio: 5 / 4; object-fit: cover; width: 100%; }
.split-alt .split-media { order: 2; }

.stack { display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; }

.checklist { list-style: none; padding: 0; display: grid; gap: .75rem; }
.checklist li { padding-left: 1.6rem; position: relative; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

/* ---------- filters ---------- */

.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }

.chip {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: .55rem 1.1rem;
  font: 400 .85rem/1 var(--body);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s ease;
}

.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--sea-deep); border-color: var(--sea-deep); color: var(--paper); }
.is-hidden { display: none !important; }

/* ---------- timeline / itinerary ---------- */

.timeline { list-style: none; padding: 0; display: grid; gap: 0; }

.timeline li {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.timeline li:last-child { border-bottom: 1px solid var(--line); }
.timeline time { font-family: var(--display); font-size: 1.05rem; color: var(--sea-deep); }

/* ---------- table ---------- */

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); }
table { border-collapse: collapse; width: 100%; min-width: 540px; font-size: .92rem; }
th, td { text-align: left; padding: 1rem 1.2rem; border-bottom: 1px solid var(--line); }
th { font-family: var(--display); font-weight: 600; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; background: var(--sand); }
tbody tr:last-child td { border-bottom: 0; }

/* ---------- faq ---------- */

.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 1.2rem 0; }
.faq summary {
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--coral); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq p { margin-top: .8rem; color: var(--ink-soft); max-width: 70ch; }

/* ---------- form ---------- */

form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
label { font-size: .8rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }

input, select, textarea {
  font: 300 1rem/1.5 var(--body);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .8rem 1rem;
  width: 100%;
}

input:focus, select:focus, textarea:focus { outline: 2px solid var(--sea); outline-offset: 1px; border-color: var(--sea); }
textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 1.1rem; }
.error { font-size: .8rem; color: oklch(0.55 0.17 25); text-transform: none; letter-spacing: 0; }

.form-note {
  padding: 1rem 1.2rem;
  border-radius: 10px;
  background: color-mix(in oklab, var(--sea) 12%, var(--paper));
  font-size: .9rem;
  color: var(--sea-deep);
}

/* ---------- cta ---------- */

.cta {
  border-radius: var(--r);
  background: var(--sea-deep);
  color: var(--paper);
  padding: clamp(2.2rem, 5vw, 3.6rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
  align-items: center;
}

.cta h2 { color: var(--paper); }
.cta p { color: color-mix(in oklab, var(--paper) 78%, var(--sea-deep)); }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: flex-end; }

/* ---------- gallery ---------- */

.mosaic { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 1rem; }
.mosaic img { border-radius: var(--r); aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
.mosaic figure { margin: 0; display: grid; gap: .5rem; }
.mosaic figcaption { font-size: .8rem; color: var(--ink-soft); }
.mosaic .wide { grid-column: span 2; }
.mosaic .wide img { aspect-ratio: 2 / 1; }

/* ---------- quotes ---------- */

blockquote {
  margin: 0;
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--paper);
  display: grid;
  gap: 1rem;
}

blockquote p { font-family: var(--display); font-size: 1.15rem; line-height: 1.4; }
blockquote footer { font-size: .85rem; color: var(--ink-soft); }

/* ---------- footer ---------- */

footer {
  background: var(--ink);
  color: color-mix(in oklab, var(--paper) 76%, var(--ink));
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.foot {
  width: var(--shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 2.5rem;
}

footer h4 { color: var(--paper); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--body); font-weight: 500; }
footer ul { list-style: none; padding: 0; display: grid; gap: .6rem; font-size: .92rem; }
footer a { color: inherit; text-decoration: none; }
footer a:hover { color: var(--paper); }
footer .brand { color: var(--paper); margin: 0 0 1rem; }
footer .brand small { color: color-mix(in oklab, var(--paper) 60%, var(--ink)); }

.legal {
  width: var(--shell);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in oklab, var(--paper) 18%, var(--ink));
  font-size: .8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

/* ---------- reveal ---------- */

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .card:hover, .btn:hover { transform: none; }
}

@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .split-alt .split-media { order: 0; }
  .cta-actions { justify-content: flex-start; }
  .mosaic .wide { grid-column: span 1; }
  .mosaic .wide img { aspect-ratio: 1 / 1; }
}

/* ---------- utilities ---------- */

.hero .btn-ghost { color: var(--paper); }
.hero .btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

caption { caption-side: bottom; padding: .9rem 1.2rem; text-align: left; }

.band-ink .faq { border-top-color: color-mix(in oklab, var(--paper) 20%, transparent); }
.band-ink .faq details { border-bottom-color: color-mix(in oklab, var(--paper) 20%, transparent); }
.band-ink .faq summary { color: var(--paper); }
.band-ink .faq p { color: color-mix(in oklab, var(--paper) 74%, var(--ink)); }

.stack > .grid { width: 100%; }
.card .checklist { margin-top: .35rem; }
.card .checklist li { font-size: .86rem; color: var(--ink-soft); }

.stack-media { border-radius: var(--r); width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
