/* =========================================================
   Sedona Rainbow Trout Farm — event registration
   Same component patterns as tailwaterflyco.com (cards, slide-over
   panel, segmented pickers) but themed to the trout farm's own
   palette pulled from sedonarainbowtroutfarm.com: greens
   (#3c7747 / #305f38 / #224428), white, Montserrat throughout.
   Presented-by-Tailwater credit stays small — this should read as
   the trout farm's own page.
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

:root {
  --bg: #fbfbf8;
  --surface-1: #ffffff;
  --surface-2: #f4f5f0;
  --surface-inset: #eef0e8;
  --border: #e1e3d9;
  --border-strong: #c9cdbc;
  --text: #202318;
  --text-muted: #52564a;
  --text-faint: #7d8171;
  --accent: #3c7747;
  --accent-bright: #305f38;
  --accent-dark: #224428;
  --accent-dim: #e6efe4;
  --navy: #1d3349;
  --radius: 10px;
  --radius-sm: 7px;
  --radius-btn: 6px;
  --radius-pill: 999px;
  --shadow-lg: 0 24px 60px -20px rgba(34, 68, 40, 0.35);
  --gutter: clamp(20px, 5vw, 64px);
  --container: 1160px;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Montserrat', sans-serif;
  --dur-fast: 0.18s;
  --dur-mid: 0.32s;
  --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(48px, 8vw, 96px); }
.muted { color: var(--text-muted); }
.faint { color: var(--text-faint); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 251, 248, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 76px; }
.brand { display: inline-flex; align-items: center; }
.brand__img { height: 46px; width: auto; display: block; }
.nav__cta { flex: 0 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.btn--solid { background: var(--accent); color: #fff; box-shadow: 0 10px 26px -12px rgba(34, 68, 40, 0.55); }
.btn--solid:hover { background: var(--accent-bright); transform: translateY(-1px); }
.btn--block { width: 100%; }
.btn:disabled, .btn.is-gated { opacity: 0.55; pointer-events: none; }
.arrow-link { display: inline-flex; align-items: center; gap: 0.5em; color: var(--accent); font-weight: 600; transition: gap var(--dur-fast) var(--ease); }
.arrow-link:hover { gap: 0.8em; color: var(--accent-bright); }

/* ---------- Hero — full-bleed photo, same treatment as .oc-hero /
   .page-hero on tailwaterflyco.com (photo + dark wash + white text),
   just reskinned. Content (title/meta/price) is dynamic per event —
   see renderHero() in js/main.js. */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(420px, 66vh, 620px);
  display: flex;
  align-items: flex-end;
  padding-block: clamp(40px, 8vw, 72px);
  color: #fff;
  background: var(--accent-dark);
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
/* muted + darkened so a busy photo (trees, people, cabins) never
   competes with the text sitting on top of it */
.hero__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.75) brightness(0.7); }
.hero__media .ph {
  display: flex; align-items: center; justify-content: center; height: 100%;
  font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg,
    rgba(16, 28, 19, 0.45) 0%,
    rgba(16, 28, 19, 0.5) 35%,
    rgba(14, 24, 17, 0.94) 100%);
}
.hero__inner { max-width: 62ch; }
.hero__kicker {
  font-family: var(--font-display); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85); display: block; margin-bottom: 0.6rem;
}
.hero h1 { font-size: clamp(2.1rem, 1.5rem + 3vw, 3.2rem); margin: 0.1rem 0 0.9rem; color: #fff; text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4); }
.hero__meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; margin-bottom: 1.1rem; font-family: var(--font-display); font-size: 0.88rem; letter-spacing: 0.02em; color: rgba(255, 255, 255, 0.88); }
.hero__meta span { display: inline-flex; align-items: center; gap: 0.45em; }
.hero__lead { max-width: 56ch; margin-bottom: 1.4rem; color: rgba(255, 255, 255, 0.85); }
.hero__price { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: #fff; margin-bottom: 1.2rem; }
.hero__price span { font-size: 0.62em; font-weight: 500; color: rgba(255, 255, 255, 0.65); text-transform: uppercase; letter-spacing: 0.08em; }
/* plain, no badge/container — just clickable text + logo */
.hero__host {
  display: inline-flex; align-items: center; gap: 0.5em;
  margin-bottom: 1.5rem;
  transition: opacity var(--dur-fast) var(--ease);
}
.hero__host:hover { opacity: 0.8; }
.hero__host span { font-family: var(--font-display); font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255, 255, 255, 0.8); }
.hero__host-logo { height: 20px; width: auto; display: block; filter: brightness(0) invert(1); }
.hero__host-logo[hidden] { display: none; }

