/* =========================================================================
   Release Point Fit — style.css
   Plain CSS, no preprocessor, no CDN, no framework. System font stacks only.
   Class prefix: rpf-
   ========================================================================= */

:root {
  --rpf-bg:        #15120d;
  --rpf-bg-soft:   #1b1710;
  --rpf-panel:     #211c15;
  --rpf-panel-hi:  #2a2318;
  --rpf-line:      rgba(245, 241, 234, 0.14);
  --rpf-line-soft: rgba(245, 241, 234, 0.08);
  --rpf-ink:       #f5f1ea;
  --rpf-ink-dim:   #b8af9f;
  --rpf-ink-faint: #8c8272;
  --rpf-orange:    #ff5a1f;
  --rpf-orange-hi: #ff7a45;
  --rpf-orange-dim:#c94512;
  --rpf-green:     #b6ff3c;
  --rpf-radius:    3px;
  --rpf-max:       1180px;

  --rpf-display: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Helvetica Neue", sans-serif;
  --rpf-body:    Charter, "Bitstream Charter", "Sitka Text", Cambria, "Iowan Old Style", Georgia, serif;
  --rpf-mono:    ui-monospace, "SF Mono", "Cascadia Mono", "Segoe UI Mono", Consolas, "Liberation Mono", Menlo, monospace;
}

/* ---- reset -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, p, address, figure { margin: 0; }
table { border-collapse: collapse; width: 100%; }

html { scroll-behavior: smooth; }

body.rpf-body {
  background: var(--rpf-bg);
  color: var(--rpf-ink);
  font-family: var(--rpf-body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

html.rpf-locked, html.rpf-locked body { overflow: hidden; }

h1, h2, h3, .rpf-mark__name, .rpf-btn, .rpf-eyebrow, .rpf-nav, .rpf-overlay,
.rpf-stat__num, .rpf-price, .rpf-error-code {
  font-family: var(--rpf-display);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.14;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}

p { color: var(--rpf-ink-dim); }

.rpf-wrap {
  max-width: var(--rpf-max);
  margin: 0 auto;
  padding: 0 28px;
}

.rpf-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--rpf-orange);
  color: #17140f;
  padding: 10px 18px;
  z-index: 999;
  font-family: var(--rpf-display);
  font-weight: 700;
}
.rpf-skip:focus { left: 12px; top: 12px; }

/* ---- utility strip -------------------------------------------------- */
.rpf-utility {
  background: #0e0c08;
  border-bottom: 1px solid var(--rpf-line-soft);
  font-family: var(--rpf-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--rpf-ink-faint);
}
.rpf-utility__row {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 34px;
  overflow: hidden;
  white-space: nowrap;
}
.rpf-utility__row a { color: var(--rpf-ink-faint); }
.rpf-utility__row a:hover { color: var(--rpf-orange-hi); }
.rpf-utility__sep { color: var(--rpf-line); }

/* ---- header ----------------------------------------------------------- */
.rpf-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(21, 18, 13, 0.94);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--rpf-line-soft);
}
.rpf-head__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 78px;
  transition: height 0.2s ease;
}
.rpf-head.is-condensed .rpf-head__row { height: 62px; }

.rpf-mark { display: flex; align-items: center; gap: 12px; }
.rpf-mark__dial {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex: none;
  background: conic-gradient(from -90deg, var(--rpf-orange) 0deg 250deg, var(--rpf-line) 250deg 360deg);
}
.rpf-mark__dial::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--rpf-bg);
}
.rpf-mark__needle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 11px;
  background: var(--rpf-green);
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(48deg);
}
.rpf-mark__text { display: flex; flex-direction: column; line-height: 1.16; }
.rpf-mark__name { font-weight: 800; font-size: 1.1rem; letter-spacing: -0.01em; }
.rpf-mark__sub { font-family: var(--rpf-mono); font-size: 0.62rem; color: var(--rpf-ink-faint); letter-spacing: 0.05em; text-transform: uppercase; }

