/* ============================================================
   Getaway Guide styles — shared by the getaway hub (/getaway),
   the area pages (/getaway/*), /reception, and /fredericksburg
   (cards, area chooser, map, decision tree).
   Mobile-first: base styles target ~390px, then scale up.
   ============================================================ */

/* ── Page hero (ivory band) ────────────────────────────────── */
.gw-hero {
  padding: calc(var(--header-height-mobile) + var(--space-lg)) 0 var(--space-lg);
  background: var(--color-ivory);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.gw-hero .eyebrow { margin-bottom: var(--space-sm); }

.gw-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  margin-bottom: var(--space-sm);
}

.gw-hero__lede {
  font-family: var(--font-subhead);
  font-size: clamp(16px, 1.8vw, 21px);
  color: var(--color-mid);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.65;
  padding: 0 var(--space-sm);
}

/* Facts line under an area-page hero lede: drive time + back-to-hub link */
.gw-hero__facts {
  margin-top: var(--space-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-sage-dark);
}

.gw-hero__facts a {
  color: var(--color-gold);
  text-decoration: none;
}

.gw-hero__facts a:hover { color: var(--color-gold-light); }

@media (min-width: 768px) {
  .gw-hero { padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl); }
}

/* ── Photo hero variant (area image behind the heading) ────── */
.gw-hero--photo {
  position: relative;
  overflow: hidden;
  border-bottom: none;
  min-height: clamp(360px, 52svh, 560px);
  display: flex;
  align-items: center;
}

.gw-hero--photo .gw-hero__bg,
.gw-hero--photo .gw-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gw-hero--photo .gw-hero__bg img {
  object-fit: cover;
  object-position: center;
}

/* Dark scrim between photo and text */
.gw-hero--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(16, 12, 10, 0.55) 0%, rgba(16, 12, 10, 0.42) 55%, rgba(16, 12, 10, 0.52) 100%);
}

.gw-hero--photo .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.gw-hero--photo .eyebrow { color: var(--color-gold-light); }
.gw-hero--photo h1 { color: var(--color-white); }
.gw-hero--photo .gw-hero__lede { color: rgba(255, 255, 255, 0.92); }
.gw-hero--photo .gw-hero__facts { color: rgba(255, 255, 255, 0.85); }
.gw-hero--photo .gw-hero__facts a { color: var(--color-gold-light); }
.gw-hero--photo .gw-hero__facts a:hover { color: var(--color-white); }

/* Tiny photo-credit line, bottom-right of the hero */
.gw-hero__credit {
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 2;
  margin: 0;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}

.gw-hero__credit a {
  color: inherit;
  text-decoration: none;
}

.gw-hero__credit a:hover { color: rgba(255, 255, 255, 0.85); }

/* ── Section scaffolding ───────────────────────────────────── */
.gw-section { padding: var(--space-lg) 0 var(--space-xs); }

/* base.css gives <p> auto side margins (centers width-capped paragraphs);
   getaway sections are left-aligned, so cancel that here */
.gw-section p {
  margin-left: 0;
  margin-right: 0;
}

.gw-heading {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: 10px;
}

.gw-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(25px, 3.2vw, 36px);
  font-style: italic;
  font-weight: 400;
  color: var(--color-charcoal);
}

.gw-heading__rule { flex: 1; height: 1px; background: var(--color-border); min-width: 24px; }

.gw-heading__count {
  font-size: var(--text-xs);
  color: var(--color-mid);
  font-style: italic;
  white-space: nowrap;
}

.gw-sub {
  color: var(--color-mid);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 68ch;
  margin-bottom: var(--space-md);
}

/* italic overhang crowds the following word */
.gw-sub em { margin-right: 0.12em; }

.gw-subgroup {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-sage-dark);
  margin: var(--space-md) 0 var(--space-sm);
}

@media (min-width: 768px) {
  .gw-section { padding: var(--space-xl) 0 var(--space-sm); }
}

/* ── Lay of the land ───────────────────────────────────────── */
.gw-lay { display: grid; gap: var(--space-md); }

