/* ============================================================
   56 — About & Visit.

   The page now wears the same clothes as the homepage and the
   discipline pages: an ink arrival band with the watercolor
   beside the headline, one rust action, then paper and surface
   chapters inside the 1200px container.

   Everything is scoped to .rhav-page and uses its own rhav-
   prefix, so it cannot reach the homepage (.rhcx-home) or the
   discipline pages (.rh-disc-*), and the legacy .rhc-visit-*
   rules in phase1.css and 90-hygiene.css no longer apply to
   this markup at all. Colors are the phase1 :root tokens;
   nothing is redefined here.
   ============================================================ */

.rhav-page {
  --rhav-gutter: clamp(20px, 4vw, 34px);
  background: var(--surface);
  color: var(--tx);
  font-family: var(--b);
  overflow-x: clip;
}

.rhav-page img {
  max-width: 100%;
}

.rhav-page .rhav-wrap {
  max-inline-size: var(--max);
  margin-inline: auto;
  padding-inline: var(--rhav-gutter);
}

.rhav-page .rhav-eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-family: var(--b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.rhav-page a:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}

/* The one rust action on the page. */
.rhav-page .rhav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-block-size: 52px;
  padding: 14px 28px;
  border: 0;
  background: var(--rust);
  color: #fff;
  font-family: var(--b);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.rhav-page .rhav-btn:hover,
.rhav-page .rhav-btn:focus-visible {
  background: #96411F;
  color: #fff;
}

.rhav-page .rhav-tlink {
  color: var(--on-ink);
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--clay);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.rhav-page .rhav-tlink--dark {
  color: var(--river);
  text-decoration-color: rgba(44, 70, 58, .38);
}

.rhav-page .rhav-tlink--dark:hover {
  text-decoration-color: var(--river);
}

/* ---------------------------------------------------------------- arrival */

.rhav-page .rhav-hero {
  display: grid;
  background: var(--ink);
  color: var(--on-ink);
}

@media (min-width: 900px) {
  .rhav-page .rhav-hero {
    grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
    align-items: stretch;
    min-height: clamp(480px, 36vw, 540px);
  }
}

.rhav-page .rhav-hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(32px, 4vw, 48px);
  padding-inline: max(var(--rhav-gutter), calc((100vw - var(--max)) / 2 + var(--rhav-gutter))) var(--rhav-gutter);
}

.rhav-page .rhav-crumb {
  margin: 0 0 22px;
  color: var(--on-ink-2);
  font-size: 13px;
}

.rhav-page .rhav-crumb a {
  color: var(--on-ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--clay);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}

.rhav-page .rhav-crumb a:hover,
.rhav-page .rhav-crumb a:focus-visible {
  text-decoration-color: currentColor;
}

.rhav-page .rhav-hero h1 {
  margin: 0 0 20px;
  max-inline-size: 16ch;
  color: var(--on-ink);
  font-family: var(--d);
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 700;
  letter-spacing: -.022em;
  line-height: 1.05;
  text-wrap: balance;
}

.rhav-page .rhav-hero__lede {
  margin: 0 0 30px;
  max-inline-size: 44ch;
  color: var(--on-ink-2);
  font-size: 18.5px;
  line-height: 1.55;
}

.rhav-page .rhav-hero__act {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin: 0;
}

.rhav-page .rhav-hero__art {
  background: var(--ink);
}

.rhav-page .rhav-hero__art picture {
  display: block;
  block-size: 100%;
}

/* Desktop: the painting fills the band beside the headline, held on the house
   so the crop only ever takes lawn and pines off the edges. */
.rhav-page .rhav-hero__art img {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  min-block-size: 420px;
  object-fit: cover;
  object-position: 52% 46%;
}

/* Under 900px the text has already been read, and a painting is not a
   photograph: show the whole thing, uncropped, at its own 4:3. */
@media (max-width: 899px) {
  .rhav-page .rhav-hero__art img {
    block-size: auto;
    min-block-size: 0;
    aspect-ratio: 4 / 3;
    object-fit: contain;
  }
}

/* --------------------------------------------------------- diana's idea */

.rhav-page .rhav-vision {
  padding-block: clamp(52px, 7vw, 78px);
  background: var(--paper);
}

.rhav-page .rhav-today {
  padding-block: clamp(52px, 7vw, 78px);
  background: var(--surface);
}

.rhav-page .rhav-vision__in,
.rhav-page .rhav-today__in {
  display: grid;
  gap: clamp(26px, 4vw, 52px);
  align-items: start;
}

/* The story leads, then the photograph; on a wide screen they sit side by
   side and the two sections alternate so the page does not read as a column
   of identical rows. */
@media (min-width: 900px) {
  .rhav-page .rhav-vision__in {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    align-items: center;
  }

  .rhav-page .rhav-today__in {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    align-items: center;
  }
}

