/* Wild Vibes — page layout hooks.
   Only layout lives here. Colours, type and component looks come from
   tokens/base/components. Anything page-specific is keyed off
   body[data-page="…"] so one page can never bleed into another. */

/* ================================================================== */
/* 1. Hero                                                             */
/* ================================================================== */

.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: var(--wv-paper-warm);
  color: var(--ctx-fg);
}

.hero__in {
  position: relative;
  z-index: var(--z-raised);
  display: grid;
  gap: var(--sp-6);
  padding-block: clamp(2.75rem, 1.6rem + 4.6vw, 5.5rem);
}

.hero__copy { max-width: 46rem; display: grid; gap: var(--sp-4); justify-items: start; }
.hero__copy > * { margin: 0; }

.hero__title {
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--ctx-head);
  max-width: 16ch;
}
.hero__title em {
  font-style: normal;
  font-weight: var(--fw-regular, 400);
  color: inherit;
}

.hero__lede {
  font-size: var(--fs-lead);
  line-height: var(--lh-snug);
  color: var(--ctx-muted);
  max-width: 48ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-3) var(--sp-5);
  margin-top: var(--sp-3);
  font-size: var(--fs-small);
  color: var(--ctx-muted);
}
.hero__meta > * { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero__meta svg { width: 1.05rem; height: 1.05rem; fill: none; stroke: currentColor; color: var(--ctx-accent); }

.hero__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--wv-lime-soft);
}
.hero__media img,
.hero__media picture { width: 100%; height: 100%; }
.hero__media img { object-fit: cover; }

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: var(--z-doodle);
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(14, 18, 8, 0.86) 0%, rgba(14, 18, 8, 0.38) 46%, rgba(14, 18, 8, 0.5) 100%);
}

.hero__cue {
  justify-self: start;
  margin-top: var(--sp-4);
}

/* --- home: full-bleed photo, copy over a scrim --------------------- */

.hero--home {
  --ctx-fg: var(--wv-mist);
  --ctx-muted: #DCE6CB;
  --ctx-head: #FFFFFF;
  --ctx-accent: var(--wv-lime);
  --ctx-doodle: var(--wv-lime);
  --ctx-line: rgba(255, 255, 255, 0.25);
  --ctx-link: var(--wv-lime);
  min-height: min(90svh, 820px);
  display: grid;
  align-items: end;
  background: var(--wv-forest-dk);
}
.hero--home .hero__media { position: absolute; inset: 0; border-radius: 0; z-index: var(--z-base); }
.hero--home .hero__in {
  align-content: end;
  padding-block: clamp(3.5rem, 2rem + 7vw, 7rem);
  min-height: inherit;
}
.hero--home .hero__title { max-width: 14ch; }
.hero--home .hero__lede { color: #E6EEDA; max-width: 44ch; }

@media (min-width: 900px) {
  .hero--home .hero__in {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    align-items: end;
    gap: var(--sp-7);
  }
  .hero--home .hero__aside { align-self: end; justify-self: end; max-width: 24rem; }
}

/* --- property: copy beside a tall photo ---------------------------- */

.hero--property {
  background: var(--wv-paper-warm);
}
.hero--property .hero__in {
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(1.75rem, 1rem + 3.4vw, 3.5rem);
}
.hero--property .hero__media { aspect-ratio: 4 / 3; box-shadow: var(--sh-3); }

@media (min-width: 900px) {
  .hero--property .hero__in {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    padding-block: clamp(3.25rem, 2rem + 4vw, 5.5rem);
  }
  .hero--property .hero__media { aspect-ratio: 4 / 4.4; }
  .hero--property .hero__copy { max-width: 34rem; }
}

/* --- slim: a short titled header for utility pages ----------------- */

.hero--slim {
  background: var(--wv-paper-warm);
  border-bottom: 1px solid var(--wv-line);
}
.hero--slim .hero__in {
  padding-block: clamp(2.25rem, 1.5rem + 3vw, 4.25rem);
  gap: var(--sp-4);
}
.hero--slim .hero__title { font-size: var(--fs-h1); max-width: 20ch; }
.hero--slim .hero__lede { max-width: 56ch; }

.hero--slim.hero--dark {
  --ctx-fg: var(--wv-mist);
  --ctx-muted: var(--wv-mist-soft);
  --ctx-head: var(--wv-mist);
  --ctx-accent: var(--wv-lime);
  --ctx-doodle: var(--wv-lime);
  --ctx-link: var(--wv-lime);
  background: var(--wv-forest-dk);
  border-bottom-color: var(--wv-forest-dk);
}

/* --- breadcrumbs sitting in a hero -------------------------------- */

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 0.55rem;
  margin: 0 0 var(--sp-2);
  padding: 0;
  list-style: none;
  font-size: var(--fs-small);
  color: var(--ctx-muted);
}
.crumbs li { display: inline-flex; align-items: center; gap: 0.55rem; }
.crumbs li + li::before { content: "/"; opacity: 0.5; }
.crumbs a { color: inherit; text-decoration: none; }
.crumbs a:hover { text-decoration: underline; text-underline-offset: 0.2em; }