.gw-lay h2 {
  font-family: var(--font-heading);
  font-size: clamp(25px, 3vw, 34px);
  font-style: italic;
  font-weight: 400;
  margin: 8px 0 12px;
}

.gw-lay p { color: var(--color-mid); line-height: 1.7; margin-bottom: 12px; max-width: 62ch; }

.gw-drive {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: var(--space-md);
}

.gw-drive h3 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-mid);
  margin-bottom: 12px;
}

.gw-drive__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14.5px;
}

.gw-drive__row:last-of-type { border-bottom: none; }

.gw-drive__time {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--color-sage-dark);
  white-space: nowrap;
}

.gw-drive__foot { font-size: var(--text-xs); color: var(--color-mid); margin-top: 10px; }

@media (min-width: 820px) {
  .gw-lay { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-lg); align-items: start; }
}

/* ── Area intro commentary (area pages) ────────────────────── */
.gw-intro p {
  color: var(--color-mid);
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 68ch;
}

/* ── Area chooser (getaway hub) ────────────────────────────── */
.gw-areas {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

@media (min-width: 820px) { .gw-areas { grid-template-columns: repeat(3, 1fr); gap: var(--space-md); } }

.area-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-charcoal);
  transition: box-shadow var(--duration-base) var(--ease-smooth),
              border-color var(--duration-fast) var(--ease-smooth);
}

.area-card:hover {
  box-shadow: 0 8px 28px rgba(44, 44, 44, 0.12);
  border-color: rgba(184, 154, 94, 0.5);
}

.area-card:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 2px; }

.area-card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-ivory);
}

.area-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.area-card:hover .area-card__media img { transform: scale(1.03); }

.area-card__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.area-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.area-card__dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }

.area-card__drive {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-mid);
}

.area-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.area-card__sketch {
  font-size: 13.5px;
  color: var(--color-mid);
  line-height: 1.6;
}

.area-card__fit {
  font-family: var(--font-subhead);
  font-style: italic;
  font-size: 14px;
  color: var(--color-charcoal);
  border-top: 1px dashed var(--color-border);
  padding-top: 10px;
  margin-top: auto;
}

.area-card__cta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  padding-top: 6px;
}

.area-card:hover .area-card__cta { color: var(--color-gold-light); }

/* Fredericksburg footnote under the chooser — deliberately quiet */
.gw-footnote {
  margin-top: var(--space-md);
  font-family: var(--font-subhead);
  font-style: italic;
  font-size: 14.5px;
  color: var(--color-mid);
}

.gw-footnote a { color: var(--color-sage-dark); }

/* Cross-links between area pages */
.gw-area-nav {
  margin-top: var(--space-md);
  font-size: 14px;
  color: var(--color-mid);
}

.gw-area-nav a { color: var(--color-sage-dark); font-weight: 700; }

/* ── Map panel ─────────────────────────────────────────────── */
.gw-map-panel {
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

/* In-map layer panel (top-right) — from the approved map concept */
.layer-panel {
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  padding: 14px 16px;
  font-family: var(--font-body);
  min-width: 188px;
}

.layer-panel__title {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-mid);
  margin-bottom: 10px;
}

.layer-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  user-select: none;
}

.layer-row input { position: absolute; opacity: 0; width: 0; height: 0; }

.layer-row .box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid var(--swatch);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: background var(--duration-fast) var(--ease-smooth);
}

.layer-row input:checked + .box { background: var(--swatch); }
.layer-row .box svg { width: 12px; height: 12px; opacity: 0; transition: opacity var(--duration-fast) var(--ease-smooth); }
.layer-row input:checked + .box svg { opacity: 1; }
.layer-row:has(input:focus-visible) .box { outline: 2px solid var(--color-gold); outline-offset: 2px; }

.layer-row .name { font-size: 14px; color: var(--color-charcoal); flex: 1; }
.layer-row .count { font-size: 12px; color: var(--color-mid); font-variant-numeric: tabular-nums; }
.layer-row.is-off .name,
.layer-row.is-off .count { color: #b3a99a; }

.layer-panel__hint {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--color-border);
  font-family: var(--font-subhead);
  font-style: italic;
  font-size: 12px;
  color: var(--color-sage-dark);
  line-height: 1.4;
}

