/* travee+ storefront — "Field Atlas": paper and ink, cyan against clay,
   cartographic detail instead of stock-photo gloss. */

:root {
  --brand:  #25A8CB;
  --brand-d:#17758F;
  --clay:   #C4622D;
  --clay-d: #9B4A1E;
  --ink:    #0B1F28;
  --ink-2:  #143039;
  --paper:  #F7F3EC;
  --paper-2:#EFE8DC;
  --rule:   #DCD2C1;
  --text:   #1B2B31;
  --muted:  #5E6E73;

  --sans: "Archivo", ui-sans-serif, system-ui, sans-serif;
  --disp: "Fraunces", ui-serif, Georgia, serif;

  --wrap: 1240px;
  --r: 3px;                       /* near-square: paper, not app chrome */
  --shadow: 0 1px 2px rgba(11,31,40,.06), 0 12px 32px -18px rgba(11,31,40,.35);
  --shadow-l: 0 2px 4px rgba(11,31,40,.05), 0 28px 60px -28px rgba(11,31,40,.45);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--text);
  font: 400 16px/1.6 var(--sans);
  font-synthesis-weight: none;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--disp); font-weight: 600; letter-spacing: -.015em; line-height: 1.08; }
p { margin: 0 0 1em; }
.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; z-index: 99; background: var(--ink); color: #fff; padding: 10px 16px; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }

/* Paper tooth. One fixed layer, no repaint cost, kills the flat-vector look. */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .32;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------- marks -- */
.brand-mark {
  width: 26px; height: 26px; display: inline-block; position: relative; flex: none;
  border: 1.5px solid currentColor; border-radius: 50%;
}
.brand-mark::before, .brand-mark::after {
  content: ""; position: absolute; background: currentColor;
}
.brand-mark::before { left: 50%; top: 5px; bottom: 5px; width: 1.5px; transform: translateX(-50%); }
.brand-mark::after  { top: 50%; left: 5px; right: 5px; height: 1.5px; transform: translateY(-50%); }
.brand-mark--lg { width: 38px; height: 38px; }