.rpf-nav { display: none; }
.rpf-nav__list { display: flex; align-items: center; gap: 4px; }
.rpf-nav__item a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rpf-ink-dim);
  border-radius: var(--rpf-radius);
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.rpf-nav__num {
  font-family: var(--rpf-mono);
  font-size: 0.62rem;
  color: var(--rpf-ink-faint);
}
.rpf-nav__item a:hover, .rpf-nav__item.is-here a {
  color: var(--rpf-ink);
  background: var(--rpf-panel);
}
.rpf-nav__item.is-here .rpf-nav__num { color: var(--rpf-orange); }

.rpf-head__actions { display: flex; align-items: center; gap: 14px; }

.rpf-toggle {
  width: 38px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.rpf-toggle span {
  display: block;
  height: 2px;
  background: var(--rpf-ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.rpf-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.rpf-toggle.is-open span:nth-child(2) { opacity: 0; }
.rpf-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.rpf-scrollmeter {
  height: 2px;
  background: var(--rpf-line-soft);
}
.rpf-scrollmeter span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--rpf-orange), var(--rpf-green));
}

/* ---- full-screen overlay menu ------------------------------------- */
.rpf-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: #0f0d09;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 28px;
  overflow-y: auto;
}
.rpf-overlay__list li {
  border-bottom: 1px solid var(--rpf-line-soft);
  opacity: 0;
  transform: translateY(10px);
  animation: rpfOverlayIn 0.4s ease forwards;
  animation-delay: calc(var(--rpf-stagger, 0) * 0.045s);
}
@keyframes rpfOverlayIn { to { opacity: 1; transform: none; } }
.rpf-overlay__list a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 16px 4px;
  font-family: var(--rpf-display);
  font-size: 1.5rem;
  font-weight: 800;
}
.rpf-overlay__num { font-family: var(--rpf-mono); color: var(--rpf-orange); font-size: 0.9rem; }
.rpf-overlay__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.rpf-overlay__foot a:first-child { font-family: var(--rpf-mono); color: var(--rpf-ink-dim); }

/* ---- buttons -------------------------------------------------------- */
.rpf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  border-radius: var(--rpf-radius);
  border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease;
}
.rpf-btn--primary { background: var(--rpf-orange); color: #17140f; }
.rpf-btn--primary:hover { background: var(--rpf-orange-hi); transform: translateY(-1px); }
.rpf-btn--ghost { border-color: var(--rpf-line); color: var(--rpf-ink); }
.rpf-btn--ghost:hover { border-color: var(--rpf-orange); color: var(--rpf-orange-hi); }
.rpf-btn--panel { background: var(--rpf-panel); color: var(--rpf-ink); border-color: var(--rpf-line); }
.rpf-btn--panel:hover { background: var(--rpf-panel-hi); }
.rpf-btn--block { width: 100%; }

/* ---- main / hero ------------------------------------------------------ */
.rpf-main { display: block; }

.rpf-hero { padding: 68px 0 56px; }
.rpf-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.rpf-hero__eyebrow {
  font-family: var(--rpf-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rpf-orange);
  display: inline-block;
  margin-bottom: 14px;
}
.rpf-hero h1 { margin-bottom: 18px; }
.rpf-hero__lede { font-size: 1.08rem; max-width: 52ch; margin-bottom: 28px; }
.rpf-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.rpf-dial {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(from -120deg, var(--rpf-orange) 0deg 210deg, var(--rpf-line) 210deg 360deg);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.rpf-dial.is-armed { opacity: 1; transform: none; }
.rpf-dial::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: var(--rpf-panel);
  border: 1px solid var(--rpf-line);
}
.rpf-dial__needle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 34%;
  background: var(--rpf-green);
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(38deg);
  box-shadow: 0 0 10px rgba(182, 255, 60, 0.6);
}
.rpf-dial__readout {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
}
.rpf-dial__val { font-family: var(--rpf-mono); font-size: 1.8rem; font-weight: 700; color: var(--rpf-green); }
.rpf-dial__label { font-family: var(--rpf-mono); font-size: 0.64rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--rpf-ink-faint); }
.rpf-dial__ticks {
  display: flex;
  justify-content: space-between;
  max-width: 320px;
  margin: 18px auto 0;
  font-family: var(--rpf-mono);
  font-size: 0.68rem;
  color: var(--rpf-ink-faint);
}