/* ================================================================== */
/* 2. Generic split / stack layouts                                    */
/* ================================================================== */

.prop-split {
  display: grid;
  gap: clamp(1.75rem, 1.1rem + 3vw, 3.75rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .prop-split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .prop-split--copy-wide  { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); }
  .prop-split--media-wide { grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr); }
  .prop-split--reverse > .prop-split__media { order: -1; }
  .prop-split--top { align-items: start; }
}

.prop-split__body { display: grid; gap: var(--sp-4); align-content: start; max-width: 40rem; }
.prop-split__body > * { margin: 0; }
.prop-split__media { position: relative; }

/* A photo pair: one tall, one offset. */
.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  align-items: start;
}
.photo-pair > :first-child { margin-top: clamp(1rem, 3vw, 3rem); }

/* Simple auto grids used all over the site. */
.grid-2, .grid-3, .grid-4 { display: grid; gap: var(--gap-grid); grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 980px) {
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.stack   { display: grid; gap: var(--sp-4); align-content: start; }
.stack--lg { gap: var(--sp-6); }
.stack--sm { gap: var(--sp-2); }

/* Sidebar + content, sidebar sticks on desktop. */
.aside-layout {
  display: grid;
  gap: clamp(1.75rem, 1.2rem + 2.6vw, 3.25rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 960px) {
  .aside-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 20.5rem); }
  .aside-layout--left { grid-template-columns: minmax(0, 18rem) minmax(0, 1fr); }
  .aside-layout__side {
    position: sticky;
    top: calc(var(--head-h-stuck) + var(--sp-5));
  }
}

