/* Area Guide  -  scoped under .area-guide-page to avoid sage.css conflicts */
.area-guide-page {
  --ag-rad: 14px;
  --ag-line: #e7ddca;
  background: var(--paper);
  color: var(--ink);
}

/* Body clearance for .header--solid owns the offset (1.3.10+). */
.area-guide-page.page-main,
.area-guide-page .page-main {
  padding-top: 0;
}

/* Lead / hero intro  -  full-bleed, clear of fixed header */
.area-guide-page section.lead {
  max-width: 100%;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: clamp(12px, 2vw, 20px) var(--gutter) 18px;
  box-sizing: border-box;
  font-family: var(--body);
  font-weight: 400;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: normal;
  scroll-margin-top: calc(var(--header-h, 72px) + 16px);
}

.area-guide-page section.lead .breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--ink-70);
  scroll-margin-top: calc(var(--header-h, 72px) + 20px);
}

.area-guide-page section.lead h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  line-height: 1.04;
  margin: 0.5rem 0 0.3rem;
}

.area-guide-page section.lead h1 em {
  font-style: italic;
  color: var(--eucalyptus);
}

.area-guide-page section.lead .sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--eucalyptus);
  margin-bottom: 0.7rem;
}

.area-guide-page section.lead > p:not(.sub) {
  color: var(--eucalyptus);
  max-width: 66ch;
  line-height: 1.7;
}

.area-guide-page .filters {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  margin: 22px 0 0;
  align-items: center;
  width: 100%;
}

.area-guide-page .filter-chips-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex: 1 1 auto;
}

.area-guide-page .filter-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  min-width: 0;
  flex: 1 1 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.area-guide-page .filter-chips::-webkit-scrollbar {
  display: none;
}

.area-guide-page .filter-chips__arrow {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 1px solid var(--ag-line);
  background: var(--shell);
  color: var(--ink);
  border-radius: 50%;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
}

.area-guide-page .filter-chips__arrow[hidden] {
  display: none !important;
}

.area-guide-page .map-toggle {
  flex: 0 0 auto;
  margin-left: auto;
  font-family: var(--caps);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.62rem;
  padding: 0.7em 1em;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
}

.area-guide-page .map-toggle[aria-expanded="false"] {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}

.area-guide-page.is-map-hidden .mapcol {
  display: none !important;
}

.area-guide-page.is-map-hidden .split {
  grid-template-columns: minmax(0, 1fr);
}

.area-guide-page.is-map-hidden .map-back {
  display: none !important;
}

.area-guide-page .cols-toggle {
  display: inline-flex;
  gap: 4px;
  margin-left: auto;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
}

.area-guide-page .cols-toggle__label {
  font-family: var(--caps);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.58rem;
  color: var(--eucalyptus);
  margin-right: 4px;
}

.area-guide-page .cols-btn {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  font-family: var(--caps);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  border: 1px solid var(--ag-line);
  background: var(--shell);
  color: var(--eucalyptus);
  border-radius: 8px;
  cursor: pointer;
  transition: 0.18s;
}

.area-guide-page .cols-btn:hover {
  border-color: var(--brass);
  color: var(--ink);
}

.area-guide-page .cols-btn.on {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.area-guide-page .fchip {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--caps);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
  border: 1px solid var(--ag-line);
  background: var(--shell);
  color: var(--eucalyptus);
  border-radius: 100px;
  padding: 0.75em 1.15em;
  cursor: pointer;
  transition: 0.18s;
}

.area-guide-page .fchip:hover {
  border-color: var(--brass);
  color: var(--ink);
}

.area-guide-page .fchip.on {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* Split: lead + cards left, map column stretches full height; footer stays full-bleed below */
.area-guide-page .split {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 42%);
  gap: 0;
  align-items: stretch;
  border-top: 0;
  min-width: 0;
  min-height: calc(100dvh - var(--header-h, 72px));
  overflow-x: clip;
}

.area-guide-page .split__main {
  min-width: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  border-right: 0;
}

.area-guide-page .split__main > section.lead {
  border-bottom: 1px solid var(--ag-line);
}

.area-guide-page .cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-content: start;
  padding: 22px var(--gutter) 70px;
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
}

.area-guide-page .cards--cols-1 {
  grid-template-columns: 1fr;
}

.area-guide-page .cards--cols-2 {
  grid-template-columns: 1fr 1fr;
}

.area-guide-page .cards--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.area-guide-page .cards.is-loading {
  min-height: 200px;
}