/* ---------- Bulleted lists (checkmark style, like tailwaterflyco.com's
   check-list) — used for "what's included" and similar copy blocks */
.check-list { list-style: none; padding: 0; margin-top: 1.4rem; display: grid; gap: 0.85rem; }
.check-list li { position: relative; padding-left: 2rem; color: var(--text-muted); }
.check-list li::before {
  content: "\2713";
  position: absolute; left: 0; top: 0.05em;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
}

/* ---------- Registration form ---------- */
.reg-box {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-lg);
}
.reg-box h2 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 1.9rem); color: var(--accent-dark); margin-bottom: 0.4rem; }
.reg-count { display: flex; align-items: center; gap: 1rem; margin: 1.2rem 0 1.6rem; }
.qty { display: inline-flex; align-items: center; gap: 0.9rem; }
.qty button {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border-strong);
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.qty button:hover { background: var(--accent-dim); border-color: var(--accent); }
.qty span { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; min-width: 1.4ch; text-align: center; }

.field { display: grid; gap: 0.4rem; margin-bottom: 1rem; }
.field label { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); font-weight: 600; }
.field input, .field select {
  width: 100%;
  padding: 0.75em 1em;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95rem;
}
.field input:focus-visible, .field select:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
.field-row { display: grid; gap: 0.9rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .field-row { grid-template-columns: repeat(3, 1fr); } }
.field-row--2 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .field-row--2 { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Segmented pill picker — same component as
   tailwaterflyco.com's "Choose your water"/tier pickers, reskinned.
   Built from buttons (not native radios); js/main.js tracks the
   selection via data-active/data-value on the .seg element itself. */
.field-label { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); font-weight: 600; display: block; margin-bottom: 0.5rem; }
/* one flat, uniform style regardless of option count — experience (4)
   and equipment (3) read as the exact same control */
.seg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 4px;
  background: var(--surface-inset);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.seg[data-n="3"] { grid-template-columns: repeat(3, 1fr); }