/* ----------------------------------------------------------------- nav -- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.is-stuck { border-bottom-color: var(--rule); }
.nav-in { display: flex; align-items: center; gap: 32px; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--ink); }
.brand-word { font-family: var(--disp); font-size: 25px; font-weight: 700; letter-spacing: -.03em; }
.nav-links { display: flex; gap: 26px; margin-left: auto; font-size: 14.5px; font-weight: 500; }
.nav-links a { color: var(--muted); position: relative; padding: 4px 0; transition: color .2s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .28s cubic-bezier(.2,.8,.2,1);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  border: 1.5px solid var(--ink); color: var(--ink); padding: 9px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600; white-space: nowrap; transition: background .22s, color .22s;
}
.nav-cta:hover { background: var(--ink); color: var(--paper); }
.nav-burger { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); }
.nav-burger span + span { margin-top: 6px; }

/* ---------------------------------------------------------------- hero -- */
.hero {
  position: relative; background: var(--ink); color: #EFE9DF; overflow: hidden;
  padding: 92px 0 108px;
}
.hero::after {                               /* paper tears back in at the seam */
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 46px;
  background: var(--paper);
  clip-path: polygon(0 100%, 0 62%, 8% 71%, 19% 55%, 31% 68%, 44% 52%, 57% 66%, 69% 54%, 81% 69%, 92% 58%, 100% 70%, 100% 100%);
}
.hero-map { position: absolute; inset: 0; opacity: .5; }
.hero-map svg { width: 100%; height: 100%; }
.hero-in { position: relative; z-index: 2; max-width: 780px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 26px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.hero h1 {
  font-size: clamp(44px, 7.2vw, 94px); line-height: .94; letter-spacing: -.035em;
  font-weight: 600; color: #fff; margin-bottom: 26px;
  font-variation-settings: "SOFT" 20, "WONK" 1;
}
.hero h1 em { font-style: italic; color: var(--brand); font-variation-settings: "SOFT" 40, "WONK" 1; }
.hero-sub { font-size: clamp(17px, 2vw, 20px); color: #B9C7CC; max-width: 560px; margin-bottom: 40px; }

/* staged reveal — one orchestrated load beats scattered micro-motion */
.hero-in > * { animation: rise .8s cubic-bezier(.2,.8,.2,1) both; }
.hero-in > :nth-child(1) { animation-delay: .05s; }
.hero-in > :nth-child(2) { animation-delay: .14s; }
.hero-in > :nth-child(3) { animation-delay: .23s; }
.hero-in > :nth-child(4) { animation-delay: .32s; }
.hero-in > :nth-child(5) { animation-delay: .42s; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } }

/* search: one field, four filters, no wizard */
.finder {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr auto; gap: 0;
  background: #fff; border-radius: var(--r); box-shadow: var(--shadow-l); overflow: hidden;
}
.finder label { display: block; padding: 14px 18px; border-right: 1px solid var(--rule); }
.finder label:nth-child(3) { border-right: 1px solid var(--rule); }
.finder span { display: block; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.finder input, .finder select {
  width: 100%; border: 0; padding: 0; font: 500 16px var(--sans); color: var(--ink); background: none;
  appearance: none; cursor: pointer;
}
.finder input { cursor: text; }
.finder input:focus, .finder select:focus { outline: none; }
.finder button {
  background: var(--clay); color: #fff; border: 0; padding: 0 34px; cursor: pointer;
  font: 600 15px var(--sans); letter-spacing: .01em; transition: background .22s;
}
.finder button:hover { background: var(--clay-d); }

.hero-stats { display: flex; gap: 40px; margin-top: 34px; font-size: 13.5px; color: #93A6AC; }
.hero-stats b { display: block; font-family: var(--disp); font-size: 27px; font-weight: 600; color: #fff; letter-spacing: -.02em; }

/* -------------------------------------------------------------- section -- */
.sec { padding: 84px 0; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.sec-head h2 { font-size: clamp(28px, 3.6vw, 42px); letter-spacing: -.028em; }
.sec-head p { color: var(--muted); margin: 8px 0 0; max-width: 52ch; }
.sec-more { font-size: 14px; font-weight: 600; color: var(--ink); border-bottom: 1.5px solid var(--brand); padding-bottom: 2px; white-space: nowrap; }
.sec-more:hover { color: var(--brand); }

/* contour rule — a hairline that reads as terrain, used between bands */
.rule-contour { height: 26px; background: no-repeat center/100% 26px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='26' preserveAspectRatio='none'%3E%3Cg fill='none' stroke='%23DCD2C1' stroke-width='1'%3E%3Cpath d='M0 13c120-10 180 10 300 6s180-14 300-10 180 16 300 12 180-12 300-8'/%3E%3Cpath d='M0 20c120-10 180 10 300 6s180-14 300-10 180 16 300 12 180-12 300-8' opacity='.5'/%3E%3C/g%3E%3C/svg%3E"); }

/* ------------------------------------------------------------ pkg cards -- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(288px, 1fr)); gap: 26px; }
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(310px, 1fr); gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; scrollbar-width: thin; }
.rail > * { scroll-snap-align: start; }

.card {
  position: relative; display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--rule); border-radius: var(--r); overflow: hidden;
  transition: transform .38s cubic-bezier(.2,.8,.2,1), box-shadow .38s, border-color .38s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-l); border-color: transparent; }
.card-fig { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--paper-2); }
.card-fig img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.card:hover .card-fig img { transform: scale(1.055); }

/* No photo? A plotted plate, not a grey box. Six deterministic variants. */
.plate { position: absolute; inset: 0; }
.plate svg { width: 100%; height: 100%; }
.plate-0 { background: linear-gradient(150deg, #0B1F28, #17758F); }
.plate-1 { background: linear-gradient(150deg, #143039, #C4622D); }
.plate-2 { background: linear-gradient(150deg, #17758F, #25A8CB); }
.plate-3 { background: linear-gradient(150deg, #2A2118, #9B4A1E); }
.plate-4 { background: linear-gradient(150deg, #0B1F28, #3F5D4A); }
.plate-5 { background: linear-gradient(150deg, #1D2A3A, #6E5B8A); }

.card-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: color-mix(in srgb, var(--paper) 92%, transparent); backdrop-filter: blur(6px);
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 2px; color: var(--ink);
}
.card-nights {
  position: absolute; bottom: 12px; left: 12px; z-index: 2; color: #fff;
  font-size: 12.5px; font-weight: 600; letter-spacing: .04em;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}
.card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.card-place { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-d); font-weight: 600; margin-bottom: 9px; }
.card h3 { font-size: 20px; line-height: 1.22; letter-spacing: -.018em; margin-bottom: 10px; }
.card-sum { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0 0 18px; }
.card-foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--paper-2); }
.card-price { font-family: var(--disp); font-size: 25px; font-weight: 600; color: var(--clay-d); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.card-price small { display: block; font-family: var(--sans); font-size: 11px; font-weight: 500; color: var(--muted); letter-spacing: .04em; margin-top: 2px; }
.card-ask { font-family: var(--disp); font-size: 18px; font-weight: 600; color: var(--ink); font-style: italic; }
.card-go { font-size: 13px; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; }
.card-go::after { content: "→"; transition: transform .28s cubic-bezier(.2,.8,.2,1); }
.card:hover .card-go::after { transform: translateX(4px); }
.card-link { position: absolute; inset: 0; z-index: 3; }

/* ------------------------------------------------------------- listing -- */
.list-head { background: var(--ink); color: #fff; padding: 58px 0 40px; position: relative; overflow: hidden; }
.list-head h1 { font-size: clamp(32px, 5vw, 54px); letter-spacing: -.03em; color: #fff; margin-bottom: 10px; }
.list-head p { color: #9DB0B6; margin: 0; }
.crumb { font-size: 12.5px; color: #7F959C; margin-bottom: 18px; letter-spacing: .04em; }
.crumb a:hover { color: var(--brand); }

.layout { display: grid; grid-template-columns: 246px 1fr; gap: 44px; align-items: start; padding: 40px 0 90px; }
.filters { position: sticky; top: 92px; font-size: 14px; }
.filters fieldset { border: 0; padding: 0; margin: 0 0 26px; }
.filters legend { font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase; font-weight: 700; color: var(--ink); padding: 0 0 12px; }
.filters a { display: flex; justify-content: space-between; gap: 8px; padding: 6px 0; color: var(--muted); transition: color .18s; }
.filters a:hover { color: var(--ink); }
.filters a.on { color: var(--clay-d); font-weight: 600; }
.filters a em { font-style: normal; font-size: 12px; color: #9AA8AC; font-variant-numeric: tabular-nums; }
.filters-clear { display: inline-block; margin-bottom: 22px; font-size: 13px; font-weight: 600; color: var(--clay-d); border-bottom: 1px solid currentColor; }

.list-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 26px; padding-bottom: 16px; border-bottom: 1px solid var(--rule); }
.list-bar b { font-family: var(--disp); font-size: 20px; font-weight: 600; }
.list-bar select { font: 500 14px var(--sans); border: 1px solid var(--rule); background: #fff; padding: 8px 12px; border-radius: var(--r); color: var(--ink); }
.empty-note { padding: 70px 0; text-align: center; color: var(--muted); }
.empty-note h3 { font-size: 24px; margin-bottom: 10px; color: var(--ink); }

.pager { display: flex; gap: 6px; justify-content: center; margin-top: 46px; }
.pager a, .pager span { min-width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--rule); border-radius: var(--r); font-size: 14px; font-weight: 500; font-variant-numeric: tabular-nums; }
.pager .on { background: var(--ink); color: #fff; border-color: var(--ink); }
.pager a:hover { border-color: var(--ink); }

/* -------------------------------------------------------------- detail -- */
.pk-hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.pk-hero-fig { position: absolute; inset: 0; }
.pk-hero-fig img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.pk-hero-fig::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,31,40,.72), rgba(11,31,40,.94)); }
.pk-hero-in { position: relative; z-index: 2; padding: 54px 0 62px; max-width: 860px; }
.pk-hero h1 { font-size: clamp(30px, 4.6vw, 54px); color: #fff; letter-spacing: -.032em; margin-bottom: 18px; font-variation-settings: "SOFT" 18; }
.pk-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.chip { border: 1px solid rgba(255,255,255,.28); border-radius: 999px; padding: 5px 14px; font-size: 12.5px; font-weight: 500; color: #D6E2E6; }
.chip-b { background: var(--brand); border-color: var(--brand); color: #04222B; font-weight: 600; }
.pk-lede { font-size: 17px; color: #B9C7CC; max-width: 66ch; margin: 0; }

.pk-grid { display: grid; grid-template-columns: 1fr 348px; gap: 52px; align-items: start; padding: 52px 0 90px; }
.pk-block { margin-bottom: 52px; }
.pk-block > h2 { font-size: 28px; letter-spacing: -.024em; margin-bottom: 6px; }
.pk-block > .pk-note { color: var(--muted); font-size: 14.5px; margin-bottom: 24px; }

/* itinerary as a route line — the spine of the page, and the memorable bit */
.route { list-style: none; margin: 0; padding: 0; position: relative; }
.route::before {
  content: ""; position: absolute; left: 15px; top: 14px; bottom: 14px; width: 0;
  border-left: 2px dashed var(--rule);
}
.day { position: relative; padding: 0 0 30px 56px; }
.day-dot {
  position: absolute; left: 6px; top: 4px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--brand); display: grid; place-items: center;
  font-size: 9.5px; font-weight: 700; color: var(--brand-d); font-family: var(--sans);
}
.day:last-child .day-dot { background: var(--clay); border-color: var(--clay); color: #fff; }
.day-n { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--clay-d); font-weight: 700; margin-bottom: 5px; }
.day h3 { font-size: 19px; letter-spacing: -.015em; margin-bottom: 7px; }
.day p { font-size: 14.5px; color: var(--muted); line-height: 1.62; margin: 0 0 8px; }
.day-facts { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 12.5px; color: #7B8A8F; }
.day-facts b { font-weight: 600; color: var(--ink); }

/* stay grid — hotel names are the hover targets */
.stays { width: 100%; min-width: 660px; border-collapse: collapse; font-size: 14px; }
.stays th, .stays td { text-align: left; padding: 13px 14px; border-bottom: 1px solid var(--rule); vertical-align: top; }
.stays thead th { font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); font-weight: 700; border-bottom-width: 1.5px; }
.stays tbody th { font-weight: 600; color: var(--ink); white-space: nowrap; }
.stays tbody th small { display: block; font-weight: 500; color: var(--muted); font-size: 12px; margin-top: 2px; }
.stays td { color: var(--muted); }
.hn {
  color: var(--ink); border-bottom: 1px dotted var(--brand); cursor: help;
  transition: color .18s, border-color .18s;
}
.hn:hover { color: var(--brand-d); border-bottom-style: solid; }
.stays-scroll { overflow-x: auto; overscroll-behavior-x: contain; }

/* the field card that pops on a hotel name */
.hcard {
  position: fixed; z-index: 200; width: 288px; background: #fff; border: 1px solid var(--rule);
  border-radius: var(--r); box-shadow: var(--shadow-l); padding: 0; overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s, transform .18s, visibility .18s;
  font-size: 13.5px;
}
.hcard.on { opacity: 1; visibility: visible; transform: translateY(0); }
.hcard-fig { height: 132px; background: var(--paper-2); }
.hcard-fig img { width: 100%; height: 100%; object-fit: cover; }
.hcard-b { padding: 13px 15px 15px; }
.hcard-b h4 { font-size: 15.5px; letter-spacing: -.012em; margin-bottom: 4px; }
.hcard-loc { font-size: 12px; color: var(--brand-d); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.hcard-d { color: var(--muted); font-size: 13px; line-height: 1.5; margin: 0; }
.hcard-miss { color: var(--muted); font-size: 12.5px; font-style: italic; margin: 0; }
.hcard-star { color: var(--clay-d); font-weight: 700; font-size: 12.5px; margin-bottom: 6px; }
.hcard-star span { color: var(--muted); font-weight: 500; }
.hcard-addr { color: var(--text); font-size: 12.5px; line-height: 1.45; margin: 0 0 9px; }
.hcard-links { display: flex; gap: 14px; font-size: 12.5px; font-weight: 600; }
.hcard-links a { color: var(--brand-d); border-bottom: 1px solid currentColor; }
.hcard-src { margin-top: 10px; padding-top: 8px; border-top: 1px solid var(--paper-2); font-size: 10.5px; color: var(--muted); }
.hcard-src a { text-decoration: underline; }

/* inclusions */
.incl { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.incl ul { list-style: none; margin: 0; padding: 0; font-size: 14.5px; }
.incl li { position: relative; padding: 0 0 9px 26px; color: var(--muted); line-height: 1.5; }
.incl li::before { position: absolute; left: 0; top: 0; font-weight: 700; }
.incl-in li::before { content: "＋"; color: var(--brand); }
.incl-ex li::before { content: "－"; color: var(--clay); }
.incl h3 { font-size: 17px; margin-bottom: 14px; }

/* price rail */
.rail-buy { position: sticky; top: 92px; }
.buy { background: #fff; border: 1px solid var(--rule); border-radius: var(--r); box-shadow: var(--shadow); overflow: hidden; }
.buy-top { padding: 22px 22px 20px; border-bottom: 1px dashed var(--rule); position: relative; }
.buy-from { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.buy-price { font-family: var(--disp); font-size: 42px; font-weight: 600; color: var(--ink); letter-spacing: -.035em; line-height: 1.05; margin: 4px 0 2px; font-variant-numeric: tabular-nums; }
.buy-per { font-size: 13px; color: var(--muted); }
.buy-ask { font-family: var(--disp); font-size: 27px; font-weight: 600; font-style: italic; color: var(--ink); margin: 6px 0 4px; }
/* the seal: a stamped price mark, rotated, the one flourish on the page */
.seal {
  position: absolute; right: 16px; top: 18px; width: 74px; height: 74px; border-radius: 50%;
  border: 1.5px solid var(--clay); color: var(--clay); transform: rotate(-13deg);
  display: grid; place-items: center; text-align: center; opacity: .85;
  font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; line-height: 1.25;
}
.seal::before { content: ""; position: absolute; inset: 4px; border: 1px dashed currentColor; border-radius: 50%; }
.buy-rows { padding: 16px 22px; font-size: 13.5px; }
.buy-rows div { display: flex; justify-content: space-between; gap: 10px; padding: 6px 0; color: var(--muted); }
.buy-rows b { color: var(--ink); font-weight: 600; text-align: right; }
.buy-acts { padding: 0 22px 22px; display: grid; gap: 9px; }
.btn { display: block; text-align: center; padding: 13px 18px; border-radius: var(--r); font: 600 15px var(--sans); transition: background .22s, color .22s, border-color .22s; }
.btn-1 { background: var(--clay); color: #fff; }
.btn-1:hover { background: var(--clay-d); }
.btn-2 { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-2:hover { background: var(--ink); color: #fff; }
.buy-fine { padding: 0 22px 20px; font-size: 12px; color: var(--muted); line-height: 1.5; margin: 0; }

/* ---------------------------------------------------------- home extras -- */
.band-ink { background: var(--ink); color: #E4EBED; padding: 80px 0; position: relative; overflow: hidden; }
.band-ink h2 { color: #fff; }
.why { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); gap: 38px; margin-top: 44px; }
.why h3 { font-size: 18.5px; color: #fff; margin-bottom: 9px; }
.why p { font-size: 14.5px; color: #94A7AD; line-height: 1.6; margin: 0; }
.why-n { font-family: var(--disp); font-size: 13px; color: var(--brand); font-weight: 600; letter-spacing: .1em; margin-bottom: 14px; display: block; }

.dests { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.dest {
  position: relative; aspect-ratio: 3/4; border-radius: var(--r); overflow: hidden;
  display: flex; align-items: flex-end; padding: 18px; color: #fff; isolation: isolate;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.dest:hover { transform: translateY(-6px); }
.dest::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11,31,40,.15) 40%, rgba(11,31,40,.88)); }
.dest-bg { position: absolute; inset: 0; z-index: -2; }
.dest b { font-family: var(--disp); font-size: 21px; font-weight: 600; letter-spacing: -.018em; display: block; }
.dest span { font-size: 12.5px; color: #C3D2D7; }

/* -------------------------------------------------------------- footer -- */
.foot { background: var(--ink); color: #93A7AD; padding: 68px 0 0; font-size: 14px; }
.foot-in { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; padding-bottom: 52px; }
.foot-brand { color: #C8D4D8; }
.foot-line { font-family: var(--disp); font-size: 23px; color: #fff; letter-spacing: -.02em; margin: 18px 0 14px; max-width: 20ch; }
.foot-fine { font-size: 13px; color: #7F949A; line-height: 1.6; max-width: 42ch; margin: 0; }
.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.foot-cols h4 { font-family: var(--sans); font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase; color: #fff; font-weight: 700; margin-bottom: 15px; }
.foot-cols a { display: block; padding: 5px 0; color: #93A7AD; transition: color .18s; }
.foot-cols a:hover { color: var(--brand); }
.foot-base { display: flex; justify-content: space-between; gap: 16px; padding: 20px 0 26px; border-top: 1px solid rgba(255,255,255,.09); font-size: 12.5px; color: #6E8288; }
.foot-coord { font-variant-numeric: tabular-nums; letter-spacing: .06em; }

/* --------------------------------------------------------- breakpoints -- */
@media (max-width: 1080px) {
  .pk-grid { grid-template-columns: 1fr; }
  .rail-buy { position: static; }
  .buy { max-width: 420px; }
}
@media (max-width: 900px) {
  .layout { grid-template-columns: 1fr; gap: 26px; }
  .filters { position: static; display: block; padding-bottom: 20px; border-bottom: 1px solid var(--rule); }
  /* Facets go side by side on a phone, or the first result starts below the fold. */
  .filters fieldset { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0 18px; margin-bottom: 20px; }
  .filters legend { grid-column: 1 / -1; }
  .finder { grid-template-columns: 1fr 1fr; }
  .finder label:nth-child(2) { border-right: 0; }
  .finder button { grid-column: 1 / -1; padding: 15px; }
  .foot-in { grid-template-columns: 1fr; gap: 38px; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--rule); padding: 18px 20px 24px; gap: 4px;
  }
  .nav.open .nav-links a { padding: 10px 0; font-size: 16px; }
  .nav-burger { display: block; margin-left: auto; }
  .sec { padding: 58px 0; }
  .hero { padding: 62px 0 84px; }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .incl { grid-template-columns: 1fr; }
  .hero-stats { gap: 26px; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .day { padding-left: 46px; }
}