.area-guide-page .card {
  background: var(--shell);
  border: 1px solid var(--ag-line);
  border-radius: var(--ag-rad);
  overflow: hidden;
  cursor: pointer;
  transition: 0.22s;
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
}

.area-guide-page .card:hover,
.area-guide-page .card.act {
  transform: translateY(-3px);
  box-shadow: 0 26px 52px -34px rgba(20, 36, 29, 0.55);
  border-color: var(--sage);
}

.area-guide-page .card .ph {
  position: relative;
  aspect-ratio: auto;
  height: 25vh;
  max-height: 40vh;
  min-height: 120px;
  overflow: hidden;
  background: var(--forest);
}

.area-guide-page .card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.area-guide-page .card .pin-no {
  position: absolute;
  left: 12px;
  top: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--brass-soft);
  color: var(--ink);
  font-family: var(--caps);
  font-weight: 600;
  font-size: 0.76rem;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(20, 36, 29, 0.3);
}

.area-guide-page .card .pin-no.off {
  opacity: 0.5;
  font-size: 1rem;
}

.area-guide-page .card.act .pin-no {
  background: var(--brass);
  color: #fff;
  border-color: var(--brass);
}

.area-guide-page .card .tag {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 1;
  background: rgba(251, 248, 240, 0.94);
  border-radius: 100px;
  padding: 0.42em 0.8em;
  font-family: var(--caps);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.56rem;
  font-weight: 500;
  color: var(--brass);
  border: 1px solid rgba(168, 133, 78, 0.35);
}

.area-guide-page .card .tag--dining {
  background: rgba(233, 224, 207, 0.95);
  color: #6b5634;
  border-color: #a8854e;
}

.area-guide-page .card .tag--rainy {
  background: rgba(198, 212, 197, 0.95);
  color: #244336;
  border-color: #50705e;
}

.area-guide-page .card .tag--sights {
  background: rgba(184, 201, 187, 0.95);
  color: #14241d;
  border-color: #244336;
}

.area-guide-page .card .tag--things {
  background: rgba(220, 208, 188, 0.95);
  color: #1d362c;
  border-color: #87a08c;
}

.area-guide-page .cat-pill {
  align-self: flex-start;
  display: inline-flex;
  font-family: var(--caps);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.58rem;
  font-weight: 500;
  padding: 0.45em 0.9em;
  border-radius: 100px;
  border: 1px solid;
  margin-bottom: 0.65rem;
}

.area-guide-page .cat-pill--dining {
  background: #e9e0cf;
  color: #6b5634;
  border-color: #a8854e;
}

.area-guide-page .cat-pill--rainy {
  background: #c6d4c5;
  color: #244336;
  border-color: #50705e;
}

.area-guide-page .cat-pill--sights {
  background: #b8c9bb;
  color: #14241d;
  border-color: #244336;
}

.area-guide-page .cat-pill--things {
  background: #dcd0bc;
  color: #1d362c;
  border-color: #87a08c;
}

.area-guide-page .card .bd {
  padding: 15px 17px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.area-guide-page .card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.15;
}

.area-guide-page .card .ar {
  font-family: var(--caps);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.6rem;
  color: var(--eucalyptus);
  margin-top: 0.35rem;
}

.area-guide-page .card p {
  color: var(--eucalyptus);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-top: 0.55rem;
  margin-bottom: 1.15rem;
}

.area-guide-page .card .cardbtn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--caps);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--brass);
  border: 1px solid var(--brass-soft);
  border-radius: 100px;
  padding: 0.9em 1.2em;
  transition: 0.2s;
}

.area-guide-page .card .cardbtn:hover {
  background: var(--brass);
  color: #fff;
  border-color: var(--brass);
}

.area-guide-page .card:hover .cardbtn {
  border-color: var(--brass);
}

/* Map column stretches with cards; sticky pane fills the viewport on the right */
.area-guide-page .mapcol {
  position: relative;
  min-height: calc(100dvh - var(--header-h, 72px));
  background: #dde6dd;
  border-left: 1px solid var(--ag-line);
  z-index: 1;
}

.area-guide-page .mapcol__sticky {
  position: sticky;
  top: var(--sage-chrome-bottom, var(--header-h, 72px));
  height: calc(100dvh - var(--sage-chrome-bottom, var(--header-h, 72px)));
  max-height: calc(100dvh - var(--sage-chrome-bottom, var(--header-h, 72px)));
  display: flex;
  flex-direction: column;
  background: #dde6dd;
}