.seg[data-n="4"] { grid-template-columns: repeat(2, 1fr); }
.seg__btn {
  display: grid; place-content: center; place-items: center;
  gap: 0.08rem;
  padding: 0.6em 0.5em;
  min-height: 3.2em;
  text-align: center;
  font-family: var(--font-display); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--text-muted);
  border-radius: 5px;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.seg__btn.is-active { background: var(--accent); color: #fff; }
.seg__glider { display: none; }

/* ---------- Attendee accordion — pick a count, then work through one
   person at a time (collapsed rows for anyone already done) */
.attendee-row {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.attendee-row__head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.85em 1em;
  background: var(--surface-2);
  cursor: pointer;
}
.attendee-row__head:hover { background: var(--accent-dim); }
.attendee-row__title { display: flex; align-items: center; gap: 0.6em; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; }
.attendee-row__check {
  flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 700; color: #fff;
  background: var(--border-strong);
}
.attendee-row.is-done .attendee-row__check { background: var(--accent); }
.attendee-row__hint { font-size: 0.8rem; color: var(--text-faint); }
.attendee-row__chev { transition: transform var(--dur-fast) var(--ease); color: var(--text-faint); }
.attendee-row.is-open .attendee-row__chev { transform: rotate(180deg); }
.attendee-row__body { padding: 1.1rem 1.1rem 0.2rem; }
.attendee-row__next { margin: 0.4rem 0 1.2rem; }

.reg-total-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap;
  padding-top: 1.2rem; margin-top: 0.6rem; border-top: 1px solid var(--border);
}
.reg-total { font-family: var(--font-display); }
.reg-total__label { color: var(--text-muted); font-size: 0.86rem; display: block; }
.reg-total__price { font-size: 1.4rem; font-weight: 700; color: var(--accent-dark); }
.reg-total-row .btn { flex: 0 0 auto; }
.reg-status { margin-top: 0.9rem; font-size: 0.88rem; }
.reg-status.is-bad { color: #a13b3b; }
.reg-status.is-good { color: var(--accent-dark); }

/* ---------- Upcoming events rail ---------- */
.rail-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; }
.rail-nav { display: flex; gap: 0.5rem; }
.rail-nav button {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.rail-nav button svg { width: 16px; height: 16px; }
.rail-nav button:hover { background: var(--accent-dim); border-color: var(--accent); }
.rail-nav button:disabled { opacity: 0.35; pointer-events: none; }
.event-rail { display: flex; gap: 0.8rem; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 0.4rem; cursor: grab; scroll-snap-type: x proximity; }
.event-rail::-webkit-scrollbar { display: none; }
.event-rail.is-dragging { cursor: grabbing; }
.event-rail.is-dragging a { pointer-events: none; }

/* ---------- Photo carousel ("From Past Clinics", under the What's
   Included checklist) — same drag/arrow-scroll rail as events */
.photo-rail { display: flex; gap: 0.9rem; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 0.4rem; cursor: grab; scroll-snap-type: x proximity; }
.photo-rail::-webkit-scrollbar { display: none; }
.photo-rail.is-dragging { cursor: grabbing; }
.photo-rail__shot {
  flex: 0 0 clamp(220px, 56vw, 300px);
  aspect-ratio: 4 / 3;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-inset);
}
.photo-rail__shot img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
/* photo cards — taller (extends down instead of feeling squashed),
   background image + dark wash with the text sitting on top */
.event-card {
  position: relative;
  isolation: isolate;
  flex: 0 0 clamp(210px, 50vw, 250px);
  aspect-ratio: 3 / 4;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem 1.2rem 1.3rem;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  background: var(--accent-dark);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.event-card__media { position: absolute; inset: 0; z-index: -2; }
.event-card__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) brightness(0.85); }
.event-card::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg,
    rgba(20, 36, 24, 0.15) 0%,
    rgba(20, 36, 24, 0.35) 40%,
    rgba(16, 28, 19, 0.92) 100%);
}
.event-card__date { display: block; font-family: var(--font-display); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.85); margin-bottom: 0.5rem; }
.event-card__name { display: block; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.7rem; line-height: 1.32; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4); }
.event-card__cta { display: block; font-family: var(--font-display); font-size: 0.74rem; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; }

