/* Red Market — a producer-only farmers market on Hope Road, Saturdays only.
 *
 * Idiom: the season. A market that only sells what its traders grew is a
 * different market every month, so the centre of the page is a seasonality
 * grid — every crop against the twelve months, with this month lit and a
 * switch that hides everything not in season this Saturday. The header keeps
 * the other fact a shopper needs: whether the market is on right now.
 *
 * White paper, ink, and the market's own red used as a flood on the month
 * that matters — the name is Red Market, so the red does the work and nothing
 * else needs to. Fraunces for display (a farm-sign serif with weight),
 * Space Grotesk for text. Nothing here is shared with any other template.
 */

:root {
  --paper: #ffffff;
  --grey: #f4f5f3;
  --ink: #171614;
  --ink-2: #4c4a45;
  --mute: #8a877f;
  --line: #e2e1dc;
  --red: #b62622;
  --red-deep: #8d1c19;
  --red-tint: #fbe9e8;
  --leaf: #2f6b3a;

  --gutter: clamp(1.25rem, 6vw, 7rem);
  --max: 80rem;
  --shell: min(100% - 2 * var(--gutter), var(--max));
  --display: 'Fraunces', Georgia, serif;
  --sans: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 400 clamp(1rem, 0.96rem + 0.16vw, 1.06rem)/1.6 var(--sans); }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); font-weight: 900; line-height: 1.02; letter-spacing: -0.02em; margin: 0; }
h1 em, h2 em { font-style: normal; color: var(--red); }

.rm-skip { position: absolute; left: -9999px; }
.rm-skip:focus { left: 1rem; top: 1rem; z-index: 99; background: var(--red); color: #fff; padding: 0.6rem 1rem; }
.rm-shell { width: var(--shell); margin-inline: auto; }
.rm-eyebrow { margin: 0 0 0.9rem; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); }
.rm-lead { font-size: 1.1rem; color: var(--ink-2); max-width: 36rem; }
.rm-empty { color: var(--mute); font-style: italic; }

/* ── top ────────────────────────────────────────────────────────────── */

.rm-top { position: sticky; top: 0; z-index: 40; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 2px solid var(--ink); }
.rm-top__in { width: var(--shell); margin-inline: auto; display: grid; grid-template-columns: auto 1fr auto auto; gap: 1.4rem; align-items: center; padding-block: 0.8rem; }
.rm-mark { display: grid; text-decoration: none; font-family: var(--display); font-weight: 900; font-size: 1.5rem; line-height: 1; }
.rm-mark small { font-family: var(--sans); font-size: 0.64rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); margin-top: 0.25rem; white-space: nowrap; }
.rm-nav { display: flex; justify-content: center; gap: clamp(0.9rem, 2.2vw, 1.8rem); }
.rm-nav a { text-decoration: none; font-size: 0.93rem; color: var(--ink-2); white-space: nowrap; padding-block: 0.3rem; border-bottom: 2px solid transparent; }
.rm-nav a:hover, .rm-nav a[aria-current] { color: var(--ink); border-bottom-color: var(--red); }
.rm-when { margin: 0; font-size: 0.8rem; color: var(--ink-2); white-space: nowrap; padding-left: 0.7rem; border-left: 3px solid var(--line); }
.rm-when[data-state="on"] { border-left-color: var(--leaf); }
.rm-when[data-state="soon"] { border-left-color: var(--red); }
.rm-when strong { color: var(--ink); }
.rm-burger { display: none; }
.rm-cta-short { display: none; }
@media (max-width: 78rem) { .rm-when { display: none; } .rm-top__in { grid-template-columns: auto 1fr auto; } }
@media (max-width: 62rem) {
  .rm-top__in { gap: 0.8rem; grid-template-columns: auto 1fr auto; }
  .rm-top__cta { justify-self: end; }
  .rm-burger { display: grid; gap: 5px; place-content: center; width: 2.6rem; height: 2.6rem; background: none; border: 0; color: inherit; cursor: pointer; }
  .rm-burger span { display: block; width: 22px; height: 2px; background: currentColor; }
  .rm-burger em { display: none; }
  .rm-nav { grid-column: 1 / -1; grid-row: 2; flex-direction: column; gap: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s; }
  .rm-nav a { padding: 0.85rem 0; border-top: 1px solid var(--line); border-bottom: 0; }
  .rm-top[data-menu] .rm-nav { max-height: 22rem; }
}
@media (max-width: 34rem) { .rm-cta-long { display: none; } .rm-cta-short { display: inline; } .rm-mark small { display: none; } }

/* ── buttons ────────────────────────────────────────────────────────── */

