/* PT site tokens. Same paper / ink / bronze palette as nine27, with a soft rounded finish:
   pill buttons + nav + chips, 18-28px card radii, soft lifted shadows in place of stacked-sheet offsets. */
:root {
  --paper: #F6F3EC;
  --paper-2: #EEE9DE;
  --sheet: #FFFDF8;
  --sheet-edge: #E7E0D2;
  --line: #E3DCCD;
  --line-strong: #D3C9B5;

  --ink: #16191D;
  --ink-2: #2B3036;
  --text: #22262B;
  --muted: #72706A;
  --faint: #A29E94;

  --bronze: #9C7439;
  --bronze-deep: #6F5226;
  --gold: #C4A05A;
  --gold-soft: #E9DCBC;
  --gold-wash: #F5EEDC;
  --foil: linear-gradient(135deg, #D9BE82 0%, #B08A4A 45%, #C9A660 70%, #8E6A33 100%);
  --danger: #8C3B2E;
  --ok: #4E6B3A;

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Newsreader", Georgia, "Times New Roman", serif;

  --r-sm: 12px;
  --r: 18px;
  --r-lg: 28px;
  --r-pill: 999px;

  --shadow-soft: 0 1px 2px rgba(22,25,29,.04), 0 10px 30px -18px rgba(22,25,29,.22);
  --shadow-lift: 0 2px 4px rgba(22,25,29,.04), 0 24px 48px -24px rgba(22,25,29,.32);

  --ease: cubic-bezier(.16, 1, .3, 1);

  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .35 0 0 0 0 .3 0 0 0 0 .22 0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  margin: 0; background: var(--paper); color: var(--text);
  font-family: var(--font-body); font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

.grain::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1000;
  background-image: var(--grain); opacity: .08; mix-blend-mode: multiply;
}

.wordmark {
  font-family: var(--font-display); font-weight: 800;
  font-stretch: 125%; font-variation-settings: "wdth" 125;
  letter-spacing: .18em; text-transform: uppercase; line-height: 1; padding-left: .18em;
}

.foil-rule { height: 2px; background: var(--foil); border: 0; border-radius: 2px; opacity: .85; }

/* placeholder text to swap before launch (gym name, neighborhoods, prices) */
.ph { background: var(--gold-wash); box-shadow: inset 0 -1px 0 var(--gold-soft); border-radius: 6px; padding: 0 .3em; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 48px; padding: 0 24px; border-radius: var(--r-pill); border: 1px solid transparent;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  font-stretch: 110%; font-variation-settings: "wdth" 110;
  text-decoration: none; cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease), box-shadow .2s var(--ease);
}
.btn:active { transform: scale(.97); }
.btn-ink { background: var(--ink); color: #F6F1E4; box-shadow: 0 10px 24px -12px rgba(22,25,29,.55); }
.btn-ink:hover { background: var(--ink-2); }
.btn-ink .gild { color: var(--gold); }
.btn-line { border-color: var(--line-strong); background: var(--sheet); color: var(--ink); }
.btn-line:hover { border-color: var(--bronze); }
.btn-foil { background: var(--foil); color: var(--ink); }
.btn-foil:hover { filter: brightness(1.06); }
.btn svg { width: 17px; height: 17px; flex: none; }

:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; border-radius: 8px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
