/* RSF Ventures — shared stylesheet for index.html and privacy.html */

:root {
  color-scheme: dark;
  --bg: #091321;
  --text: #f4f0e7;
  --muted: #a4aebd;
  --faint: #6f7c90;
  --line: rgba(133, 155, 184, .20);
  --line-2: rgba(133, 155, 184, .34);
  --gold: #d3a72c;
  --gold-2: #f0d679;
  --danger: #d05a4a;
  --wash: rgba(255, 255, 255, .028);

  --max: 1240px;
  --side: clamp(1.4rem, 5vw, 4.5rem);
  --serif: "Newsreader", Georgia, serif;
  --wordmark: "Cinzel", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* iOS-style deceleration curve, used for every settle */
  --ease-settle: cubic-bezier(.22, 1, .36, 1);
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f6f4ef;
  --text: #0a1422;
  --muted: #4b5766;
  --faint: #6d7a8b;
  --line: rgba(10, 20, 34, .14);
  --line-2: rgba(10, 20, 34, .26);
  --gold: #9c7311;
  --gold-2: #7e5c0c;
  --danger: #a33526;
  --wash: rgba(10, 20, 34, .026);
}

* { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;          /* iOS ignores overflow-x:hidden on body alone */
  max-width: 100%;
}
body {
  margin: 0;
  width: 100%;
  overflow-x: clip;
  overflow-wrap: break-word;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button { font: inherit; }
h1, h2, h3 { font-weight: 400; }
::selection { background: var(--gold); color: #091321; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.shell { width: min(100%, var(--max)); margin-inline: auto; padding-inline: var(--side); }
img, svg, video, table, textarea, input { max-width: 100%; }
.rule-top { border-top: 1px solid var(--line); }
.label {
  margin: 0;
  font-size: .7rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
}
.label--quiet { color: var(--faint); }

/* ---------- the mark ---------- */
/* One <symbol>, referenced by <use>. Stroke weight varies per context so the
   same geometry reads at 34px and at 400px. */
.ring-line { stroke: var(--text); opacity: .9; fill: none; stroke-width: 7; }
.gold-dot { fill: url(#goldA); }
.brand-mark .ring-line { stroke-width: 18; }
.logo-word { font-family: var(--wordmark); letter-spacing: .13em; fill: var(--text); }
.logo-tagline { font-family: var(--serif); font-style: italic; font-weight: 300; letter-spacing: .22em; fill: var(--muted); }
.logo-rule { stroke: var(--gold); }

/* ---------- topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 20;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; min-height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: .85rem; text-decoration: none; }
.brand-mark { width: 34px; height: 34px; flex: none; }
.brand-name {
  font-family: var(--wordmark);
  font-size: clamp(.78rem, 1.3vw, .92rem);
  letter-spacing: .2em; text-transform: uppercase; white-space: nowrap;
}
.nav-actions { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; gap: 1.9rem; font-size: .82rem; color: var(--muted); }
.nav-links a { text-decoration: none; padding: .2rem 0; border-bottom: 1px solid transparent; }
.nav-links a:hover { color: var(--text); border-bottom-color: var(--gold); }

.theme-toggle {
  width: 34px; height: 34px; padding: 0;
  border: 1px solid var(--line-2); background: none; color: var(--text);
  cursor: pointer; display: grid; place-items: center;
}
.theme-toggle svg { width: 15px; height: 15px; }
.sun { display: none; }
html[data-theme="light"] .sun { display: block; }
html[data-theme="light"] .moon { display: none; }

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-block: clamp(3.5rem, 11vh, 8rem) clamp(3rem, 8vh, 6rem);
}
.hero h1 {
  margin: 1.4rem 0 0; max-width: 13ch;
  font-family: var(--serif); font-weight: 200;
  font-size: clamp(2.15rem, 7.6vw, 6.4rem); line-height: 1; letter-spacing: -.015em;
}
.hero h1 em { font-style: italic; font-weight: 300; }
.hero-copy {
  margin: 1.9rem 0 0; max-width: 42ch;
  color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.14rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.4rem; }

.crest {
  justify-self: center;
  width: min(100%, 480px);
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(1.4rem, 3vw, 2.4rem);
}
.crest-rose { width: min(74%, 340px); height: auto; display: block; }
.crest-lockup { width: 100%; height: auto; display: block; }

.button {
  display: inline-flex; align-items: center; gap: .6rem;
  min-height: 44px; padding: .6rem 1.35rem;
  font-size: .85rem; font-weight: 500; text-decoration: none;
  border: 1px solid var(--line-2);
  transition: border-color .2s, background-color .2s, color .2s;
}
.button:hover { border-color: var(--gold); }
.button.primary { background: var(--gold); border-color: var(--gold); color: #091321; }
.button.primary:hover { background: var(--gold-2); border-color: var(--gold-2); }
html[data-theme="light"] .button.primary { color: #f6f4ef; }
button.button { cursor: pointer; }
button.button[disabled] { opacity: .55; cursor: progress; }

/* ---------- figures ---------- */
.figures {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.figure { padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 2vw, 2rem) clamp(2rem, 4vw, 3rem) 0; }
.figure + .figure { border-left: 1px solid var(--line); padding-left: clamp(1.25rem, 3vw, 2.75rem); }
.figure b {
  display: block;
  font-family: var(--serif); font-weight: 200;
  font-size: clamp(2.1rem, 5.6vw, 4.4rem); line-height: 1; letter-spacing: -.02em;
}
.figure span { display: block; margin-top: .9rem; color: var(--muted); font-size: .85rem; max-width: 24ch; }

/* ---------- generic ---------- */
.band { padding-block: clamp(4.5rem, 10vw, 8rem); }
.split {
  display: grid; grid-template-columns: minmax(160px, .34fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem); align-items: start;
}
.statement {
  margin: 0; max-width: 20ch;
  font-family: var(--serif); font-weight: 200;
  font-size: clamp(1.55rem, 4.4vw, 3.4rem); line-height: 1.1; letter-spacing: -.015em;
}

/* ---------- letter ---------- */
.letter p {
  margin: 0 0 1.35rem; max-width: 60ch;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1rem, 1.7vw, 1.32rem); line-height: 1.62; color: var(--text);
}
.letter p:last-of-type { margin-bottom: 2.4rem; }
.sign { display: flex; align-items: baseline; gap: .9rem; border-top: 1px solid var(--line); padding-top: 1.2rem; }
.sign strong { font-weight: 500; font-size: .9rem; }
.sign span { color: var(--faint); font-size: .82rem; }

/* ---------- holdings ---------- */
.holding {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(2rem, 4vw, 3.2rem) 0;
  border-top: 1px solid var(--line); align-items: start;
}
.holding:first-of-type { margin-top: clamp(2.5rem, 6vw, 4rem); }
.holding:last-child { border-bottom: 1px solid var(--line); }
.holding h3 {
  margin: .7rem 0 0;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.6rem, 3.6vw, 2.9rem); line-height: 1.06; letter-spacing: -.015em;
}
.holding p { margin: 0 0 1.8rem; color: var(--muted); max-width: 46ch; }
.holding-link {
  font-size: .82rem; font-weight: 500; text-decoration: none;
  border-bottom: 1px solid var(--gold); padding-bottom: .3rem;
}
.holding-link:hover { color: var(--gold-2); border-color: var(--gold-2); }
.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; margin: 0 0 1.8rem; }
.facts div { border-top: 1px solid var(--line); padding-top: .7rem; }
.facts dt { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }
.facts dd { margin: .4rem 0 0; font-size: .9rem; }

/* ---------- compass: scroll-driven principles ---------- */
.compass-section { position: relative; height: 400vh; }

/* Four invisible anchors so the dial settles on a bearing, not between two. */
.snap-track { position: absolute; inset: 0; z-index: -1; }
.snap-stop { height: 25%; scroll-snap-align: start; }

.compass-stage {
  position: sticky; top: 74px;
  min-height: calc(100svh - 74px);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .62fr);
  align-items: center; gap: clamp(2rem, 7vw, 6rem);
  padding-block: 3.5rem;
}
.compass-head { position: absolute; top: 2.5rem; left: 0; }