.rm-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; cursor: pointer; text-decoration: none; white-space: nowrap; font: 600 0.92rem/1 var(--sans); padding: 0.85rem 1.25rem; border: 2px solid var(--ink); color: var(--ink); background: transparent; transition: background 0.18s, color 0.18s, border-color 0.18s; }
.rm-btn:hover { background: var(--ink); color: #fff; }
.rm-btn--red { background: var(--red); border-color: var(--red); color: #fff; }
.rm-btn--red:hover { background: var(--red-deep); border-color: var(--red-deep); }
.rm-btn--light { border-color: #fff; color: #fff; }
.rm-btn--light:hover { background: #fff; color: var(--ink); }
.rm-btn[aria-busy="true"] { opacity: 0.7; cursor: progress; }
.rm-row { display: flex; flex-wrap: wrap; gap: 0.7rem; align-items: center; }
.rm-link { color: var(--red); font-weight: 600; text-decoration: none; border-bottom: 2px solid currentColor; }

/* ── sections ───────────────────────────────────────────────────────── */

.rm-section { padding-block: clamp(3.5rem, 7vw, 5.5rem); }
.rm-section--grey { background: var(--grey); border-block: 2px solid var(--ink); }
.rm-section--ink { background: var(--ink); color: #eae8e3; }
.rm-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr); gap: 1rem 4rem; align-items: end; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.rm-head h1, .rm-head h2 { font-size: clamp(2.2rem, 1.3rem + 3.2vw, 4.2rem); }
.rm-head p { margin: 0; color: var(--ink-2); }
.rm-section--ink .rm-head p { color: #b3afa7; }
.rm-section--ink .rm-eyebrow { color: #f0a7a3; }
.rm-section--ink h2 em { color: #f0a7a3; }
@media (max-width: 52rem) { .rm-head { grid-template-columns: minmax(0, 1fr); } }

/* ── hero ───────────────────────────────────────────────────────────── */

.rm-hero { border-bottom: 2px solid var(--ink); }
.rm-hero__in { width: var(--shell); margin-inline: auto; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; padding-block: clamp(2.4rem, 5vw, 4rem); }
.rm-hero h1 { font-size: clamp(2.6rem, 1.4rem + 4.4vw, 5.4rem); margin-bottom: 1.1rem; }
.rm-hero__img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.rm-next { margin: 1.2rem 0 0; padding: 0.8rem 1rem; border: 2px solid var(--ink); font-size: 0.98rem; }
.rm-next strong { color: var(--red); }
.rm-counts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin-top: 1.6rem; border-top: 2px solid var(--ink); }
.rm-counts div { padding: 0.8rem 1rem 0 0; }
.rm-counts strong { display: block; font-family: var(--display); font-weight: 900; font-size: 1.9rem; line-height: 1; }
.rm-counts span { font-size: 0.86rem; color: var(--ink-2); }
@media (max-width: 54rem) { .rm-hero__in { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 34rem) { .rm-counts { grid-template-columns: minmax(0, 1fr); } }

/* ── this Saturday's pick ───────────────────────────────────────────── */

.rm-pick { border: 2px solid var(--ink); }
.rm-pick__top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 0.5rem 1.4rem; padding: clamp(1rem, 2.4vw, 1.4rem); border-bottom: 2px solid var(--ink); background: var(--red); color: #fff; }
.rm-pick__top h2 { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem); color: #fff; }
.rm-pick__top p { margin: 0; font-size: 0.9rem; color: #f7d9d8; }
.rm-pick ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.rm-pick li { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.rm-pick li:nth-child(4n) { border-right: 0; }
.rm-pick a { display: grid; gap: 0.2rem; padding: 1rem 1.1rem; text-decoration: none; min-height: 5.4rem; }
.rm-pick a:hover { background: var(--red-tint); }
.rm-pick b { font-family: var(--display); font-weight: 600; font-size: 1.15rem; }
.rm-pick span { font-size: 0.82rem; color: var(--mute); }
@media (max-width: 62rem) { .rm-pick ul { grid-template-columns: repeat(2, minmax(0, 1fr)); } .rm-pick li:nth-child(4n) { border-right: 1px solid var(--line); } .rm-pick li:nth-child(2n) { border-right: 0; } }
@media (max-width: 34rem) { .rm-pick ul { grid-template-columns: minmax(0, 1fr); } .rm-pick li { border-right: 0; } }

/* ── the seasonality grid ───────────────────────────────────────────── */

.rm-grid { border: 2px solid var(--ink); background: var(--paper); }
.rm-grid__top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.6rem 1.4rem; padding: clamp(0.9rem, 2vw, 1.2rem); border-bottom: 2px solid var(--ink); }
.rm-grid__top h2 { font-size: clamp(1.3rem, 1.1rem + 0.9vw, 1.8rem); }
.rm-grid__count { margin: 0; font-size: 0.86rem; color: var(--mute); }
.rm-grid__top button { font: 600 0.84rem var(--sans); padding: 0.5rem 0.9rem; border: 2px solid var(--ink); background: var(--paper); color: var(--ink); cursor: pointer; }
.rm-grid__top button[aria-pressed="true"] { background: var(--ink); color: #fff; }
.rm-table-wrap { overflow-x: auto; }
.rm-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 46rem; }
.rm-table th, .rm-table td { padding: 0; }
.rm-table thead th { font: 600 0.7rem var(--sans); letter-spacing: 0.06em; text-transform: uppercase; color: var(--mute); padding: 0.5rem 0.2rem; text-align: center; border-bottom: 1px solid var(--line); }
.rm-table thead th.is-now { background: var(--red); color: #fff; }
.rm-table thead th:first-child { text-align: left; padding-left: clamp(0.9rem, 2vw, 1.2rem); }
.rm-table tbody th { text-align: left; font-weight: 500; padding: 0.55rem clamp(0.9rem, 2vw, 1.2rem); border-bottom: 1px solid var(--line); white-space: nowrap; }
.rm-table tbody th small { display: block; font-size: 0.78rem; color: var(--mute); }
.rm-table tbody td { border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); height: 2.4rem; }
.rm-cell { display: block; width: 100%; height: 100%; }
.rm-cell[data-level="in"] { background: #f3c9c7; }
.rm-cell[data-level="peak"] { background: var(--red); }
.rm-table tbody td.is-now { box-shadow: inset 0 0 0 2px var(--ink); }
.rm-table tbody tr.is-in th { font-weight: 600; }
.rm-table tbody tr:not(.is-in) th { color: var(--mute); }
.rm-key { display: flex; flex-wrap: wrap; gap: 1.2rem; padding: clamp(0.8rem, 2vw, 1.1rem); border-top: 2px solid var(--ink); font-size: 0.84rem; color: var(--ink-2); }
.rm-key span { display: flex; align-items: center; gap: 0.4rem; }
.rm-key i { width: 1.1rem; height: 0.9rem; display: inline-block; border: 1px solid var(--line); }
.rm-key i.in { background: #f3c9c7; }
.rm-key i.peak { background: var(--red); }

/* ── traders ────────────────────────────────────────────────────────── */

.rm-traders { display: grid; grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr)); gap: 0; border-top: 2px solid var(--ink); border-left: 2px solid var(--ink); }
.rm-trader { border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); padding: 1.1rem 1.2rem 1.3rem; text-decoration: none; display: grid; gap: 0.3rem; align-content: start; min-height: 11rem; }
.rm-trader:hover { background: var(--red-tint); }
.rm-trader__stall { font: 600 0.74rem var(--sans); letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }
.rm-trader h3 { font-size: 1.3rem; }
.rm-trader__where { font-size: 0.84rem; color: var(--mute); }
.rm-trader p { margin: 0.2rem 0 0; font-size: 0.92rem; color: var(--ink-2); }

/* ── rules, strip, quotes, questions ────────────────────────────────── */

.rm-rules { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.4rem, 3vw, 2.4rem); }
.rm-rules > div { border-top: 3px solid var(--red); padding-top: 0.9rem; }
.rm-rules h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.rm-rules p { margin: 0; color: var(--ink-2); font-size: 0.95rem; }
@media (max-width: 52rem) { .rm-rules { grid-template-columns: minmax(0, 1fr); } }

.rm-strip { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.rm-strip img { width: 100%; aspect-ratio: 1; object-fit: cover; }
@media (max-width: 46rem) { .rm-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); } .rm-strip img:last-child { display: none; } }

.rm-quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); gap: 0; border-top: 2px solid var(--ink); border-left: 2px solid var(--ink); }
.rm-quotes figure { margin: 0; padding: 1.3rem 1.4rem; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.rm-quotes blockquote { margin: 0; font-family: var(--display); font-weight: 600; font-size: 1.2rem; line-height: 1.3; }
.rm-quotes figcaption { margin-top: 0.8rem; font-size: 0.84rem; color: var(--red); font-weight: 600; }

.rm-qa { max-width: 52rem; border-top: 2px solid var(--ink); }
.rm-qa details { border-bottom: 1px solid var(--line); }
.rm-qa summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1.2rem; padding: 1rem 0; font-family: var(--display); font-weight: 600; font-size: 1.25rem; }
.rm-qa summary::-webkit-details-marker { display: none; }
.rm-qa summary::after { content: "+"; font-family: var(--sans); color: var(--red); }
.rm-qa details[open] summary::after { content: "\2212"; }
.rm-qa p { margin: 0 0 1.1rem; color: var(--ink-2); max-width: 62ch; }

.rm-visit { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.4rem, 3vw, 2.4rem); }
.rm-visit > div { border-top: 2px solid var(--ink); padding-top: 0.9rem; }
.rm-visit h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.rm-visit p { margin: 0 0 0.5rem; color: var(--ink-2); }
.rm-hours { margin: 0; display: grid; grid-template-columns: auto auto; justify-content: space-between; gap: 0.3rem 1.2rem; font-size: 0.93rem; }
.rm-hours dt { color: var(--ink-2); }
.rm-hours dd { margin: 0; text-align: right; white-space: nowrap; }
.rm-big { font-family: var(--display); font-weight: 900; font-size: 1.5rem; text-decoration: none; }
@media (max-width: 52rem) { .rm-visit { grid-template-columns: minmax(0, 1fr); } }

/* ── forms ──────────────────────────────────────────────────────────── */

.rm-formwrap { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.rm-formwrap h1 { font-size: clamp(2rem, 1.3rem + 2.8vw, 3.6rem); margin-bottom: 1rem; }
.rm-formwrap aside p { color: var(--ink-2); }
@media (max-width: 58rem) { .rm-formwrap { grid-template-columns: minmax(0, 1fr); } }
.rm-form { border: 2px solid var(--ink); padding: clamp(1.3rem, 3vw, 2rem); }
.rm-field { display: grid; gap: 0.35rem; margin-bottom: 0.95rem; }
.rm-field label { font-size: 0.88rem; font-weight: 500; }
.rm-field input, .rm-field textarea { font: inherit; color: var(--ink); background: var(--grey); border: 2px solid var(--line); padding: 0.75rem 0.85rem; }
.rm-field input:focus, .rm-field textarea:focus { outline: none; border-color: var(--red); background: var(--paper); }
.rm-field small { font-size: 0.82rem; color: var(--mute); }
.rm-two { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
@media (max-width: 34rem) { .rm-two { grid-template-columns: 1fr; } }
.rm-hp { position: absolute; left: -9999px; }
.rm-send { display: grid; gap: 0.6rem; margin-top: 0.4rem; }
.rm-send .rm-btn { width: 100%; padding-block: 0.95rem; }
.rm-send small { color: var(--mute); font-size: 0.83rem; }
/* what replaces the application once it is in */
.rm-sent { border: 2px solid var(--ink); border-top: 6px solid var(--red); padding: clamp(1.4rem, 3.5vw, 2.2rem); }
.rm-sent:focus { outline: none; }
.rm-sent:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.rm-sent h2 { font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem); margin: 0 0 1.1rem; }
.rm-sent p { color: var(--ink-2); }
.rm-sent__what { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: 2px; background: var(--ink); border: 2px solid var(--ink); }
.rm-sent__what li { display: flex; justify-content: space-between; gap: 1rem; background: var(--red-tint); padding: 0.7rem 0.9rem; font-size: 0.93rem; }
.rm-sent__what b { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red-deep); align-self: center; }
.rm-sent__what span { font-weight: 600; color: var(--ink); text-align: right; }
.rm-sent__acts { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem; margin: 1.5rem 0 0; }
.rm-again { font: 600 0.92rem/1 var(--sans); color: var(--red); background: none; border: 0; border-bottom: 2px solid currentColor; padding: 0 0 2px; cursor: pointer; }
.rm-again:hover { color: var(--red-deep); }
.rm-msg { margin: 0; font-size: 0.9rem; }
.rm-msg[data-state="err"] { color: var(--red-deep); }
.rm-msg[data-state="ok"] { color: var(--leaf); font-weight: 600; }

.rm-dd { position: relative; }
.rm-dd__button { width: 100%; display: flex; align-items: center; min-height: 3.1rem; padding: 0.5rem 2.6rem 0.5rem 0.85rem; cursor: pointer; text-align: left; font: inherit; color: var(--ink); background: var(--grey); border: 2px solid var(--line); position: relative; }
.rm-dd__button::after { content: ""; position: absolute; right: 1rem; top: 50%; width: 0.45rem; height: 0.45rem; margin-top: -0.3rem; border-right: 2px solid var(--red); border-bottom: 2px solid var(--red); transform: rotate(45deg); transition: transform 0.2s; }
.rm-dd.is-open .rm-dd__button::after { transform: rotate(-135deg); margin-top: -0.05rem; }
.rm-dd__button:focus-visible, .rm-dd.is-open .rm-dd__button { outline: none; border-color: var(--red); background: var(--paper); }
.rm-dd__button.is-placeholder .rm-dd__title { color: var(--mute); }
.rm-dd__value, .rm-dd__option { display: flex; align-items: center; gap: 0.7rem; min-width: 0; }
.rm-dd__list { position: absolute; z-index: 30; left: 0; right: 0; top: calc(100% + 0.3rem); max-height: 22rem; overflow-y: auto; background: var(--paper); border: 2px solid var(--ink); padding: 0.3rem; box-shadow: 6px 6px 0 rgba(23, 22, 20, 0.12); }
.rm-dd__group { padding: 0.6rem 0.7rem 0.25rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); }
.rm-dd__option { padding: 0.5rem 0.7rem; cursor: pointer; }
.rm-dd__option.is-active { background: var(--grey); }
.rm-dd__option.is-selected { background: var(--red-tint); }
.rm-dd__text { display: grid; min-width: 0; }
.rm-dd__title { font-weight: 500; }
.rm-dd__meta { font-size: 0.8rem; color: var(--ink-2); }
@media (max-width: 36rem) {
  .rm-dd__list { position: fixed; z-index: 60; left: 0.6rem; right: 0.6rem; top: auto; bottom: calc(0.6rem + env(safe-area-inset-bottom)); max-height: 70vh; }
  .rm-dd.is-open::before { content: ""; position: fixed; inset: 0; z-index: 59; background: rgba(23, 22, 20, 0.45); }
}

/* ── article ────────────────────────────────────────────────────────── */

.rm-article { width: min(100% - 2 * var(--gutter), 46rem); margin-inline: auto; }
.rm-crumbs { font-size: 0.84rem; color: var(--mute); margin-bottom: 1.2rem; }
.rm-crumbs a { text-decoration: none; }
.rm-crumbs a:hover { color: var(--red); }
.rm-article h1 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.4rem); margin-bottom: 0.7rem; }
.rm-article__meta { color: var(--red); font-weight: 600; font-size: 0.92rem; margin: 0 0 1.5rem; }
.rm-article img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; margin-bottom: 1.8rem; }
.rm-article__body { color: var(--ink-2); }
.rm-article__body > * + * { margin-top: 1rem; }
.rm-months { display: flex; flex-wrap: wrap; gap: 0.3rem; margin: 1.2rem 0 0; padding: 0; list-style: none; }
.rm-months li { font: 600 0.74rem var(--sans); letter-spacing: 0.06em; text-transform: uppercase; padding: 0.3rem 0.5rem; border: 1px solid var(--line); color: var(--mute); }
.rm-months li.is-in { background: #f3c9c7; color: var(--ink); border-color: transparent; }
.rm-months li.is-peak { background: var(--red); color: #fff; border-color: transparent; }

/* ── footer ─────────────────────────────────────────────────────────── */

.rm-foot { background: var(--ink); color: #d5d2cc; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.rm-foot__in { width: var(--shell); margin-inline: auto; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); gap: clamp(2rem, 5vw, 4rem); padding-bottom: 2.2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.rm-foot .rm-foot__big p { margin: 0; font-family: var(--display); font-weight: 900; font-size: clamp(1.8rem, 1.2rem + 2.2vw, 3.2rem); line-height: 1.02; color: #fff; }
.rm-foot .rm-foot__big em { font-style: normal; color: #f0a7a3; }
.rm-foot__cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }
.rm-foot h2 { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #f0a7a3; margin-bottom: 0.9rem; }
.rm-foot p { margin: 0 0 0.5rem; font-size: 0.92rem; color: #aaa6a0; }
.rm-foot .rm-hours { font-size: 0.9rem; grid-template-columns: minmax(0, 1fr); gap: 0.1rem 0; }
.rm-foot .rm-hours dt { color: #aaa6a0; }
.rm-foot .rm-hours dd { text-align: left; margin-bottom: 0.5rem; }
.rm-foot a { text-decoration: none; }
.rm-foot a:hover { color: #fff; }
.rm-foot__nav { display: grid; gap: 0.45rem; font-size: 0.92rem; color: #aaa6a0; }
.rm-foot .rm-foot__fine { width: var(--shell); margin: 1.4rem auto 0; font-size: 0.8rem; color: #7d7974; }
@media (max-width: 62rem) { .rm-foot__in { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 40rem) { .rm-foot__cols { grid-template-columns: minmax(0, 1fr); } }