/* ---------- Slide-over panel (future event details) ---------- */
.panel {
  position: fixed; inset: 0 0 0 auto; top: 0; right: 0;
  z-index: 100;
  height: 100dvh;
  width: min(720px, 100vw);
  display: flex; flex-direction: column;
  background: var(--surface-1);
  border-left: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform var(--dur-mid) var(--ease);
}
.panel.is-open { transform: translateX(0); }
.panel[hidden] { display: none; }
.panel-scrim {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(29, 51, 40, 0.45);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-mid) var(--ease);
}
.panel-scrim.is-open { opacity: 1; pointer-events: auto; }
.panel__head {
  position: sticky; top: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem var(--gutter);
  background: var(--surface-1);
  border-bottom: 1px solid var(--border);
}
.panel__head h2 { font-size: 1.15rem; color: var(--accent-dark); }
.panel__close { display: inline-flex; align-items: center; gap: 0.4em; font-family: var(--font-display); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.panel__close:hover { color: var(--accent); }
.panel__close svg { width: 16px; height: 16px; }
.panel__body { flex: 1 1 auto; overflow-y: auto; padding: 1.4rem var(--gutter) 3rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding-block: 2.4rem; background: var(--surface-2); }
.footer__grid { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between; }
.footer__contact { display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem; font-size: 0.86rem; color: var(--text-muted); }
.footer__credit { font-size: 0.78rem; color: var(--text-faint); }
.footer__credit a { color: var(--accent); }

@media (max-width: 640px) {
  .field-row, .field-row--2 { grid-template-columns: 1fr; }
  .reg-total-row { flex-direction: column; align-items: stretch; gap: 0.7rem; }
  .reg-total-row .btn { width: 100%; }
}

/* ---------- Registration confirmation page (registered.html) ---------- */
.rc-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(90px, 16vw, 150px) 0 clamp(44px, 7vw, 72px);
  background: var(--accent-dark);
  color: #fff;
}
.rc-hero__media { position: absolute; inset: 0; z-index: -2; }
.rc-hero__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.75) brightness(0.7); }
.rc-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg,
    rgba(16, 28, 19, 0.45) 0%,
    rgba(16, 28, 19, 0.5) 35%,
    rgba(14, 24, 17, 0.94) 100%);
}
.rc-hero__inner { max-width: 52ch; display: grid; gap: 1.1rem; }
.rc-hero__inner .eyebrow { color: rgba(255, 255, 255, 0.8); }
.rc-hero h1 { font-size: clamp(2.1rem, 1.5rem + 3vw, 3.2rem); color: #fff; }
.rc-hero .lead { max-width: 56ch; color: rgba(255, 255, 255, 0.82); }
.rc-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}
.rc-check svg { width: 22px; height: 22px; }

.rc-wrap { display: grid; gap: clamp(2rem, 5vw, 3rem); max-width: 720px; }
.rc-card {
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: clamp(1.3rem, 3.5vw, 1.9rem);
  display: grid;
  gap: 1.1rem;
}
.rc-card[hidden] { display: none; }
.rc-card__eyebrow { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint); }
.rc-card__event { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.2rem, 1rem + 1.2vw, 1.5rem); line-height: 1.2; }
.rc-facts { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 1.4rem; }
@media (max-width: 420px) { .rc-facts { grid-template-columns: 1fr; } }
.rc-fact dt { font-family: var(--font-display); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 0.25rem; }
.rc-fact dd { margin: 0; color: var(--text); font-size: 0.98rem; }
.rc-code { font-family: var(--font-display); letter-spacing: 0.12em; color: var(--accent); }

.rc-next h2, .rc-contact h2 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.25rem; margin-bottom: 1rem; }
.rc-next ol { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.95rem; }
.rc-next li { position: relative; padding-left: 1.4rem; }
.rc-next li::before { content: ""; position: absolute; left: 0; top: 0.45em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.rc-next li p { font-size: 0.9rem; line-height: 1.55; color: var(--text-muted); }
.rc-next li strong { display: block; color: var(--text); font-family: var(--font-display); font-size: 0.86rem; letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 0.2rem; }

.rc-contact p { color: var(--text-muted); max-width: 60ch; }
.rc-contact p a { color: var(--accent); }
.rc-contact p a:hover { color: var(--accent-bright); }
.rc-reach { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-bottom: 0.5rem; }
.contact-btn {
  display: flex; flex-direction: column; align-items: center; gap: 0.35em;
  padding: 15px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface-1);
  text-align: center;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.contact-btn:hover { border-color: var(--accent); background: var(--accent-dim); }
.contact-btn svg { width: 20px; height: 20px; color: var(--accent); }
.contact-btn__label { font-family: var(--font-display); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }
.contact-btn__val { font-size: 0.88rem; color: var(--text); }

.rc-back { display: inline-flex; align-items: center; gap: 0.5em; margin-top: 1.6rem; font-size: 0.9rem; color: var(--text-faint); transition: color var(--dur-fast) var(--ease); }
.rc-back:hover { color: var(--text-muted); }
.rc-back .arrow { transition: transform var(--dur-fast) var(--ease); }
.rc-back:hover .arrow { transform: translateX(-3px); }