/* ---- stats strip ------------------------------------------------------ */
.rpf-stats-strip { border-top: 1px solid var(--rpf-line-soft); border-bottom: 1px solid var(--rpf-line-soft); background: var(--rpf-bg-soft); }
.rpf-stats-strip__row { display: flex; flex-wrap: wrap; gap: 28px; padding: 26px 0; }
.rpf-stat { flex: 1; min-width: 130px; }
.rpf-stat__num { display: block; font-size: 1.7rem; font-weight: 800; color: var(--rpf-orange-hi); }
.rpf-stat__label { font-size: 0.78rem; color: var(--rpf-ink-faint); text-transform: uppercase; letter-spacing: 0.04em; }

/* ---- sections ----------------------------------------------------- */
.rpf-section { padding: 72px 0; }
.rpf-section--alt { background: var(--rpf-bg-soft); }
.rpf-section__head { max-width: 640px; margin: 0 auto 40px; text-align: left; }
.rpf-section__head p { margin-top: 12px; }
.rpf-eyebrow {
  font-family: var(--rpf-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rpf-orange);
  display: inline-block;
  margin-bottom: 10px;
}

.rpf-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.rpf-grid { display: grid; gap: 22px; }
.rpf-grid--2 { grid-template-columns: repeat(2, 1fr); }
.rpf-grid--3 { grid-template-columns: repeat(3, 1fr); }
.rpf-grid--4 { grid-template-columns: repeat(4, 1fr); }

.rpf-card {
  background: var(--rpf-panel);
  border: 1px solid var(--rpf-line);
  border-radius: var(--rpf-radius);
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.rpf-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rpf-orange), transparent 70%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.rpf-card:hover::before { opacity: 1; }
.rpf-card h3 { margin-bottom: 8px; }
.rpf-card p { font-size: 0.95rem; }
.rpf-card__icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--rpf-mono);
  font-weight: 700;
  background: var(--rpf-bg-soft);
  border: 1px solid var(--rpf-line);
  border-radius: var(--rpf-radius);
  margin-bottom: 14px;
  color: var(--rpf-green);
}
.rpf-card__link { display: inline-block; margin-top: 14px; font-weight: 700; font-size: 0.86rem; color: var(--rpf-orange-hi); }
.rpf-card__link:hover { text-decoration: underline; }

.rpf-metric-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--rpf-line-soft);
  font-size: 0.9rem;
}
.rpf-metric-row:last-child { border-bottom: none; }
.rpf-metric-row span:last-child { font-family: var(--rpf-mono); color: var(--rpf-green); }

.rpf-bars > div { margin-bottom: 16px; }
.rpf-bars > div:last-child { margin-bottom: 0; }
.rpf-bar-row__label { display: flex; justify-content: space-between; font-size: 0.86rem; margin-bottom: 6px; }
.rpf-bar-row__label strong { font-family: var(--rpf-mono); color: var(--rpf-ink); }
.rpf-bar-track { height: 8px; background: var(--rpf-bg-soft); border-radius: 4px; overflow: hidden; }
.rpf-bar-fill { height: 100%; background: linear-gradient(90deg, var(--rpf-orange-dim), var(--rpf-orange)); }
.rpf-bar-fill--muted { background: var(--rpf-ink-faint); }

/* ---- timeline ------------------------------------------------------ */
.rpf-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.rpf-timeline__item {
  padding: 24px 20px 20px;
  border-top: 3px solid var(--rpf-orange);
  background: var(--rpf-panel);
}
.rpf-timeline__num {
  font-family: var(--rpf-mono);
  font-size: 0.78rem;
  color: var(--rpf-orange);
  display: block;
  margin-bottom: 10px;
}
.rpf-timeline__num::before { content: counter(rpf-step, decimal-leading-zero); }
.rpf-timeline { counter-reset: rpf-step; }
.rpf-timeline__item { counter-increment: rpf-step; }
.rpf-timeline__item h3 { margin-bottom: 8px; }
.rpf-timeline__item p { font-size: 0.92rem; }