/* Full-width call-to-action band. */
.cta-band {
  display: grid;
  gap: var(--sp-5);
  align-items: center;
  text-align: left;
}
@media (min-width: 860px) {
  .cta-band { grid-template-columns: minmax(0, 1fr) auto; gap: var(--sp-7); }
}
.cta-band__copy { display: grid; gap: var(--sp-3); max-width: 44rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* ================================================================== */
/* 3. Timeline layout                                                  */
/* ================================================================== */

.timeline-wrap { position: relative; max-width: 52rem; }
@media (min-width: 980px) {
  .timeline--two-col {
    column-count: 2;
    column-gap: var(--sp-9);
    max-width: none;
  }
  .timeline--two-col .timeline__item { break-inside: avoid; margin-bottom: var(--sp-6); }
  .timeline--two-col::before { display: none; }
}

/* ================================================================== */
/* 4. Rate table wrapper                                               */
/* ================================================================== */

.rate-wrap {
  position: relative;
  border: 1px solid var(--ctx-line);
  border-radius: var(--r-md);
  background: var(--ctx-card);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-color: var(--wv-lime-deep) transparent;
}
.rate-wrap::-webkit-scrollbar { height: 10px; }
.rate-wrap::-webkit-scrollbar-track { background: transparent; }
.rate-wrap::-webkit-scrollbar-thumb {
  background: var(--wv-lime-deep);
  border-radius: var(--r-pill);
  border: 3px solid var(--ctx-card);
}
.rate-wrap .rate-table caption { padding: var(--sp-4) var(--sp-5) var(--sp-3); }

.rate-wrap__hint {
  display: block;
  margin-top: var(--sp-3);
  font-size: var(--fs-micro);
  color: var(--ctx-muted);
}
@media (min-width: 780px) { .rate-wrap__hint { display: none; } }

.rate-block { display: grid; gap: var(--sp-4); }
.rate-block + .rate-block { margin-top: var(--sp-8); }
.rate-block__title { font-size: var(--fs-h3); color: var(--ctx-head); }

/* ================================================================== */
/* 5. Stays filter bar                                                 */
/* ================================================================== */

/* A two-column grid, not one wrapping flex line: with more than one
   label + button-group pair, a flex row interleaves the labels and the
   rows of buttons and becomes unreadable. */
.filter-bar {
  position: sticky;
  top: var(--head-h-stuck);
  z-index: var(--z-sticky);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: var(--sp-4);
  row-gap: var(--sp-3);
  margin-bottom: var(--sp-6);
  padding: var(--sp-3) 0;
  background: var(--ctx-bg);
  border-bottom: 1px solid var(--ctx-line);
}
@media (max-width: 599px) {
  .filter-bar { grid-template-columns: 1fr; row-gap: var(--sp-2); }
}
.filter-bar__label {
  flex: none;
  font-size: var(--fs-micro);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-kicker);
  text-transform: uppercase;
  color: var(--ctx-muted);
}
.filter-bar__group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  min-width: 0;
}
.filter-bar__count {
  margin-left: auto;
  font-size: var(--fs-small);
  color: var(--ctx-muted);
  font-variant-numeric: tabular-nums;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  min-height: var(--tap);
  padding: 0.45rem 1.05rem;
  border: 1.5px solid var(--ctx-line);
  border-radius: var(--r-pill);
  background: var(--ctx-card);
  color: var(--ctx-fg);
  font-size: 0.92rem;
  font-weight: var(--fw-medium);
  white-space: nowrap;
  cursor: pointer;
  transition: background-color var(--dur-1) var(--ease-out),
              border-color var(--dur-1) var(--ease-out),
              color var(--dur-1) var(--ease-out);
}
/* The selected chip is dark olive with light text; giving it the pale hover
   ground washes the label out to nearly invisible. Only unselected chips
   take the tint — the selected one deepens instead. */
.filter-btn:hover:not([aria-pressed="true"]):not(.is-active) {
  border-color: var(--wv-lime-deep);
  background: var(--wv-lime-soft);
  color: var(--wv-forest-dk);
}
.filter-btn[aria-pressed="true"],
.filter-btn.is-active {
  background: var(--wv-forest);
  border-color: var(--wv-forest);
  color: var(--wv-mist);
  font-weight: var(--fw-bold);
}
.filter-btn__n { font-variant-numeric: tabular-nums; opacity: 0.75; font-weight: var(--fw-body); }

/* A stay row that a filter can hide without reflow surprises. */
.is-filtered-out { display: none !important; }

.filter-empty {
  padding: var(--sp-8) var(--sp-5);
  text-align: center;
  color: var(--ctx-muted);
  border: 1px dashed var(--ctx-line);
  border-radius: var(--r-md);
}

/* ================================================================== */
/* 6. Gallery page                                                     */
/* ================================================================== */

body[data-page="gallery"] .gallery-grid { margin-top: var(--sp-2); }
@media (min-width: 1240px) {
  body[data-page="gallery"] .gallery-grid { columns: 4; }
}

.gallery-section + .gallery-section { margin-top: var(--sec-y); }
.gallery-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--ctx-line);
}
.gallery-section__count { font-size: var(--fs-small); color: var(--ctx-muted); font-variant-numeric: tabular-nums; }

/* ================================================================== */
/* 7. Booking page                                                     */
/* ================================================================== */

.book-layout {
  display: grid;
  gap: clamp(1.75rem, 1.2rem + 2.6vw, 3.25rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 980px) {
  .book-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 21.5rem); }
}

.book-form {
  display: grid;
  gap: var(--sp-6);
  padding: clamp(1.25rem, 0.9rem + 1.5vw, 2.25rem);
  background: var(--ctx-card);
  border: 1px solid var(--ctx-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
}
.book-form__step { display: grid; gap: var(--sp-4); }
.book-form__step + .book-form__step {
  padding-top: var(--sp-6);
  border-top: 1px dashed var(--ctx-line);
}
.book-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
  padding-top: var(--sp-2);
}
.book-form__actions .btn { flex: 1 1 12rem; }
.book-form__legal { font-size: var(--fs-micro); color: var(--ctx-muted); max-width: 48ch; }