.chapter-deck { position: relative; min-height: 21rem; }
.chapter {
  position: absolute; inset: 0;
  max-width: 46rem;
  opacity: 0;
  transform: translateY(14px);
  filter: blur(4px);
  pointer-events: none;
  transition: opacity .26s var(--ease-settle), transform .34s var(--ease-settle), filter .26s var(--ease-settle);
}
.chapter.is-active {
  opacity: 1; transform: none; filter: none; pointer-events: auto;
}
.chapter h2 {
  margin: 1.1rem 0 1.2rem;
  font-family: var(--serif); font-weight: 200;
  font-size: clamp(1.65rem, 5.2vw, 4rem); line-height: 1.04; letter-spacing: -.02em;
}
.chapter p { margin: 0; max-width: 44ch; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.12rem); }

.compass-wrap { position: relative; justify-self: center; width: min(100%, 360px); }
.compass-wrap svg { width: 100%; height: auto; display: block; overflow: visible; }
.rotor { transform-origin: 250px 250px; transform-box: view-box; }

/* the fixed index the dial turns against — this is what makes rotation legible */
.index-mark { transform-box: view-box; }
.index-mark path { fill: var(--gold); }
.index-mark line { stroke: var(--gold); stroke-width: 2; }

.bearing {
  display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.6rem;
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--faint);
}
.bearing b {
  color: var(--gold); font-weight: 500;
  font-variant-numeric: tabular-nums;
}
#hint { transition: opacity .4s ease; }