/* Mobile (≤767px): getaway-map.js re-parents the panel out of the map and
   into the map panel as a filter bar above it — the in-map control covered
   too much of the map on small screens. Rows become tap-friendly pills. */
.layer-panel--inline {
  position: static;
  min-width: 0;
  border: none;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: var(--color-white);
  padding: 12px 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
}

.layer-panel--inline .layer-panel__title { flex: 0 0 100%; margin-bottom: 2px; }

.layer-panel--inline .layer-row {
  min-height: 44px;
  padding: 5px 14px 5px 10px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  gap: 8px;
}

.layer-panel--inline .layer-row .name { font-size: 13px; flex: 0 0 auto; }
.layer-panel--inline .layer-row.is-off { border-style: dashed; }
.layer-panel--inline .layer-panel__hint { display: none; }

.gw-map {
  height: 380px;
  width: 100%;
  position: relative;
  z-index: 0; /* keep Leaflet panes under the sticky header */
}

@media (min-width: 768px) { .gw-map { height: 480px; } }

.gw-map-caption {
  padding: 10px 14px;
  font-size: var(--text-xs);
  color: var(--color-mid);
  font-style: italic;
  border-top: 1px solid var(--color-border);
}

/* Tap-to-explore shield (mobile) */
.map-shield {
  position: absolute;
  inset: 0;
  z-index: 800;
  background: rgba(18, 14, 10, 0.18);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18px;
}

.map-shield span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 10px 18px;
  border-radius: 999px;
}

/* Custom glyph pins — from the approved map concept */
.pin {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2.5px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  transition: transform var(--duration-fast) var(--ease-smooth);
}

.pin:hover { transform: scale(1.12); }
.pin svg { width: 16px; height: 16px; }
.pin--stay { background: var(--color-gold); }
.pin--eat { background: var(--color-sage); }
.pin--do { background: #5a8ca8; }
.pin--air { background: #5a5a5a; }
.pin--air svg { width: 15px; height: 15px; }
.pin--chapel {
  background: var(--color-charcoal);
  box-shadow: 0 0 0 3px var(--color-gold-light), 0 2px 6px rgba(0, 0, 0, 0.4);
}
.pin--chapel svg { width: 18px; height: 18px; }

/* Leaflet popup, branded */
.leaflet-popup-content-wrapper {
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(44, 44, 44, 0.18);
}

.leaflet-popup-content { margin: 14px 16px; line-height: 1.5; font-family: var(--font-body); }

.map-pop__cat {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.map-pop__name {
  display: block;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 400;
  color: var(--color-charcoal);
  margin: 0 0 2px;
  line-height: 1.2;
}

.map-pop__tagline {
  font-family: var(--font-subhead);
  font-style: italic;
  color: var(--color-sage-dark);
  font-size: 13px;
  margin-bottom: 8px;
}

.map-pop__reception { color: #a56a4e; }

.map-pop__blurb {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--color-mid);
  line-height: 1.5;
  margin: 0 0 10px;
  max-width: 240px;
}

.map-pop__link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  padding: 4px 0;
}

.map-pop__link:hover { color: var(--color-sage-dark); }

/* ── Spot cards ────────────────────────────────────────────── */
.gw-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

@media (min-width: 640px) { .gw-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .gw-grid { grid-template-columns: repeat(3, 1fr); } }

.spot-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow var(--duration-base) var(--ease-smooth),
              border-color var(--duration-fast) var(--ease-smooth);
}

.spot-card:hover {
  box-shadow: 0 8px 28px rgba(44, 44, 44, 0.09);
  border-color: rgba(184, 154, 94, 0.5);
}

.spot-card[hidden] { display: none; }

.spot-card--flash {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px var(--color-gold);
}

.spot-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.spot-card__dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.spot-card__dot--stay { background: var(--color-gold); }
.spot-card__dot--eat { background: var(--color-sage); }
.spot-card__dot--do { background: #5a8ca8; }

.spot-card__type {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-mid);
}

.spot-card__town {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sage-dark);
  background: var(--color-ivory);
  padding: 3px 8px;
  border-radius: 999px;
}

