/* Radius — a coached strength studio in Half Way Tree, six people a session.
 *
 * Idiom: the session board. The studio's promise is a place in a session of
 * six with a coach who wrote your programme, so the page is built around the
 * week's timetable with the places actually left in each session, read live
 * from the booking plugin, and one tap from taking one.
 *
 * Concrete grey and graphite with one magenta, the colour of the smallest
 * plate on the rack; Bricolage Grotesque for display, Onest for text; a
 * circle motif for the name. Nothing here is shared with any other template.
 */

:root {
  --concrete: #ecefee;
  --white: #ffffff;
  --graphite: #17181a;
  --steel: #4d5154;
  --grey: #868b8e;
  --line: #d8dcdb;
  --pink: #d81e63;
  --pink-deep: #ad1550;
  --pink-tint: #fce4ee;

  --gutter: clamp(1.25rem, 6vw, 7rem);
  --max: 76rem;
  --shell: min(100% - 2 * var(--gutter), var(--max));
  --display: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Onest', 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(--concrete); color: var(--graphite); font: 400 clamp(1rem, 0.96rem + 0.16vw, 1.07rem)/1.6 var(--sans); }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); font-weight: 800; line-height: 1; letter-spacing: -0.03em; margin: 0; }
h1 em, h2 em { font-style: normal; color: var(--pink); }

.rd-skip { position: absolute; left: -9999px; }
.rd-skip:focus { left: 1rem; top: 1rem; z-index: 99; background: var(--pink); color: #fff; padding: 0.6rem 1rem; }
.rd-shell { width: var(--shell); margin-inline: auto; }
.rd-eyebrow { margin: 0 0 1rem; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); }
.rd-lead { font-size: 1.12rem; color: var(--steel); max-width: 36rem; }

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

.rd-top { position: sticky; top: 0; z-index: 40; background: rgba(236, 239, 238, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.rd-top__in { width: var(--shell); margin-inline: auto; display: grid; grid-template-columns: auto 1fr auto; gap: 1.6rem; align-items: center; padding-block: 0.8rem; }
.rd-mark { display: grid; grid-template-columns: auto auto; grid-template-rows: auto auto; gap: 0 0.6rem; align-items: center; text-decoration: none; font-family: var(--display); font-weight: 800; font-size: 1.7rem; line-height: 1; letter-spacing: -0.04em; }
.rd-mark span { grid-row: span 2; width: 1.6rem; height: 1.6rem; border-radius: 50%; border: 4px solid var(--pink); }
.rd-mark small { font-family: var(--sans); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey); white-space: nowrap; }
.rd-nav { display: flex; justify-content: center; gap: clamp(1rem, 2.4vw, 2rem); }
.rd-nav a { text-decoration: none; font-size: 0.93rem; font-weight: 500; color: var(--steel); white-space: nowrap; padding-block: 0.3rem; border-bottom: 2px solid transparent; }
.rd-nav a:hover, .rd-nav a[aria-current] { color: var(--graphite); border-bottom-color: var(--pink); }
.rd-burger { display: none; }
.rd-cta-short { display: none; }
@media (max-width: 62rem) {
  .rd-top__in { gap: 0.8rem; }
  .rd-top__cta { justify-self: end; }
  .rd-burger { display: grid; gap: 5px; place-content: center; width: 2.6rem; height: 2.6rem; background: none; border: 0; color: inherit; cursor: pointer; }
  .rd-burger span { display: block; width: 22px; height: 2px; background: currentColor; }
  .rd-burger em { display: none; }
  .rd-nav { grid-column: 1 / -1; grid-row: 2; flex-direction: column; gap: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s; }
  .rd-nav a { padding: 0.85rem 0; border-top: 1px solid var(--line); border-bottom: 0; }
  .rd-top[data-menu] .rd-nav { max-height: 20rem; }
}
@media (max-width: 34rem) { .rd-cta-long { display: none; } .rd-cta-short { display: inline; } .rd-mark small { display: none; } .rd-top__cta { padding: 0.7rem 0.9rem; font-size: 0.84rem; } }

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

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

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

.rd-section { padding-block: clamp(4rem, 8vw, 6.5rem); }
.rd-section--white { background: var(--white); border-block: 1px solid var(--line); }
.rd-section--dark { background: var(--graphite); color: #e4e6e6; }
.rd-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr); gap: 1rem 4rem; align-items: end; margin-bottom: clamp(2rem, 4vw, 3rem); }
.rd-head h1, .rd-head h2 { font-size: clamp(2.4rem, 1.4rem + 3.4vw, 4.4rem); }
.rd-head p { margin: 0; color: var(--steel); }
.rd-section--dark .rd-head p { color: #a9adae; }
.rd-section--dark .rd-eyebrow { color: #ff86ae; }
.rd-section--dark h2 em { color: #ff86ae; }
@media (max-width: 52rem) { .rd-head { grid-template-columns: minmax(0, 1fr); } }

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

.rd-hero { width: var(--shell); margin-inline: auto; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; padding-block: clamp(2.5rem, 6vw, 5rem); }
.rd-hero h1 { font-size: clamp(3rem, 1.6rem + 5vw, 6.2rem); margin-bottom: 1.3rem; }
.rd-hero__img { position: relative; }
.rd-hero__img img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; }
.rd-hero__badge { position: absolute; bottom: 0.5rem; left: 0; background: var(--pink); color: #fff; border-radius: 999px; padding: 0.8rem 1.2rem; font-weight: 600; font-size: 0.92rem; box-shadow: 0 16px 34px -18px rgba(216, 30, 99, 0.7); }
.rd-hero__badge b { font-family: var(--display); font-weight: 800; font-size: 1.4rem; }
.rd-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 2rem; }
.rd-facts div { border-top: 2px solid var(--graphite); padding-top: 0.7rem; }
.rd-facts strong { display: block; font-family: var(--display); font-weight: 800; font-size: 1.9rem; line-height: 1; }
.rd-facts span { font-size: 0.88rem; color: var(--steel); }
@media (max-width: 54rem) { .rd-hero { grid-template-columns: minmax(0, 1fr); } .rd-hero__img img { aspect-ratio: 4 / 3; border-radius: 2rem; } }
@media (max-width: 34rem) { .rd-facts { grid-template-columns: minmax(0, 1fr); } }

/* ── the session board ──────────────────────────────────────────────── */

.rd-board { background: var(--white); border: 1px solid var(--line); border-radius: 1.4rem; padding: clamp(1rem, 2.5vw, 1.8rem); }
.rd-board__top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 0.6rem 2rem; margin-bottom: 1.2rem; }
.rd-board__top h2 { font-size: clamp(1.5rem, 1.2rem + 1vw, 2.2rem); }
.rd-board__legend { margin: 0; font-size: 0.86rem; color: var(--grey); }
.rd-board__legend i { display: inline-block; width: 0.7rem; height: 0.7rem; border-radius: 50%; background: var(--pink); margin-right: 0.3rem; }
.rd-grid { display: grid; gap: 0.5rem; grid-auto-flow: column; grid-auto-columns: minmax(8.5rem, 1fr); overflow-x: auto; padding-bottom: 0.5rem; }
.rd-col { display: grid; gap: 0.4rem; align-content: start; }
.rd-col__day { text-align: center; padding: 0.5rem 0; border-bottom: 2px solid var(--line); }
.rd-col__day b { display: block; font-family: var(--display); font-weight: 800; font-size: 1.1rem; }
.rd-col__day span { font-size: 0.78rem; color: var(--grey); }
.rd-slot { display: grid; gap: 0.1rem; justify-items: center; padding: 0.6rem 0.4rem; border: 1px solid var(--line); border-radius: 0.7rem; background: var(--white); text-decoration: none; font: inherit; cursor: pointer; color: inherit; }
.rd-slot time { font-family: var(--display); font-weight: 800; font-size: 1.05rem; font-variant-numeric: tabular-nums; }
.rd-slot small { font-size: 0.74rem; color: var(--pink); font-weight: 600; }
.rd-slot:hover { border-color: var(--pink); background: var(--pink-tint); }
.rd-slot.is-full { opacity: 0.45; cursor: not-allowed; }
.rd-slot.is-full small { color: var(--grey); }
.rd-col__none { text-align: center; padding: 1rem 0.3rem; font-size: 0.82rem; color: var(--grey); }
.rd-board__note { margin: 1rem 0 0; font-size: 0.9rem; color: var(--steel); }

/* ── how it works ───────────────────────────────────────────────────── */

.rd-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.2rem, 3vw, 2.4rem); counter-reset: s; }
.rd-steps li { counter-increment: s; }
.rd-steps li::before { content: counter(s); display: grid; place-items: center; width: 2.6rem; height: 2.6rem; border-radius: 50%; background: var(--pink); color: #fff; font-family: var(--display); font-weight: 800; font-size: 1.2rem; margin-bottom: 1rem; }
.rd-steps h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.rd-steps p { margin: 0; color: var(--steel); }
@media (max-width: 52rem) { .rd-steps { grid-template-columns: minmax(0, 1fr); } }

/* ── prices ─────────────────────────────────────────────────────────── */

.rd-packs { display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); gap: 1rem; }
.rd-pack { display: grid; grid-template-rows: auto auto 1fr auto; gap: 0.8rem; background: var(--white); border: 1px solid var(--line); border-radius: 1.4rem; padding: clamp(1.3rem, 3vw, 2rem); }
.rd-pack--best { background: var(--graphite); color: #fff; border-color: var(--graphite); }
.rd-pack--best .rd-pack__per, .rd-pack--best ul { color: #b9bdbe; }
.rd-pack h3 { font-size: 1.7rem; }
.rd-pack__price { font-family: var(--display); font-weight: 800; font-size: 2.8rem; line-height: 1; }
.rd-pack__price small { font-family: var(--sans); font-weight: 500; font-size: 0.88rem; color: var(--grey); }
.rd-pack__per { font-size: 0.88rem; color: var(--steel); }
.rd-pack ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; font-size: 0.94rem; color: var(--steel); }
.rd-pack li { padding-left: 1.3rem; position: relative; }
.rd-pack li::before { content: "✓"; position: absolute; left: 0; color: var(--pink); font-weight: 700; }
.rd-pack--best li::before { color: #ff86ae; }

/* ── coaches ────────────────────────────────────────────────────────── */

.rd-coaches { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: clamp(1.2rem, 3vw, 2rem); }
.rd-coach { text-decoration: none; display: grid; gap: 0.6rem; }
.rd-coach img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; }
.rd-coach h3 { font-size: 1.5rem; }
.rd-coach span { font-size: 0.82rem; font-weight: 600; color: var(--pink); }
.rd-coach p { margin: 0; font-size: 0.92rem; color: var(--steel); }

/* ── split, quotes, questions, visit ────────────────────────────────── */

.rd-split { width: var(--shell); margin-inline: auto; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.rd-split h2 { font-size: clamp(2.2rem, 1.4rem + 2.8vw, 3.8rem); margin-bottom: 1.1rem; }
.rd-split p { color: var(--steel); max-width: 34rem; }
.rd-split img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 1.4rem; }
@media (max-width: 52rem) { .rd-split { grid-template-columns: minmax(0, 1fr); } }

.rd-quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); gap: 1rem; }
.rd-quotes figure { margin: 0; padding: 1.4rem 1.5rem; background: var(--white); border: 1px solid var(--line); border-radius: 1.4rem; }
.rd-quotes blockquote { margin: 0; font-size: 1.08rem; line-height: 1.45; }
.rd-quotes figcaption { margin-top: 0.9rem; font-size: 0.86rem; font-weight: 600; color: var(--pink); }

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