.progress {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  display: grid; gap: .7rem; margin: 0; padding: 0; list-style: none;
}
.progress button {
  display: block; width: 28px; height: 1px; padding: 0; border: 0;
  background: var(--line-2); cursor: pointer;
  transition: width .45s var(--ease-settle), height .45s var(--ease-settle), background-color .45s var(--ease-settle);
}
.progress button[aria-current="true"] { width: 48px; height: 2px; background: var(--gold); }

/* ---------- criteria ---------- */
.criteria { display: grid; gap: 0; }
.criteria-item {
  display: grid; grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 1.5rem; align-items: baseline;
  padding: 1.6rem 0; border-top: 1px solid var(--line);
}
.criteria-item:last-child { border-bottom: 1px solid var(--line); }
.criteria-item > span { font-family: var(--serif); font-style: italic; font-weight: 300; color: var(--gold); }
.criteria-item h3 { margin: 0 0 .35rem; font-family: var(--sans); font-size: 1rem; font-weight: 500; }
.criteria-item p { margin: 0; color: var(--muted); max-width: 54ch; }

/* ---------- contact ---------- */
.contact-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact h2 {
  margin: 1.2rem 0 0; max-width: 14ch;
  font-family: var(--serif); font-weight: 200;
  font-size: clamp(1.7rem, 5vw, 3.8rem); line-height: 1.05; letter-spacing: -.02em;
}
.contact-lines { display: flex; flex-direction: column; align-items: start; gap: 1.4rem; margin-top: 2.5rem; }
.contact-mail {
  font-family: var(--serif); font-weight: 300; font-size: clamp(1.05rem, 2.4vw, 1.9rem);
  text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: .35rem;
}
.contact-mail:hover { color: var(--gold-2); border-color: var(--gold-2); }
.contact-tel { font-size: .95rem; text-decoration: none; color: var(--muted); border-bottom: 1px solid var(--line); padding-bottom: .3rem; }
.contact-tel:hover { color: var(--text); border-bottom-color: var(--gold); }

.social { display: flex; gap: .6rem; margin-top: 2.2rem; }
.social a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--line-2); color: var(--muted);
  transition: color .2s, border-color .2s;
}
.social a:hover { color: var(--text); border-color: var(--gold); }
.social svg { width: 17px; height: 17px; fill: currentColor; }