.book-summary {
  display: grid;
  gap: var(--sp-4);
  padding: clamp(1.25rem, 0.9rem + 1.2vw, 1.75rem);
  background: var(--wv-lime-soft);
  border: 1px solid var(--wv-lime-deep);
  border-radius: var(--r-lg);
  color: var(--wv-ink);
}
@media (min-width: 980px) {
  .book-summary { position: sticky; top: calc(var(--head-h-stuck) + var(--sp-5)); }
}
.book-summary__title {
  font-size: var(--fs-h4);
  font-family: var(--font-display);
  color: var(--wv-forest-dk);
}
.book-summary__list { display: grid; gap: var(--sp-2); margin: 0; padding: 0; list-style: none; }
.book-summary__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-4);
  font-size: 0.95rem;
  color: #3E4B24;
}
.book-summary__row dt,
.book-summary__row > span:first-child { color: #3E4B24; }
.book-summary__row strong,
.book-summary__row dd,
.book-summary__row > span:last-child {
  margin: 0;
  color: var(--wv-ink);
  font-weight: var(--fw-bold);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.book-summary__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--wv-lime-deep);
}
.book-summary__total .book-summary__amount {
  font-family: var(--font-display);
  font-weight: var(--fw-display-bold);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--wv-forest-dk);
  font-variant-numeric: tabular-nums;
}
.book-summary__note { font-size: var(--fs-micro); color: #46532C; }

.book-status {
  display: none;
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  font-size: 0.95rem;
}
.book-status.is-shown { display: block; }
.book-status--ok   { background: var(--wv-lime-soft); color: var(--wv-forest-dk); border: 1px solid var(--wv-lime-deep); }
.book-status--err  { background: var(--wv-error-bg); color: var(--wv-error); border: 1px solid #E7B9AD; }

/* ================================================================== */
/* 8. FAQ page                                                         */
/* ================================================================== */

.faq-layout {
  display: grid;
  gap: clamp(1.75rem, 1.2rem + 2.6vw, 3.5rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .faq-layout { grid-template-columns: minmax(0, 15.5rem) minmax(0, 1fr); }
}

.faq-nav { display: grid; gap: var(--sp-2); }
@media (min-width: 900px) {
  .faq-nav { position: sticky; top: calc(var(--head-h-stuck) + var(--sp-5)); }
}
.faq-nav__h {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-kicker);
  text-transform: uppercase;
  color: var(--ctx-accent);
  margin-bottom: var(--sp-2);
}
.faq-nav a {
  display: flex;
  align-items: center;
  min-height: var(--tap);
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-sm);
  color: var(--ctx-fg);
  font-size: 0.95rem;
  font-weight: var(--fw-medium);
  text-decoration: none;
  border-left: 3px solid transparent;
}
.faq-nav a:hover { background: var(--wv-lime-soft); color: var(--wv-forest-dk); border-left-color: var(--wv-lime-deep); }
.faq-nav a[aria-current="true"] { background: var(--wv-lime-soft); color: var(--wv-forest-dk); border-left-color: var(--wv-forest); }

.faq-group + .faq-group { margin-top: var(--sp-8); }
.faq-group__title {
  margin-bottom: var(--sp-4);
  font-size: var(--fs-h3);
  color: var(--ctx-head);
  scroll-margin-top: calc(var(--head-h-stuck) + var(--sp-6));
}

/* ================================================================== */
/* 9. Contact page                                                     */
/* ================================================================== */

.contact-grid {
  display: grid;
  gap: var(--gap-grid);
  grid-template-columns: 1fr;
}
@media (min-width: 720px)  { .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .contact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.contact-card {
  display: grid;
  gap: var(--sp-3);
  align-content: start;
  padding: clamp(1.25rem, 0.95rem + 1vw, 1.75rem);
  background: var(--ctx-card);
  border: 1px solid var(--ctx-line);
  border-radius: var(--r-lg);
}
.contact-card__icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--r-pill);
  background: var(--wv-lime-soft);
  color: var(--wv-forest-dk);
}
.contact-card__icon svg { width: 1.4rem; height: 1.4rem; fill: none; stroke: currentColor; }
.contact-card__title { font-size: var(--fs-h4); color: var(--ctx-head); }
.contact-card__value { font-size: 1.02rem; font-weight: var(--fw-medium); overflow-wrap: anywhere; }