/* ---- testimonials --------------------------------------------------- */
.rpf-testimonial { background: var(--rpf-panel); border: 1px solid var(--rpf-line); border-radius: var(--rpf-radius); padding: 24px; }
.rpf-stars { color: var(--rpf-orange); letter-spacing: 2px; font-size: 0.9rem; display: block; margin-bottom: 12px; }
.rpf-testimonial p { font-size: 0.95rem; margin-bottom: 18px; }
.rpf-testimonial__author { display: flex; align-items: center; gap: 12px; }
.rpf-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--rpf-bg-soft); border: 1px solid var(--rpf-line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--rpf-mono); font-size: 0.78rem; color: var(--rpf-green);
  flex: none;
}
.rpf-testimonial__author strong { display: block; font-size: 0.92rem; }
.rpf-testimonial__author span { font-size: 0.78rem; color: var(--rpf-ink-faint); }

/* ---- brand tiles ------------------------------------------------- */
.rpf-brand-tile {
  background: var(--rpf-panel);
  border: 1px solid var(--rpf-line);
  border-radius: var(--rpf-radius);
  padding: 20px;
  text-align: center;
}
.rpf-brand-tile__mark {
  width: 42px; height: 42px; margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--rpf-bg-soft);
  border: 1px solid var(--rpf-line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--rpf-mono); font-weight: 700; font-size: 0.82rem;
}
.rpf-brand-tile strong { display: block; margin-bottom: 4px; }
.rpf-brand-tile span { font-size: 0.78rem; color: var(--rpf-ink-faint); }
.rpf-brand-tile .rpf-bar-track { margin-top: 12px; }

/* ---- CTA band ------------------------------------------------------ */
.rpf-cta {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--rpf-bg-soft), var(--rpf-bg));
  border-top: 1px solid var(--rpf-line-soft);
}
.rpf-cta__inner { text-align: center; max-width: 620px; margin: 0 auto; }
.rpf-cta__inner p { margin: 14px 0 26px; }
.rpf-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- page header (interior pages) ---------------------------------- */
.rpf-page-header { padding: 56px 0 44px; border-bottom: 1px solid var(--rpf-line-soft); }
.rpf-breadcrumb {
  font-family: var(--rpf-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rpf-orange);
  display: inline-block;
  margin-bottom: 14px;
}
.rpf-page-header h1 { margin-bottom: 14px; }
.rpf-lede { color: var(--rpf-ink-dim); font-size: 1.06rem; max-width: 60ch; }

/* ---- FAQ --------------------------------------------------------- */
.rpf-faq-item {
  border-bottom: 1px solid var(--rpf-line-soft);
  padding: 18px 0;
}
.rpf-faq-item summary {
  cursor: pointer;
  font-family: var(--rpf-display);
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.rpf-faq-item summary::-webkit-details-marker { display: none; }
.rpf-faq-item summary::after {
  content: "+";
  font-family: var(--rpf-mono);
  color: var(--rpf-orange);
  font-size: 1.3rem;
  flex: none;
}
.rpf-faq-item[open] summary::after { content: "\2212"; }
.rpf-faq-item p { margin-top: 12px; font-size: 0.95rem; }

/* ---- pricing ------------------------------------------------------ */
.rpf-pricing-card { display: flex; flex-direction: column; }
.rpf-pricing-card--featured { border-color: var(--rpf-orange); }
.rpf-price { font-size: 2.1rem; font-weight: 800; margin: 10px 0; color: var(--rpf-ink); }
.rpf-price span { font-size: 0.9rem; font-weight: 500; color: var(--rpf-ink-faint); font-family: var(--rpf-body); }
.rpf-pricing-card ul { margin: 16px 0 22px; display: flex; flex-direction: column; gap: 9px; }
.rpf-pricing-card ul li { font-size: 0.9rem; color: var(--rpf-ink-dim); padding-left: 18px; position: relative; }
.rpf-pricing-card ul li::before { content: "\2192"; position: absolute; left: 0; color: var(--rpf-green); }
.rpf-pricing-card .rpf-btn { margin-top: auto; }

.rpf-table-wrap { overflow-x: auto; }
.rpf-table { font-size: 0.92rem; }
.rpf-table th, .rpf-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--rpf-line-soft); }
.rpf-table th { font-family: var(--rpf-display); color: var(--rpf-ink-faint); text-transform: uppercase; font-size: 0.74rem; letter-spacing: 0.05em; }
.rpf-table td:last-child { font-family: var(--rpf-mono); color: var(--rpf-green); }