.spot-card__chip {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-sage);
  padding: 3px 8px;
  border-radius: 999px;
}

.spot-card h3 {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-charcoal);
}

.spot-card__blurb {
  font-size: 13.5px;
  color: var(--color-mid);
  line-height: 1.6;
}

.spot-card__take {
  font-family: var(--font-subhead);
  font-style: italic;
  font-size: 14px;
  color: var(--color-charcoal);
  border-top: 1px dashed var(--color-border);
  padding-top: 10px;
  margin-top: auto;
}

.spot-card__take::before {
  content: "Our take — ";
  font-family: var(--font-body);
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.spot-card__link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  padding: 6px 0;
  align-self: flex-start;
}

.spot-card__link:hover { color: var(--color-gold-light); }

/* Image variant (Reception Ideas page) */
.spot-card--media { padding: 0; }

.spot-card--media .spot-card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-ivory);
}

.spot-card--media .spot-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.spot-card--media:hover .spot-card__media img { transform: scale(1.03); }

.spot-card--media .spot-card__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.gw-empty {
  font-size: 14px;
  color: var(--color-mid);
  font-style: italic;
  padding: var(--space-sm) 0;
}

.gw-empty[hidden] { display: none; }

/* ── Area filter chips (Reception Ideas) ───────────────────── */
.gw-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 var(--space-sm);
}

.gw-chips[hidden] { display: none; }

.gw-chip {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-mid);
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  padding: 0 18px;
  min-height: 44px; /* tap target */
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-smooth),
              border-color var(--duration-fast) var(--ease-smooth),
              background var(--duration-fast) var(--ease-smooth);
}

.gw-chip:hover { border-color: var(--color-gold); color: var(--color-charcoal); }

.gw-chip.is-active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}

.gw-chips__status {
  font-size: 14px;
  font-style: italic;
  color: var(--color-mid);
  margin: 0 0 var(--space-sm);
}

.gw-chips__status[hidden] { display: none; }

/* Type groups (venues / rentals) — anchor targets for the decision tree */
.gw-recgroup { scroll-margin-top: calc(var(--header-height) + var(--space-sm)); }

/* Shown only when the area filter empties the group and it falls back to
   its full list (e.g. no Wimberley-area rentals yet) */
.gw-recnote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-mid);
  background: var(--color-ivory);
  border-left: 3px solid var(--color-gold);
  padding: 12px var(--space-sm);
  margin: 0 0 var(--space-sm);
  max-width: 68ch;
}

.gw-recnote[hidden] { display: none; }

/* ── Cross-link banner ─────────────────────────────────────── */
.gw-crosslink {
  display: block;
  background: var(--color-ivory);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-sage);
  padding: var(--space-sm) var(--space-md);
  margin: var(--space-md) 0 0;
  text-decoration: none;
  color: var(--color-charcoal);
  font-family: var(--font-subhead);
  font-size: 16px;
  line-height: 1.55;
  transition: border-color var(--duration-fast) var(--ease-smooth);
}

.gw-crosslink:hover { border-left-color: var(--color-gold); }

.gw-crosslink strong { font-family: var(--font-body); font-size: 14px; }

/* ── Decision tree (Reception Ideas) ───────────────────────── */
.gw-paths {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  counter-reset: gw-path;
}

@media (min-width: 820px) {
  .gw-paths { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  /* odd card count: let the last card span the full row instead of orphaning */
  .gw-paths .gw-path:nth-child(odd):last-child { grid-column: 1 / -1; }
}

.gw-path {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gw-path__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.gw-path h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
}

.gw-path p { font-size: 14px; color: var(--color-mid); line-height: 1.65; }

.gw-path__fit {
  font-family: var(--font-subhead);
  font-style: italic;
  font-size: 14.5px;
  color: var(--color-charcoal);
}

.gw-path__pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.gw-price-chip {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-charcoal);
  background: var(--color-ivory);
  border: 1px solid var(--color-border);
  padding: 6px 10px;
  border-radius: 2px;
  font-variant-numeric: tabular-nums;
}