/* Footer clears the split and paints full-bleed above the map as it exits */
body.area-guide-page footer.foot,
body:has(.area-guide-page) footer.foot {
  position: relative;
  z-index: 6;
  width: 100%;
  max-width: none;
  clear: both;
}

.area-guide-page #map {
  flex: 1 1 auto;
  height: 100%;
  width: 100%;
  min-height: 0;
  border-radius: 0;
  border: 0;
  background: #dde6dd;
  box-shadow: none;
  z-index: 1;
}

/* Stack zoom + Maui reset under +/− */
.area-guide-page .leaflet-top.leaflet-left {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.area-guide-page .leaflet-control-zoom {
  margin-bottom: 0 !important;
  border: 1px solid rgba(20, 36, 29, 0.2) !important;
  border-radius: 2px !important;
}

.area-guide-page .sage-map-reset {
  margin-left: 10px !important;
  margin-top: 0 !important;
  border: 1px solid rgba(20, 36, 29, 0.2) !important;
  border-radius: 2px !important;
  overflow: hidden;
  box-shadow: none !important;
}

.area-guide-page .sage-map-reset a {
  display: grid !important;
  place-items: center;
  width: 30px;
  height: 30px;
  line-height: 1 !important;
  background: var(--paper, #fbf8f0) !important;
  color: var(--ink, #14241d) !important;
  font-size: 14px !important;
  font-weight: 600;
  text-decoration: none !important;
}

.area-guide-page .sage-map-reset a:hover {
  background: var(--shell, #f4f0e6) !important;
  color: var(--forest, #1f3a2e) !important;
}

.area-guide-page .mapnote {
  font-family: var(--caps);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.56rem;
  color: var(--eucalyptus);
  margin: 0;
  padding: 0.55rem 0.9rem;
  text-align: right;
  background: var(--paper);
  border-top: 1px solid var(--ag-line);
  flex: 0 0 auto;
}

.area-guide-page .mk {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--brass-soft);
  color: var(--ink);
  font-family: var(--caps);
  font-weight: 600;
  font-size: 0.72rem;
  display: grid;
  place-items: center;
  box-shadow: 0 3px 8px rgba(20, 36, 29, 0.45);
  transition: 0.15s;
}

/* Category pin colors  -  Sage muted palette */
.area-guide-page .mk--dining,
.area-guide-page .pin-no--dining:not(.off) {
  background: #e9e0cf;
  border-color: #a8854e;
  color: #6b5634;
}

.area-guide-page .mk--rainy,
.area-guide-page .pin-no--rainy:not(.off) {
  background: #c6d4c5;
  border-color: #50705e;
  color: #244336;
}

.area-guide-page .mk--sights,
.area-guide-page .pin-no--sights:not(.off) {
  background: #b8c9bb;
  border-color: #244336;
  color: #14241d;
}

.area-guide-page .mk--things,
.area-guide-page .pin-no--things:not(.off) {
  background: #dcd0bc;
  border-color: #87a08c;
  color: #1d362c;
}

.area-guide-page .map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin: 0;
  padding: 0.55rem 0.9rem 0.7rem;
  justify-content: flex-end;
  background: var(--paper);
  border-top: 1px solid var(--ag-line);
}

.area-guide-page .map-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--caps);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.54rem;
  color: var(--ink-55);
}

.area-guide-page .map-legend__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
  flex-shrink: 0;
  box-shadow: none;
  font-size: 0;
}

.area-guide-page .mk.act {
  background: var(--brass) !important;
  color: #fff !important;
  border-color: var(--brass) !important;
  transform: scale(1.22);
  z-index: 1000;
}

.area-guide-page .leaflet-popup-content-wrapper {
  border-radius: 10px;
}

.area-guide-page .leaflet-popup-content {
  font-family: var(--body);
  font-size: 0.86rem;
}

.area-guide-page .leaflet-popup-content b {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1rem;
}

.area-guide-page .muted {
  color: var(--eucalyptus);
  font-size: 0.92rem;
  line-height: 1.6;
  padding: 2rem 0;
}

/* Detail page  -  interim spacing until new place HTML ships */
.area-guide-page .dpage {
  max-width: 1340px;
  margin: 0 auto;
  padding: 12px var(--gutter) 70px;
}

.area-guide-page .back {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--caps);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
  color: var(--eucalyptus);
  margin-bottom: 18px;
}

.area-guide-page .back:hover {
  color: var(--brass);
}

.area-guide-page .dhero {
  border-radius: var(--ag-rad);
  padding: 46px 36px;
  color: var(--paper);
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, var(--eucalyptus), var(--forest));
}