/* ---- forms --------------------------------------------------------- */
.rpf-form-card { background: var(--rpf-panel); border: 1px solid var(--rpf-line); border-radius: var(--rpf-radius); padding: 30px; }
.rpf-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rpf-form-field { margin-bottom: 16px; }
.rpf-form-field label { display: block; font-size: 0.8rem; font-weight: 700; margin-bottom: 6px; color: var(--rpf-ink-dim); }
.rpf-form-field input, .rpf-form-field select, .rpf-form-field textarea {
  width: 100%;
  padding: 11px 13px;
  background: var(--rpf-bg-soft);
  border: 1px solid var(--rpf-line);
  border-radius: var(--rpf-radius);
  color: var(--rpf-ink);
}
.rpf-form-field input:focus, .rpf-form-field select:focus, .rpf-form-field textarea:focus {
  outline: none; border-color: var(--rpf-orange);
}
.rpf-form-note { font-size: 0.82rem; color: var(--rpf-ink-faint); }

.rpf-check-list li { position: relative; padding-left: 24px; margin-bottom: 12px; font-size: 0.95rem; color: var(--rpf-ink-dim); }
.rpf-check-list li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 12px; height: 12px;
  border: 2px solid var(--rpf-green);
  border-radius: 2px;
}

/* ---- locate panel (map placeholder) -------------------------------- */
.rpf-locate {
  position: relative;
  height: 220px;
  border: 1px solid var(--rpf-line);
  border-radius: var(--rpf-radius);
  background:
    linear-gradient(var(--rpf-line-soft) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(90deg, var(--rpf-line-soft) 1px, transparent 1px) 0 0 / 26px 26px,
    var(--rpf-bg-soft);
  overflow: hidden;
}
.rpf-locate--lg { height: 300px; }
.rpf-locate__pin {
  position: absolute; top: 50%; left: 50%;
  width: 14px; height: 14px;
  background: var(--rpf-orange);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 0 0 6px rgba(255, 90, 31, 0.18);
}
.rpf-locate__label, .rpf-locate__coords {
  position: absolute; left: 16px;
  font-family: var(--rpf-mono);
  font-size: 0.72rem;
  color: var(--rpf-ink-faint);
}
.rpf-locate__label { bottom: 34px; text-transform: uppercase; letter-spacing: 0.05em; }
.rpf-locate__coords { bottom: 16px; color: var(--rpf-green); }

/* ---- error page ----------------------------------------------------- */
.rpf-error { padding: 110px 0; text-align: center; }
.rpf-error-code {
  display: block;
  font-size: clamp(4rem, 14vw, 8rem);
  font-weight: 800;
  color: var(--rpf-panel-hi);
  -webkit-text-stroke: 1px var(--rpf-orange);
  line-height: 1;
  margin-bottom: 6px;
}
.rpf-error h1 { margin-bottom: 12px; }
.rpf-error p { color: var(--rpf-ink-dim); }

/* ---- team ---------------------------------------------------------- */
.rpf-team-card { text-align: center; }
.rpf-team-photo {
  width: 64px; height: 64px; margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--rpf-bg-soft);
  border: 1px solid var(--rpf-line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--rpf-mono); font-weight: 700; color: var(--rpf-green);
}
.rpf-team-role { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--rpf-orange); margin-bottom: 6px; }
.rpf-team-card p { font-size: 0.9rem; margin-top: 8px; }