/* ---------- form ---------- */
.form-field { margin-bottom: 1.4rem; }
.form-field label {
  display: block; margin-bottom: .5rem;
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--faint);
}
.form-field input,
.form-field textarea {
  width: 100%; padding: .8rem .9rem;
  font: inherit; font-size: .92rem;
  color: var(--text); background: var(--wash);
  border: 1px solid var(--line-2); border-radius: 0;
  transition: border-color .2s;
}
.form-field textarea { min-height: 8.5rem; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--faint); opacity: .7; }
.form-field input:user-invalid,
.form-field textarea:user-invalid { border-color: var(--danger); }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-foot { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: 1.8rem; }
.form-status { margin: 0; font-size: .85rem; color: var(--muted); }
.form-status[data-state="error"] { color: var(--danger); }
.form-status[data-state="ok"] { color: var(--gold); }
.form-consent { margin: 1.4rem 0 0; font-size: .76rem; color: var(--faint); max-width: 48ch; line-height: 1.65; }
.form-consent a { color: var(--muted); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding-block: 2.6rem 3.2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }
.footer-grid dt { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }
.footer-grid dd { margin: .45rem 0 0; font-size: .84rem; color: var(--muted); line-height: 1.7; }
.footer-address { grid-column: span 2; }
.footer-grid a { text-decoration: none; border-bottom: 1px solid var(--line); }
.footer-grid a:hover { color: var(--text); border-bottom-color: var(--gold); }
.footer-note {
  margin: 2.6rem 0 0; padding-top: 1.4rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .76rem; color: var(--faint);
}
.footer-note a { text-decoration: none; border-bottom: 1px solid var(--line); }
.footer-note a:hover { color: var(--text); border-bottom-color: var(--gold); }

/* ---------- 404 ---------- */
.notfound {
  min-height: calc(100svh - 74px - 8rem);
  display: grid; grid-template-columns: auto minmax(0, 1fr);
  align-items: center; gap: clamp(2rem, 6vw, 4.5rem);
  padding-block: clamp(3rem, 9vh, 6rem);
}
.notfound-rose { width: clamp(110px, 18vw, 190px); height: auto; opacity: .65; }
.notfound h1 {
  margin: 1.2rem 0 0; max-width: 14ch;
  font-family: var(--serif); font-weight: 200;
  font-size: clamp(1.85rem, 6vw, 4.2rem); line-height: 1.02; letter-spacing: -.02em;
}
.notfound-copy { margin: 1.6rem 0 0; max-width: 42ch; color: var(--muted); }
.notfound .hero-actions { margin-top: 2.2rem; }

@media (max-width: 700px) {
  .notfound { grid-template-columns: 1fr; justify-items: start; gap: 1.5rem; }
  .notfound-rose { width: 88px; }
}

/* ---------- legal page ---------- */
.legal { padding-block: clamp(3rem, 7vw, 5rem) clamp(4rem, 9vw, 7rem); max-width: 46rem; }
.legal h1 {
  margin: 1.2rem 0 .8rem;
  font-family: var(--serif); font-weight: 200;
  font-size: clamp(1.9rem, 6vw, 4rem); line-height: 1.04; letter-spacing: -.02em;
}
.legal .updated { margin: 0 0 3rem; font-size: .8rem; color: var(--faint); }
.legal h2 {
  margin: 3rem 0 1rem;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem); letter-spacing: -.01em;
}
.legal h3 { margin: 1.8rem 0 .6rem; font-size: .95rem; font-weight: 600; }
.legal p, .legal li { color: var(--muted); }
.legal p { margin: 0 0 1rem; }
.legal ul { margin: 0 0 1rem; padding-left: 1.1rem; }
.legal li { margin-bottom: .5rem; }
.legal a { color: var(--text); text-decoration-color: var(--line-2); text-underline-offset: 4px; }
.legal table { width: 100%; border-collapse: collapse; margin: 0 0 1.5rem; font-size: .88rem; }
.legal th, .legal td { text-align: left; padding: .75rem .9rem; border: 1px solid var(--line); vertical-align: top; }
.legal th { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); font-weight: 600; }
.legal td { color: var(--muted); }
.legal .callout { border-left: 2px solid var(--gold); padding: .2rem 0 .2rem 1.2rem; margin: 0 0 1.5rem; }
.legal .callout p:last-child { margin-bottom: 0; }
.legal code {
  font-family: ui-monospace, "Cascadia Mono", Menlo, monospace;
  font-size: .88em; padding: .1em .35em;
  background: var(--wash); border: 1px solid var(--line);
}
.legal strong { color: var(--text); font-weight: 600; }