.area-guide-page .dhero .dtag {
  font-family: var(--caps);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.62rem;
  color: var(--brass-soft);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.area-guide-page .dhero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  position: relative;
  z-index: 1;
  color: var(--paper);
}

.area-guide-page .dsplit {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  margin-top: 28px;
  align-items: start;
}

.area-guide-page .dmain .prose {
  color: var(--eucalyptus);
  line-height: 1.75;
  font-size: 1rem;
}

.area-guide-page .facts {
  margin-top: 28px;
  border-top: 1px solid var(--ag-line);
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.area-guide-page .facts div span {
  display: block;
  font-family: var(--caps);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.58rem;
  color: var(--brass);
  margin-bottom: 0.25rem;
}

.area-guide-page .facts div b {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1rem;
  color: var(--ink);
}

.area-guide-page .dside {
  position: sticky;
  top: var(--sage-chrome-bottom, var(--header-h, 88px));
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.area-guide-page .dhero.has-image {
  background-size: cover;
  background-position: center;
}

.area-guide-page .dhero.has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 36, 29, 0.15), rgba(20, 36, 29, 0.72));
}

.area-guide-page .ctacard {
  background: var(--shell);
  border: 1px solid var(--ag-line);
  border-radius: var(--ag-rad);
  padding: 22px;
}

.area-guide-page .ctacard .ct-h {
  font-family: var(--caps);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
  color: var(--brass);
  margin-bottom: 1rem;
}

.area-guide-page .ctacard a.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--caps);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.62rem;
  padding: 0.95em 1.2em;
  border: 1px solid var(--brass-soft);
  border-radius: 100px;
  color: var(--brass);
  margin-bottom: 0.6rem;
  transition: 0.2s;
}

.area-guide-page .ctacard a.cta:hover {
  background: var(--brass);
  color: #fff;
  border-color: var(--brass);
}

.area-guide-page .ctacard a.cta:last-child {
  margin-bottom: 0;
}

.area-guide-page #dmap {
  height: 220px;
  border-radius: var(--ag-rad);
  border: 1px solid var(--ag-line);
  background: #dde6dd;
}

@media (max-width: 1040px) {
  .area-guide-page section.lead {
    scroll-margin-top: calc(var(--header-h, 72px) + 12px);
  }

  .area-guide-page .split {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    min-height: 0;
  }

  .area-guide-page .split__main {
    display: contents;
  }

  .area-guide-page section.lead,
  .area-guide-page .cards,
  .area-guide-page .mapcol,
  .area-guide-page .filters {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .area-guide-page .cards {
    padding: 18px var(--gutter) 48px;
  }

  .area-guide-page .mapcol {
    position: static;
    order: -1;
    height: auto;
    max-height: none;
    min-height: 0;
    border-left: 0;
    border-bottom: 1px solid var(--ag-line);
    scroll-margin-top: calc(var(--header-h, 72px) + 12px);
    overflow: hidden;
  }

  .area-guide-page .mapcol__sticky {
    position: static;
    height: auto;
    max-height: none;
    min-width: 0;
    max-width: 100%;
  }

  .area-guide-page #map {
    height: 60vh;
    min-height: 320px;
    max-width: 100%;
  }

  .area-guide-page .filters {
    flex-wrap: wrap;
  }

  .area-guide-page .cols-toggle {
    display: none !important;
  }

  .area-guide-page .map-toggle {
    position: fixed;
    left: 0;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    z-index: 54;
    margin: 0;
    border-radius: 0 6px 6px 0;
    border-left: 0;
    padding: 1.2em 1.45em;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    box-shadow: 10px 0 28px -14px rgba(20, 36, 29, 0.4);
  }

  .area-guide-page .map-back {
    left: auto;
    right: auto;
    bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  }

  .area-guide-page .filter-chips {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
  }
}

/* Mobile / tablet: return to map after browsing cards */
.area-guide-page .map-back {
  position: fixed;
  bottom: clamp(20px, 4vw, 28px);
  left: 50%;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--caps);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--shell);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 100px;
  padding: 0.95em 1.35em;
  box-shadow: 0 12px 32px -8px rgba(20, 36, 29, 0.45);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s, background 0.25s;
}

.area-guide-page .map-back:hover {
  background: var(--forest-2);
  border-color: var(--forest-2);
}

.area-guide-page .map-back.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.area-guide-page .map-back__icon {
  font-size: 1rem;
  line-height: 1;
}