.gw-path__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: auto;
  padding-top: 6px;
}

.gw-path__links a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  padding: 6px 0;
}

.gw-path__links a:hover { color: var(--color-gold-light); }

.gw-premier-note {
  font-size: 13px;
  color: var(--color-mid);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* Gathering Hour timeline strip */
.gw-timeline__label {
  flex-basis: 100%;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.gw-timeline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--color-charcoal);
  background: var(--color-ivory);
  border: 1px solid var(--color-border);
  padding: 10px 14px;
}

.gw-timeline b { font-weight: 700; }
.gw-timeline .sep { color: var(--color-gold); font-weight: 700; }

/* ── Closing CTA (shared) ──────────────────────────────────── */
.gw-cta {
  background: var(--color-charcoal);
  color: var(--color-white);
  text-align: center;
  padding: var(--space-xl) 0;
  margin-top: var(--space-lg);
}

.gw-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 400;
  color: var(--color-white);
  margin: 10px 0 12px;
}

.gw-cta p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 54ch;
  margin: 0 auto var(--space-md);
  padding: 0 var(--space-sm);
}

.gw-cta .btn-group { justify-content: center; }

/* ── Reduced motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .spot-card,
  .spot-card--media .spot-card__media img,
  .area-card,
  .area-card__media img,
  .pin { transition: none; }
  .spot-card--media:hover .spot-card__media img { transform: none; }
  .area-card:hover .area-card__media img { transform: none; }
  .pin:hover { transform: none; }
}

/* ── Getaway shortlist ("Our list") ────────────────────────────
   Save hearts on spot cards + floating pill + panel + toast.
   Markup injected by js/getaway-list.js; save button rendered
   (hidden) by partials/spot-card.njk. */

.spot-card__save {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 6px;
  min-height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-mid);
  transition: color var(--duration-fast) var(--ease-smooth);
}

.spot-card__save svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  flex: none;
}

.spot-card__save-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.spot-card__save:hover { color: var(--color-gold); }

.spot-card__save:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.spot-card__save--saved { color: var(--color-gold); }
.spot-card__save--saved svg { fill: var(--color-gold); stroke: var(--color-gold); }

/* Floating pill */
.gw-list-pill {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  min-height: 44px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(44, 44, 44, 0.18);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-charcoal);
}

.gw-list-pill svg {
  width: 16px;
  height: 16px;
  fill: var(--color-gold);
  stroke: var(--color-gold);
  stroke-width: 2;
}

.gw-list-pill__count {
  background: var(--color-gold);
  color: var(--color-white);
  border-radius: 999px;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  padding: 0 6px;
}

.gw-list-pill:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* Backdrop + panel */
.gw-list-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1150;
  background: rgba(18, 14, 10, 0.35);
}

.gw-list-panel {
  position: fixed;
  z-index: 1200;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: 76svh;
  overflow-y: auto;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px 12px 0 0;
  padding: 20px 20px 24px;
  box-shadow: 0 -8px 32px rgba(44, 44, 44, 0.2);
}

@media (min-width: 640px) {
  .gw-list-panel {
    left: auto;
    right: 16px;
    bottom: 76px;
    width: 400px;
    max-height: 70vh;
    border-radius: 12px;
  }
}

.gw-list-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.gw-list-panel__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--color-charcoal);
}

.gw-list-panel__close {
  background: var(--color-ivory);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: var(--color-charcoal);
  width: 44px;
  height: 44px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background var(--duration-fast) var(--ease-smooth),
              color var(--duration-fast) var(--ease-smooth),
              border-color var(--duration-fast) var(--ease-smooth);
}

.gw-list-panel__close:hover {
  background: var(--color-charcoal);
  border-color: var(--color-charcoal);
  color: var(--color-white);
}