/* ---- blog / journal -------------------------------------------------- */
.rpf-post-meta { font-family: var(--rpf-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--rpf-orange); display: block; margin-bottom: 10px; }
.rpf-post-card h3 { margin-bottom: 8px; }

.rpf-article { max-width: 720px; margin: 0 auto; }
.rpf-article h2 { margin-top: 34px; margin-bottom: 12px; }
.rpf-article p { margin-bottom: 16px; font-size: 1.02rem; }
.rpf-article blockquote {
  margin: 26px 0;
  padding: 16px 22px;
  border-left: 3px solid var(--rpf-orange);
  background: var(--rpf-panel);
  font-style: italic;
  color: var(--rpf-ink);
}
.rpf-article-header { max-width: 720px; margin-left: auto; margin-right: auto; }

/* ---- hours / footer -------------------------------------------------- */
.rpf-hours li { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.88rem; }
.rpf-hours li span:first-child { color: var(--rpf-ink); }
.rpf-hours li span:last-child { color: var(--rpf-ink-faint); font-family: var(--rpf-mono); }

.rpf-foot { background: var(--rpf-bg-soft); border-top: 1px solid var(--rpf-line-soft); padding: 56px 0 0; }
.rpf-foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
.rpf-foot__brand p { font-size: 0.92rem; margin: 14px 0 18px; max-width: 40ch; }
.rpf-foot__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.rpf-tag {
  font-family: var(--rpf-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 9px;
  border: 1px solid var(--rpf-line);
  border-radius: 999px;
  color: var(--rpf-ink-faint);
}
.rpf-foot__col h3 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--rpf-ink-faint); margin-bottom: 14px; }
.rpf-foot__col address { font-style: normal; font-size: 0.92rem; margin-bottom: 10px; }
.rpf-foot__col p { font-size: 0.9rem; margin-bottom: 6px; }
.rpf-foot__links li { margin-bottom: 9px; font-size: 0.9rem; }
.rpf-foot__links a:hover, .rpf-foot__col a:hover { color: var(--rpf-orange-hi); }

.rpf-foot__bottom { border-top: 1px solid var(--rpf-line-soft); padding: 18px 0; }
.rpf-foot__bottom-row { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.78rem; color: var(--rpf-ink-faint); }

.rpf-text-center { text-align: center; }

/* ---- scroll-reveal gating: hidden only when JS actually loads ----- */
.js-on .rpf-rise { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.js-on .rpf-rise.is-shown { opacity: 1; transform: none; }

/* ---- responsive ------------------------------------------------------ */
@media (min-width: 900px) {
  .rpf-nav { display: block; }
  .rpf-toggle { display: none; }
}

@media (max-width: 899px) {
  .rpf-hero__grid { grid-template-columns: 1fr; }
  .rpf-dial { max-width: 260px; }
  .rpf-two-col { grid-template-columns: 1fr; gap: 32px; }
  .rpf-grid--3, .rpf-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .rpf-timeline { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .rpf-foot__grid { grid-template-columns: 1fr 1fr; }
  .rpf-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .rpf-wrap { padding: 0 20px; }
  .rpf-grid--2, .rpf-grid--3, .rpf-grid--4 { grid-template-columns: 1fr; }
  .rpf-timeline { grid-template-columns: 1fr; }
  .rpf-foot__grid { grid-template-columns: 1fr; }
  .rpf-utility__row { font-size: 0.66rem; }
  .rpf-hero { padding: 44px 0 40px; }
  .rpf-section { padding: 52px 0; }
  .rpf-cta__actions, .rpf-hero__actions { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-on .rpf-rise { transition: none; opacity: 1; transform: none; }
  .rpf-dial { transition: none; }
}