/* ---------- entrance ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Desktop only. `proximity` pulls toward a bearing without fighting a scroll past. */
@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  html { scroll-snap-type: y proximity; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-actions { gap: 1rem; }
  .hero, .split, .compass-stage, .contact-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 3rem; }
  /* Mobile: the rose alone. The nav already carries the name, and the
     wordmark renders too thin at this width to be worth keeping. */
  .crest { justify-self: start; width: auto; align-items: flex-start; order: -1; margin-bottom: .5rem; }
  .crest-rose { width: 96px; }
  .crest-lockup { display: none; }
  .contact-lines { margin-top: 1.8rem; }
  .figures { grid-template-columns: 1fr; }
  .figure { padding: 1.8rem 0; }
  .figure + .figure { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .holding { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* Single column, shorter scroll — a thumb covers more ground than a wheel. */
  .compass-section { height: 300vh; }

  /* No snap on touch: it fights iOS momentum. The settle-lock still applies. */
  .snap-track { display: none; }

  .compass-stage {
    grid-template-columns: 1fr;
    justify-items: start;
    align-content: center;
    gap: 1.6rem;
    padding-block: 4.75rem 2.5rem;
  }
  .compass-head { top: 1.6rem; }
  .compass-wrap { display: block; order: -1; justify-self: center; width: min(46vw, 190px); }
  .bearing { margin-top: 1rem; font-size: .64rem; }
  .chapter-deck { min-height: 16.5rem; width: 100%; }
  .progress {
    position: static; transform: none;
    display: flex; flex-direction: row; gap: .55rem;
    justify-self: start;
  }
  .progress button { width: 22px; }
  .progress button[aria-current="true"] { width: 34px; }
}

@media (max-width: 560px) {
  /* Watermark behind the headline.
     padding-block, not `padding` — the shorthand would wipe .shell's gutter.
     :not(.crest) matters — .crest is a div, so `.hero > div` would outrank it. */
  .hero { position: relative; padding-block: 2.25rem 3rem; }
  .hero > div:not(.crest) { position: relative; z-index: 1; }
  .crest {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: min(84vw, 380px); max-width: none;
    margin: 0; padding: 0; gap: 0;
    opacity: .09; z-index: 0; pointer-events: none;
  }
  .crest-rose { width: 100%; }
  html[data-theme="light"] .crest { opacity: .07; }
  .hero h1 { margin-top: .9rem; }
  .hero-copy { margin-top: 1.35rem; }
  .hero-actions { margin-top: 1.9rem; }

  /* Three-column fact grids are unreadable at this width */
  .facts { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.3rem; }
  .footer-address { grid-column: auto; }
  .footer-note { flex-direction: column; gap: .6rem; }

  .band { padding-block: clamp(3rem, 9vw, 4.5rem); }
  .hero h1 { max-width: none; }
  .hero-copy, .chapter p, .criteria-item p, .holding p { max-width: none; }

  /* Full-width tap targets instead of two cramped side-by-side buttons */
  .hero-actions { gap: .75rem; }
  .hero-actions .button { flex: 1 1 100%; justify-content: center; }

  .criteria-item { grid-template-columns: 2.25rem minmax(0, 1fr); gap: 1rem; }
  .contact-mail { overflow-wrap: anywhere; }
  .split { gap: 1.5rem; }
  .statement { max-width: none; }
  .contact h2, .notfound h1 { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; scroll-snap-type: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .compass-section { height: auto; }
  .snap-track { display: none; }
  .compass-stage { position: static; min-height: 0; padding-block: 3rem 0; }
  .compass-head { position: static; margin-bottom: 1rem; }
  .chapter-deck { min-height: 0; }
  .chapter {
    position: static; opacity: 1; transform: none; filter: none;
    pointer-events: auto; padding: 2.2rem 0; border-top: 1px solid var(--line);
    transition: none;
  }
  .compass-wrap, .progress { display: none; }
}