.rhav-page .rhav-vision h2,
.rhav-page .rhav-today h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--d);
  font-size: clamp(26px, 3.1vw, 34px);
  font-weight: 700;
  letter-spacing: -.014em;
  line-height: 1.12;
}

.rhav-page .rhav-vision p,
.rhav-page .rhav-today p {
  margin: 0 0 1.05em;
  max-inline-size: 62ch;
  color: var(--tx-2);
  font-size: 17.5px;
  line-height: 1.62;
}

.rhav-page .rhav-vision p:last-child,
.rhav-page .rhav-today p:last-child {
  margin-bottom: 0;
}

.rhav-page .rhav-today__go {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-block-start: 26px;
}

.rhav-page .rhav-vision__art img,
.rhav-page .rhav-today__art img {
  display: block;
  inline-size: 100%;
  aspect-ratio: 3 / 2;
  background: var(--ground);
  object-fit: cover;
}

/* ---------------------------------------------------------------- find us */

.rhav-page .rhav-find {
  padding-block: clamp(50px, 7vw, 80px);
  background: var(--ink);
  color: var(--on-ink);
  scroll-margin-block-start: 90px;
}

.rhav-page .rhav-find__in {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

@media (min-width: 900px) {
  .rhav-page .rhav-find__in {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  }
}

.rhav-page .rhav-find h2 {
  margin: 0 0 18px;
  color: var(--on-ink);
  font-family: var(--d);
  font-size: clamp(26px, 3.1vw, 34px);
  font-weight: 700;
  letter-spacing: -.014em;
  line-height: 1.12;
}

.rhav-page .rhav-find__addr {
  margin: 0 0 18px;
  font-family: var(--d);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.3;
}

.rhav-page .rhav-find__addr a {
  color: var(--on-ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--clay);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}

.rhav-page .rhav-find__addr a:hover,
.rhav-page .rhav-find__addr a:focus-visible {
  text-decoration-color: currentColor;
}

.rhav-page .rhav-find__note {
  margin: 0;
  max-inline-size: 46ch;
  color: var(--on-ink-2);
  font-size: 17px;
  line-height: 1.55;
}

.rhav-page .rhav-find__phone {
  color: var(--on-ink);
  font-weight: 600;
  white-space: nowrap;
  text-decoration: underline;
  text-decoration-color: var(--clay);
  text-underline-offset: 4px;
}

.rhav-page .rhav-drive {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rhav-page .rhav-drive li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding-block: 13px;
  border-block-start: 1px solid rgba(176, 141, 98, .34);
}

.rhav-page .rhav-drive li:last-child {
  border-block-end: 1px solid rgba(176, 141, 98, .34);
}

.rhav-page .rhav-drive__from {
  color: var(--on-ink);
  font-family: var(--d);
  font-size: 19px;
  line-height: 1.2;
}

.rhav-page .rhav-drive__time {
  color: var(--on-ink-2);
  font-size: 15.5px;
  text-align: end;
}

.rhav-page .rhav-find .rhav-drive {
  margin-block-start: 28px;
}

.rhav-page .rhav-find__go {
  margin-block-start: 24px;
}

/* The map is drawn by tools/make-about-map.py on a paper ground, so it is
   shown whole against a hairline rule rather than cropped to a shape. */
.rhav-page .rhav-find__map picture {
  display: block;
}

.rhav-page .rhav-find__map img {
  display: block;
  inline-size: 100%;
  block-size: auto;
  max-block-size: 620px;
  border: 1px solid var(--rule);
  background: var(--paper);
  object-fit: contain;
}

/* ------------------------------------------------------------------- close */

.rhav-page .rhav-close {
  padding-block: clamp(40px, 5vw, 62px);
  border-block-start: 1px solid var(--rule);
  background: var(--paper);
}

.rhav-page .rhav-close__in p {
  margin: 0;
  max-inline-size: 64ch;
  color: var(--tx-2);
  font-size: 18px;
  line-height: 1.6;
}

.rhav-page .rhav-close__go {
  margin-block-start: 12px;
}

/* Lead, 9 Sep: one hero composition for the whole site (see 50-disciplines.css). */
@media (min-width: 900px) {
  .rhav-page .rhav-hero { min-height: clamp(480px, 36vw, 540px); grid-template-columns: minmax(0, 640px) auto; justify-content: start; align-items: center;
    padding-inline-start: max(var(--rhav-gutter), calc((100vw - var(--max)) / 2 + var(--rhav-gutter))); column-gap: 40px; }
  .rhav-page .rhav-hero__text { padding-inline: 0 8px; }
  .rhav-page .rhav-hero__art { min-height: 0; display: flex; align-items: center; background: transparent; }
  .rhav-page .rhav-hero__art picture { display: block; block-size: auto; inline-size: auto; }
  .rhav-page .rhav-hero__art img { block-size: clamp(480px, 36vw, 540px); inline-size: auto; max-inline-size: min(56vw, 900px); min-block-size: 0; object-fit: contain; object-position: center; }
}
