/* ─── Page wrap ──────────────────────────────────────────────────────────── */
.page-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--s4);
}

/* ─── Menu two-column layout (desktop) ───────────────────────────────────── */
@media (min-width: 820px) {
  .menu-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s6);
  }
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 819px) {
  .about-section--has-image .about-section__grid {
    grid-template-columns: 1fr;
    gap: var(--s4);
  }

  .about-section--has-image .about-section__copy {
    display: contents;
  }

  .about-section--has-image .about-section__copy .eyebrow {
    order: 1;
  }

  .about-section--has-image .about-section__copy h2 {
    order: 2;
  }

  .about-section--has-image .about-section__image {
    order: 3;
  }

  .about-section--has-image .about-section__copy > p {
    order: 4;
  }

  /* Hero mobile: centred text, hide secondary CTA, shorter image band */
  .hero-text {
    text-align: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__cta2 {
    display: none;
  }

  .hero-image-band {
    height: 280px;
  }
}

@media (max-width: 700px) {
  .review-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s2);
  }

  .gallery__img {
    height: 160px;
  }

  .site-nav {
    gap: var(--s3);
  }

  .site-nav__logo {
    width: 100%;
    margin-right: 0;
  }
}

/* Hide the generated hr that sits between the gallery and reviews so the
   section gap is exactly var(--s6) with no blank bands. */
.gallery-section + hr.rule {
  display: none;
}

/* ─── Mobile action bar ──────────────────────────────────────────────────── */
@media (max-width: 819px) {
  .mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--ink);
  }

  .mobile-bar__link {
    flex: 1;
    text-align: center;
    color: var(--bg);
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 14px var(--s2);
    transition: opacity var(--ease) 0.18s;
  }

  .mobile-bar__link:hover {
    opacity: .75;
    color: var(--bg);
  }

  body {
    padding-bottom: 48px;
  }
}