.rd-visit { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.4rem, 3vw, 2.6rem); }
.rd-visit > div { border-top: 2px solid var(--graphite); padding-top: 1rem; }
.rd-visit h3 { font-size: 1.45rem; margin-bottom: 0.8rem; }
.rd-visit p { margin: 0 0 0.5rem; color: var(--steel); }
.rd-hours { margin: 0; display: grid; grid-template-columns: auto auto; justify-content: space-between; gap: 0.35rem 1.4rem; }
.rd-hours dt { color: var(--steel); }
.rd-hours dd { margin: 0; text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.rd-big { font-family: var(--display); font-weight: 800; font-size: 1.7rem; text-decoration: none; }
@media (max-width: 52rem) { .rd-visit { grid-template-columns: minmax(0, 1fr); } }

/* ── booking ────────────────────────────────────────────────────────── */

.rd-book { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; scroll-margin-top: 6rem; }
.rd-book__aside h2 { font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.4rem); margin-bottom: 1rem; }
.rd-book__aside p { color: var(--steel); }
@media (max-width: 58rem) { .rd-book { grid-template-columns: minmax(0, 1fr); } }
.rd-form { background: var(--white); border: 1px solid var(--line); border-radius: 1.4rem; padding: clamp(1.4rem, 3vw, 2.2rem); }
.rd-step { border: 0; margin: 0; padding: 0 0 1.4rem; min-width: 0; }
.rd-step + .rd-step { padding-top: 1.4rem; border-top: 1px solid var(--line); }
.rd-step legend { float: left; width: 100%; padding: 0; margin-bottom: 0.9rem; font-family: var(--display); font-weight: 800; font-size: 1.4rem; }
.rd-step legend + * { clear: both; }
.rd-days { display: grid; grid-auto-flow: column; grid-auto-columns: 5rem; gap: 0.4rem; overflow-x: auto; padding-bottom: 0.4rem; }
.rd-day { display: grid; justify-items: center; gap: 0.05rem; padding: 0.6rem 0.3rem; cursor: pointer; font: inherit; color: var(--graphite); background: var(--concrete); border: 1px solid var(--line); border-radius: 0.8rem; }
.rd-day span { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); }
.rd-day strong { font-family: var(--display); font-weight: 800; font-size: 1.15rem; }
.rd-day small { font-size: 0.7rem; color: var(--pink); font-weight: 600; }
.rd-day:hover:not(:disabled) { border-color: var(--pink); }
.rd-day:disabled { opacity: 0.45; cursor: not-allowed; }
.rd-day:disabled small { color: var(--grey); }
.rd-day.is-on { background: var(--pink); border-color: var(--pink); color: #fff; }
.rd-day.is-on span, .rd-day.is-on small { color: #fff; }
.rd-times { display: grid; grid-template-columns: repeat(auto-fill, minmax(4.8rem, 1fr)); gap: 0.4rem; }
.rd-time { padding: 0.65rem 0.3rem; cursor: pointer; font: 600 0.95rem var(--sans); font-variant-numeric: tabular-nums; color: var(--graphite); background: var(--concrete); border: 1px solid var(--line); border-radius: 0.8rem; }
.rd-time:hover { border-color: var(--pink); }
.rd-time.is-on { background: var(--graphite); border-color: var(--graphite); color: #fff; }
.rd-note { margin: 0.8rem 0 0; min-height: 1.4em; font-size: 0.9rem; color: var(--steel); }
.rd-note[data-state="ok"] { color: var(--pink); font-weight: 600; }
.rd-note[data-state="err"] { color: #b3261e; }
.rd-field { display: grid; gap: 0.35rem; margin-bottom: 1rem; }
.rd-field label { font-size: 0.88rem; font-weight: 600; }
.rd-field input, .rd-field textarea { font: inherit; color: var(--graphite); background: var(--concrete); border: 1px solid var(--line); border-radius: 0.8rem; padding: 0.8rem 0.9rem; }
.rd-field input:focus, .rd-field textarea:focus { outline: 2px solid var(--pink); outline-offset: -1px; background: var(--white); }
.rd-two { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
@media (max-width: 34rem) { .rd-two { grid-template-columns: 1fr; } }
.rd-hp { position: absolute; left: -9999px; }
.rd-send { display: grid; gap: 0.7rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.rd-send .rd-btn { width: 100%; padding-block: 1.05rem; }
.rd-send small { color: var(--grey); font-size: 0.84rem; }
.rd-msg { margin: 0; font-size: 0.92rem; }
.rd-msg[data-state="err"] { color: #b3261e; }

.rd-dd { position: relative; }
.rd-dd__button { width: 100%; display: flex; align-items: center; min-height: 3.3rem; padding: 0.55rem 2.6rem 0.55rem 0.9rem; cursor: pointer; text-align: left; font: inherit; color: var(--graphite); background: var(--concrete); border: 1px solid var(--line); border-radius: 0.8rem; position: relative; }
.rd-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(--pink); border-bottom: 2px solid var(--pink); transform: rotate(45deg); transition: transform 0.2s; }
.rd-dd.is-open .rd-dd__button::after { transform: rotate(-135deg); margin-top: -0.05rem; }
.rd-dd__button:focus-visible, .rd-dd.is-open .rd-dd__button { outline: 2px solid var(--pink); outline-offset: -1px; background: var(--white); }
.rd-dd__button.is-placeholder .rd-dd__title { color: var(--grey); }
.rd-dd__value, .rd-dd__option { display: flex; align-items: center; gap: 0.75rem; min-width: 0; }
.rd-dd__list { position: absolute; z-index: 30; left: 0; right: 0; top: calc(100% + 0.35rem); max-height: 22rem; overflow-y: auto; background: var(--white); border: 1px solid var(--line); border-radius: 1rem; padding: 0.35rem; box-shadow: 0 24px 48px -26px rgba(23, 24, 26, 0.4); }
.rd-dd__group { padding: 0.7rem 0.7rem 0.3rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); }
.rd-dd__option { padding: 0.55rem 0.7rem; border-radius: 0.6rem; cursor: pointer; }
.rd-dd__option.is-active { background: var(--concrete); }
.rd-dd__option.is-selected { background: var(--pink-tint); }
.rd-dd__text { display: grid; min-width: 0; }
.rd-dd__title { font-weight: 600; }
.rd-dd__meta { font-size: 0.8rem; color: var(--steel); }
@media (max-width: 36rem) {
  .rd-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; }
  .rd-dd.is-open::before { content: ""; position: fixed; inset: 0; z-index: 59; background: rgba(23, 24, 26, 0.4); }
}

.rd-done { background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--pink); border-radius: 1.4rem; padding: clamp(1.6rem, 4vw, 2.4rem); scroll-margin-top: 6rem; }
.rd-done:focus { outline: none; }
.rd-done h2 { font-size: clamp(2rem, 1.4rem + 2vw, 3rem); margin-bottom: 1rem; }
.rd-done dl { display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1.4rem; margin: 0 0 1.2rem; padding: 1rem 0; border-block: 1px solid var(--line); }
.rd-done dt { font-size: 0.84rem; color: var(--grey); }
.rd-done dd { margin: 0; font-weight: 600; }
.rd-brief { display: grid; gap: 0.35rem; margin: 0 0 1.4rem; padding: 0.9rem 1.1rem; background: var(--pink-tint); border-radius: 0.9rem; }
.rd-brief b { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink-deep); }
.rd-brief q { color: var(--graphite); }
.rd-done ul { margin: 0 0 1.4rem; padding-left: 1.1rem; color: var(--steel); display: grid; gap: 0.4rem; }

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

.rd-article { width: min(100% - 2 * var(--gutter), 46rem); margin-inline: auto; }
.rd-crumbs { font-size: 0.86rem; color: var(--grey); margin-bottom: 1.4rem; }
.rd-crumbs a { text-decoration: none; }
.rd-crumbs a:hover { color: var(--pink); }
.rd-article h1 { font-size: clamp(2.4rem, 1.6rem + 3vw, 4rem); margin-bottom: 0.8rem; }
.rd-article__meta { color: var(--pink); font-weight: 600; font-size: 0.94rem; margin: 0 0 1.6rem; }
.rd-article img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 1.4rem; margin-bottom: 2rem; }
.rd-article__body { color: var(--steel); }
.rd-article__body > * + * { margin-top: 1rem; }

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

.rd-foot { background: var(--graphite); color: #d6d9d9; padding-block: clamp(3.5rem, 7vw, 5rem) 2rem; }
.rd-foot__in { width: var(--shell); margin-inline: auto; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 0.8fr); gap: clamp(1.6rem, 4vw, 3rem); padding-bottom: 2.4rem; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.rd-foot h2 { font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #ff86ae; margin-bottom: 1rem; }
.rd-foot p { margin: 0 0 0.5rem; font-size: 0.92rem; color: #b9bdbe; }
.rd-foot .rd-foot__mark { font-family: var(--display); font-weight: 800; font-size: 2.2rem; color: #fff; margin-bottom: 0.7rem; letter-spacing: -0.04em; }
.rd-foot .rd-hours { font-size: 0.92rem; grid-template-columns: minmax(0, 1fr); gap: 0.1rem 0; }
.rd-foot .rd-hours dt { color: #b9bdbe; }
.rd-foot .rd-hours dd { text-align: left; margin-bottom: 0.5rem; }
.rd-foot a { text-decoration: none; }
.rd-foot a:hover { color: #fff; }
.rd-foot__nav { display: grid; gap: 0.45rem; font-size: 0.92rem; color: #b9bdbe; }
.rd-foot .rd-foot__fine { width: var(--shell); margin: 1.6rem auto 0; font-size: 0.8rem; color: #85898a; }
@media (max-width: 62rem) { .rd-foot__in { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
@media (max-width: 36rem) { .rd-foot__in { grid-template-columns: minmax(0, 1fr); } }

.rd-empty { color: var(--grey); font-style: italic; }