.map-frame { position: relative; }
.map-frame {
  aspect-ratio: 16 / 10;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--ctx-line);
  background: var(--wv-paper-warm);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ================================================================== */
/* 10. Per-page tweaks                                                 */
/* ================================================================== */

/* Home — the first section after a full-bleed hero should not double up
   on top padding. */
body[data-page="home"] .hero--home + .sec { padding-top: var(--sec-y); }

/* Coorg is a teaser page: less chrome, more air. */
body[data-page="coorg"] .hero--slim .hero__title { max-width: 14ch; }
body[data-page="coorg"] .sec { --sec-y: clamp(3rem, 2rem + 4vw, 5.5rem); }

/* Stays — a very long page; give each property block a clear anchor. */
body[data-page="stays"] .stay-anchor { scroll-margin-top: calc(var(--head-h-stuck) + var(--tap) + var(--sp-6)); }

/* Booking — the form is the page, so keep the wrap tighter. */
body[data-page="booking"] .sec--form { --sec-y: clamp(2.5rem, 1.8rem + 3vw, 4.5rem); }

/* About — long-form prose gets a narrower measure. */
body[data-page="about"] .prose { max-width: 60ch; }

/* 404 */
body[data-page="404"] main { display: grid; place-items: center; min-height: 60svh; text-align: center; }


/* Centres placeholder copy inside .map-frame (no real map pin yet). */
.map-frame { position: relative; }
.map-frame__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: var(--sp-2);
  padding: var(--sp-5);
  text-align: center;
}

/* ================================================================== */
/* Overflow containment                                                */
/* ================================================================== */
/* A grid or flex item defaults to min-width:auto, which means it refuses to
   shrink below its content. `.rate-table` carries min-width: 42rem so the
   tariff columns stay readable, and inside a grid column that 672px floor was
   propagating outwards and stretching whole page layouts past the viewport —
   the FAQ content column ran up to 372px off-screen on a 320px phone.
   `.rate-wrap` is the scroll container, so the floor must stop at it. */

/* NOTE: do NOT set grid-template-columns here. This file's multi-column rules
   live earlier and inside media queries; a blanket single-column declaration
   appended at the end wins on source order and collapses the whole site. The
   overflow fix is the min-width chain below — that is all it ever needed. */

.faq-layout > *,
.prop-split > *,
.aside-layout > *,
.book-layout > *,
.card-grid > *,
.grid-2 > *, .grid-3 > *, .grid-4 > *,
.sec > .wrap > *,
.stay-card,
.card { min-width: 0; }

.rate-wrap { min-width: 0; max-width: 100%; }

/* Stay-name links inside the tariff table. A bare inline link is ~20px tall,
   under the 24x24 minimum target size; padding gets it there without
   changing the row rhythm. */
.rate-table a {
  display: inline-block;
  padding-block: 0.25rem;
  min-height: 24px;
}

/* .prop-split__body is itself a grid. Without an explicit track its implicit
   column is sized to the widest item's min-content — on the Coorg page the
   long WhatsApp button label made that 319px, which then stretched every
   paragraph beside it past a 320px viewport. Cap the track, and let a long
   button label wrap on the narrowest phones rather than set the floor. */
.prop-split__body { grid-template-columns: minmax(0, 1fr); }

@media (max-width: 420px) {
  .btn { white-space: normal; text-wrap: balance; }
  .btn-row { width: 100%; }
  .btn-row > .btn { flex: 1 1 auto; }
}

/* A bare inline link in a card heading is only as tall as its text (~24px).
   Padding gives it a comfortable target; the negative margin keeps the card's
   vertical rhythm exactly as it was. */
.card__title a,
.stay-card__title a {
  display: inline-block;
  padding-block: 0.4rem;
  margin-block: -0.4rem;
}