@media (min-width: 1041px) {
  .area-guide-page .map-back {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .area-guide-page .map-back {
    transition: opacity 0.2s, visibility 0.2s;
    transform: translateX(-50%);
  }

  .area-guide-page .map-back.is-visible {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .area-guide-page .dsplit {
    grid-template-columns: 1fr;
  }

  .area-guide-page .dside {
    position: static;
  }
}

@media (max-width: 680px) {
  .area-guide-page .cards,
  .area-guide-page .cards--cols-1,
  .area-guide-page .cards--cols-2,
  .area-guide-page .cards--cols-3 {
    grid-template-columns: 1fr;
  }

  .area-guide-page #map {
    height: 48vh;
    min-height: 280px;
  }
}

/* Place detail  -  full-bleed hero */
.ag-place{background:var(--shell);color:var(--ink);width:100%;max-width:100%;min-width:0;overflow-x:clip}
.ag-place__hero{position:relative;min-height:min(68vh,640px);display:flex;flex-direction:column;justify-content:flex-end;color:var(--paper);background:linear-gradient(135deg,var(--forest),var(--eucalyptus))}
.ag-place__hero.has-image{background-size:cover;background-position:center}
.ag-place__hero-top{position:absolute;top:0;left:0;right:0;padding:18px var(--gutter) 0;z-index:2}
.ag-place__back{display:inline-flex;align-items:center;gap:.55em;font-family:var(--caps);text-transform:uppercase;letter-spacing:.14em;font-size:.66rem;color:rgba(251,248,240,.88);text-decoration:none;border-bottom:1px solid transparent;padding-bottom:2px}
.ag-place__back:hover{color:#fff;border-bottom-color:rgba(255,255,255,.45)}
.ag-place__hero-copy{position:relative;z-index:1;padding:clamp(48px,8vw,88px) var(--gutter) clamp(36px,5vw,56px);max-width:920px}
.ag-place__cat{font-family:var(--caps);text-transform:uppercase;letter-spacing:.28em;font-size:.68rem;color:var(--brass-soft,#d4b483);margin:0 0 .85rem}
.ag-place__hero h1{font-family:var(--serif);font-weight:400;font-size:clamp(2.6rem,6vw,4.4rem);line-height:1.02;margin:0 0 .55rem;color:var(--paper);letter-spacing:-.01em}
.ag-place__area{font-family:var(--caps);text-transform:uppercase;letter-spacing:.16em;font-size:.7rem;color:rgba(251,248,240,.72);margin:0}
.ag-place__body{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(260px,.75fr);gap:clamp(28px,4vw,56px);align-items:start;padding:clamp(36px,5vw,64px) var(--gutter) clamp(72px,10vw,120px);max-width:1340px;margin:0 auto;width:100%;box-sizing:border-box}
.ag-place__prose{font-size:1.05rem;line-height:1.75;color:var(--eucalyptus);max-width:62ch;margin:0 0 1.75rem}
.ag-place__facts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;padding-top:1.5rem;border-top:1px solid var(--line,#e7ddca)}
.ag-place__facts span{display:block;font-family:var(--caps);text-transform:uppercase;letter-spacing:.14em;font-size:.58rem;color:var(--brass);margin-bottom:.4rem}
.ag-place__facts b{font-family:var(--serif);font-weight:400;font-size:1.05rem;color:var(--ink)}
.ag-place__plan{background:var(--paper);border:1px solid var(--line,#e7ddca);padding:clamp(22px,2.5vw,28px)}
.ag-place__plan-h{font-family:var(--caps);text-transform:uppercase;letter-spacing:.18em;font-size:.62rem;color:var(--brass);margin:0 0 1rem}
.ag-place__plan-actions{display:grid;gap:10px}
.ag-place__btn{display:inline-flex;align-items:center;justify-content:center;padding:1em 1.2em;border:1px solid var(--ink);color:var(--ink);font-family:var(--caps);text-transform:uppercase;letter-spacing:.14em;font-size:.68rem;text-decoration:none;background:transparent;transition:background .25s ease,color .25s ease}
.ag-place__btn:hover{background:var(--ink);color:var(--paper)}
.ag-place__muted{margin:1rem 0 0;color:var(--ink-70);font-size:.95rem;line-height:1.5}
.ag-place__map,#dmap.ag-place__map{height:min(360px,48vh);min-height:240px;margin-top:16px;border:1px solid var(--line,#e7ddca);z-index:1}
@media(max-width:900px){
  .ag-place__body{grid-template-columns:1fr}
  .ag-place__facts{grid-template-columns:1fr}
  .ag-place__hero{min-height:min(52vh,460px)}
}