.gw-list-panel__items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gw-list-panel__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
}

.gw-list-panel__dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.gw-list-panel__dot--stay { background: var(--color-gold); }
.gw-list-panel__dot--eat { background: var(--color-sage); }
.gw-list-panel__dot--do { background: #5a8ca8; }

.gw-list-panel__itembody {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.gw-list-panel__itemname {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-charcoal);
}

.gw-list-panel__itemmeta {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-mid);
}

.gw-list-panel__remove {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: var(--color-mid);
  padding: 8px 10px;
  min-width: 44px;
  min-height: 44px;
}

.gw-list-panel__remove:hover { color: var(--color-charcoal); }

.gw-list-panel__empty {
  font-size: 14px;
  color: var(--color-mid);
  font-style: italic;
  padding: var(--space-sm) 0;
}

.gw-list-panel__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

.gw-list-panel__btn {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  background: none;
  border: 1.5px solid var(--color-charcoal);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  padding: 10px 12px;
  border-radius: 2px;
  transition: background var(--duration-fast) var(--ease-smooth),
              color var(--duration-fast) var(--ease-smooth);
}

.gw-list-panel__btn:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.gw-list-panel__note {
  font-size: 12px;
  color: var(--color-mid);
  line-height: 1.5;
  margin-top: var(--space-sm);
}

/* Toast */
.gw-list-toast {
  position: fixed;
  z-index: 1300;
  right: 16px;
  bottom: 72px;
  max-width: min(320px, calc(100vw - 32px));
  background: var(--color-charcoal);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  padding: 10px 16px;
  border-radius: 4px;
  box-shadow: 0 6px 24px rgba(44, 44, 44, 0.25);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-smooth),
              transform var(--duration-base) var(--ease-smooth);
}

.gw-list-toast--show {
  opacity: 1;
  transform: translateY(0);
}

/* Print: show only the list */
#gw-list-print { display: none; }

@media print {
  body.gw-list-printing > *:not(#gw-list-print) { display: none !important; }
  body.gw-list-printing #gw-list-print { display: block; }
  #gw-list-print h1 { font-family: Georgia, serif; font-size: 22pt; margin-bottom: 4pt; }
  #gw-list-print .gw-print-sub { font-size: 10pt; color: #555; margin-bottom: 14pt; }
  #gw-list-print h2 { font-size: 13pt; margin: 14pt 0 6pt; border-bottom: 1pt solid #ccc; padding-bottom: 3pt; }
  #gw-list-print ul { margin: 0; padding-left: 14pt; }
  #gw-list-print li { font-size: 10.5pt; line-height: 1.45; margin-bottom: 8pt; }
  #gw-list-print .gw-print-notes { min-height: 140pt; border: 1pt dashed #bbb; margin-top: 6pt; }
}

@media (prefers-reduced-motion: reduce) {
  .spot-card__save,
  .gw-list-panel__btn,
  .gw-list-toast { transition: none; }
}

/* ── Shared shortlist page (/getaway/list) ─────────────────── */

.gw-share-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.gw-share-btn {
  background: none;
  border: 1.5px solid var(--color-charcoal);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  padding: 13px 24px;
  min-height: 44px;
  border-radius: 2px;
  transition: background var(--duration-fast) var(--ease-smooth),
              color var(--duration-fast) var(--ease-smooth);
}

.gw-share-btn:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.gw-share-guide-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  padding: 6px 0;
}

.gw-share-guide-link:hover { color: var(--color-gold-light); }

/* Mobile: stack the actions — full-width buttons, centered link below */
@media (max-width: 640px) {
  .gw-share-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .gw-share-btn { width: 100%; }
  .gw-share-guide-link {
    text-align: center;
    margin-top: var(--space-xs);
  }
}

.gw-share-fallback .container {
  text-align: center;
  max-width: var(--content-width);
}

.gw-share-fallback h2 { margin-bottom: var(--space-sm); }

.gw-share-fallback p {
  color: var(--color-mid);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

@media (prefers-reduced-motion: reduce) {
  .gw-share-btn { transition: none; }
}
