@charset "UTF-8";
/* ==========================================================================
   Smart Gym — site design system
   Palette derives from the logo (#FF6600 sampled exactly) and the gym's own
   photography: daylit, white-walled, cool chrome. Orange is structural here,
   not an accent on black.
   ========================================================================== */

:root {
    /* --- color -------------------------------------------------------- */
    --paper: #ffffff;
    --haze: #e7edf1;      /* cool grey-blue, from daylight on chrome */
    --haze-deep: #d3dee5;
    --steel: #64727e;     /* secondary text */
    --ink: #111418;       /* headlines, dark blocks */
    --ink-soft: #1c2127;
    --flame: #ff6600;     /* brand, sampled from logo.png */
    --flame-deep: #d95500;
    --flame-wash: #fff1e6;

    /* --- type ---------------------------------------------------------- */
    --display: "Archivo", "Segoe UI", system-ui, sans-serif;
    --body: "Archivo", "Segoe UI", system-ui, sans-serif;
    --mono: "Martian Mono", ui-monospace, "SF Mono", Menlo, monospace;

    /* --- rhythm -------------------------------------------------------- */
    --gutter: clamp(1.25rem, 4vw, 4rem);
    --shell: 1240px;
    --band: clamp(4rem, 9vw, 7.5rem);

    --edge: 2px;
    --radius: 4px;
    --radius-lg: 10px;
}

/* --------------------------------------------------------------------------
   reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 5.5rem;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
    line-height: 1.6;
    font-variation-settings: "wdth" 100;
    -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }

h1, h2, h3, h4, p, figure, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }

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

::selection { background: var(--flame); color: #fff; }

/* --------------------------------------------------------------------------
   type scale — Archivo carries a width axis; expanded widths read as athletic
   signage rather than the condensed italics every gym site reaches for.
   -------------------------------------------------------------------------- */
.display {
    font-family: var(--display);
    font-weight: 800;
    font-variation-settings: "wdth" 118;
    line-height: 0.92;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-wrap: balance;
}

/* Indonesian sets long words (MENDAMPINGI, BERLANGGANAN); the widest optical
   setting has to stay small enough that they still fit their column. */
.display--xl { font-size: clamp(2.5rem, 1.3rem + 5.1vw, 5.25rem); font-variation-settings: "wdth" 112; }
.display--lg { font-size: clamp(2rem, 1.2rem + 3.4vw, 3.75rem); }
.display--md { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.25rem); }

.eyebrow {
    font-family: var(--mono);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--flame);
}

.eyebrow--steel { color: var(--steel); }

.lede {
    font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.3125rem);
    line-height: 1.5;
    color: var(--steel);
    max-width: 46ch;
    text-wrap: pretty;
}

.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* --------------------------------------------------------------------------
   layout
   -------------------------------------------------------------------------- */
.shell {
    width: 100%;
    max-width: var(--shell);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.band { padding-block: var(--band); }
.band--tight { padding-block: calc(var(--band) * 0.6); }
.band--haze { background: var(--haze); }
.band--ink { background: var(--ink); color: var(--paper); }

.band-head {
    display: grid;
    gap: 1rem;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

@media (min-width: 62rem) {
    .band-head--split {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        align-items: end;
        gap: 3rem;
    }
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 100;
    padding: 0.75rem 1.25rem;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--mono);
    font-size: 0.75rem;
    transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* --------------------------------------------------------------------------
   buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.6rem;
    border-radius: var(--radius);
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background-color 0.18s, color 0.18s, transform 0.18s;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--flame { background: var(--flame); color: #fff; }
.btn--flame:hover { background: var(--flame-deep); }

.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--ink-soft); }

.btn--ghost {
    background: transparent;
    color: var(--ink);
    box-shadow: inset 0 0 0 var(--edge) currentColor;
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }

.btn--onink {
    background: transparent;
    color: var(--paper);
    box-shadow: inset 0 0 0 var(--edge) rgba(255, 255, 255, 0.35);
}
.btn--onink:hover { background: var(--paper); color: var(--ink); }

.btn--sm { padding: 0.65rem 1.1rem; font-size: 0.6875rem; }

/* --------------------------------------------------------------------------
   masthead
   -------------------------------------------------------------------------- */
.masthead {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--haze);
}

.masthead__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 4.5rem;
}

.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand__mark { width: 2.5rem; height: 2.5rem; border-radius: 50%; }
.brand__name {
    font-family: var(--display);
    font-weight: 800;
    font-variation-settings: "wdth" 112;
    font-size: 1.0625rem;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.mainnav { display: none; }

@media (min-width: 62rem) {
    .mainnav { display: flex; align-items: center; gap: 2rem; }
}

.mainnav__link {
    position: relative;
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--steel);
    padding-block: 0.35rem;
    transition: color 0.16s;
}
.mainnav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--flame);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s;
}
.mainnav__link:hover { color: var(--ink); }
.mainnav__link:hover::after { transform: scaleX(1); }
.mainnav__link[aria-current="page"] { color: var(--ink); }
.mainnav__link[aria-current="page"]::after { transform: scaleX(1); }

.masthead__actions { display: flex; align-items: center; gap: 0.75rem; }
.masthead__cta { display: none; }
@media (min-width: 48rem) { .masthead__cta { display: inline-flex; } }

.burger {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--paper);
}
@media (min-width: 62rem) { .burger { display: none; } }

/* mobile drawer */
.drawer {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    grid-template-rows: auto 1fr;
    background: var(--ink);
    color: var(--paper);
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.36s;
}
.drawer[data-open="true"] { transform: translateY(0); visibility: visible; }

.drawer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4.5rem;
}

.drawer__list { display: grid; gap: 0.35rem; align-content: start; padding-block: 2rem; }

.drawer__link {
    font-family: var(--display);
    font-weight: 800;
    font-variation-settings: "wdth" 112;
    font-size: clamp(1.75rem, 8vw, 2.75rem);
    text-transform: uppercase;
    line-height: 1.1;
    padding-block: 0.35rem;
}
.drawer__link:hover { color: var(--flame); }

/* --------------------------------------------------------------------------
   hero — the thesis: this gym runs on a schedule, and here is today's
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 7vw, 6rem); }

.hero__grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }

@media (min-width: 64rem) {
    .hero__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
}

.hero__day {
    display: inline-flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.hero__day-name {
    font-family: var(--mono);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--flame);
}
.hero__day-date { font-family: var(--mono); font-size: 0.8125rem; color: var(--steel); }

.hero__title { margin-bottom: 1.5rem; }
.hero__title em { font-style: normal; color: var(--flame); }

.hero__lede { margin-bottom: 2rem; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }

.hero__figure { position: relative; }
.hero__photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
@media (min-width: 64rem) { .hero__photo { aspect-ratio: 3 / 4; } }

/* orange plate behind the photo — the brand badge scaled up as structure */
.hero__plate {
    position: absolute;
    inset: auto -1.5rem -1.5rem auto;
    width: 45%;
    aspect-ratio: 1;
    background: var(--flame);
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* today's sessions — signature block */
.today {
    background: var(--ink);
    color: var(--paper);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.today__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1.25rem;
    background: var(--flame);
    color: #fff;
    font-family: var(--mono);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.today__list { display: grid; }

.today__row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: baseline;
    padding: 0.9rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.today__row:first-child { border-top: 0; }

.today__time {
    font-family: var(--mono);
    font-size: 1rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--flame);
}

.today__name { font-weight: 700; letter-spacing: -0.01em; }
.today__where { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.55); }

.today__empty {
    padding: 1.25rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}
.today__empty strong { color: var(--paper); }

/* --------------------------------------------------------------------------
   stat strip
   -------------------------------------------------------------------------- */
.stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--haze-deep);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
@media (min-width: 48rem) { .stats { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.stat { background: var(--paper); padding: 1.5rem 1.25rem; }
.stat__num {
    font-family: var(--display);
    font-weight: 800;
    font-variation-settings: "wdth" 118;
    font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.5rem);
    line-height: 1;
    letter-spacing: -0.02em;
}
.stat__label {
    margin-top: 0.4rem;
    font-family: var(--mono);
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--steel);
}

/* --------------------------------------------------------------------------
   routes — the three ways into this gym
   -------------------------------------------------------------------------- */
.routes { display: grid; gap: 1.25rem; }
@media (min-width: 56rem) { .routes { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.route {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 1.75rem;
    background: var(--paper);
    border: var(--edge) solid var(--haze-deep);
    border-radius: var(--radius-lg);
    transition: border-color 0.2s, transform 0.2s;
}
.route:hover { border-color: var(--flame); transform: translateY(-4px); }

.route__mark {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--flame-wash);
    color: var(--flame);
}

.route__title { font-family: var(--display); font-weight: 800; font-variation-settings: "wdth" 112; font-size: 1.375rem; text-transform: uppercase; letter-spacing: -0.01em; }
.route__body { color: var(--steel); font-size: 0.9375rem; flex: 1; }

.route__meta {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--ink);
    padding-top: 1rem;
    border-top: 1px solid var(--haze);
}
.route__meta b { color: var(--flame); }

/* --------------------------------------------------------------------------
   pricing — the signature. Three parallel ladders keyed to who you are.
   -------------------------------------------------------------------------- */
.switch {
    display: inline-flex;
    gap: 2px;
    padding: 3px;
    background: var(--haze-deep);
    border-radius: var(--radius);
}

.switch__btn {
    padding: 0.7rem 1.15rem;
    border-radius: 2px;
    font-family: var(--mono);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--steel);
    transition: background-color 0.18s, color 0.18s;
}
.switch__btn:hover { color: var(--ink); }
.switch__btn[aria-selected="true"] { background: var(--ink); color: var(--paper); }

.reg-note {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 0.75rem;
    margin-bottom: 2rem;
    padding: 0.9rem 1.1rem;
    background: var(--flame-wash);
    border-left: 3px solid var(--flame);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 0.875rem;
}
.reg-note__label { font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--flame-deep); }
.reg-note__value { font-family: var(--mono); font-weight: 700; }

/* Category grouping — the real shape of the catalogue, so no tab is a flat
   ladder of a dozen unrelated cards. */
.group + .group { margin-top: 2.75rem; }

.group__name {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--haze-deep);
    font-family: var(--display);
    font-weight: 800;
    font-variation-settings: "wdth" 108;
    font-size: 1rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}
.group__count {
    font-family: var(--mono);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: none;
    color: var(--steel);
}

.plans { display: grid; gap: 1.25rem; }
@media (min-width: 44rem) { .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 68rem) { .plans { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.plan {
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    background: var(--paper);
    border: var(--edge) solid var(--haze-deep);
    border-radius: var(--radius-lg);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.plan:hover { border-color: var(--ink); }

.plan--feature { border-color: var(--flame); box-shadow: 0 0 0 4px var(--flame-wash); }

.plan__tag {
    align-self: flex-start;
    margin-bottom: 0.9rem;
    padding: 0.3rem 0.6rem;
    border-radius: 2px;
    background: var(--haze);
    font-family: var(--mono);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--steel);
}
.plan--feature .plan__tag { background: var(--flame); color: #fff; }

.plan__name {
    font-family: var(--display);
    font-weight: 800;
    font-variation-settings: "wdth" 110;
    font-size: 1.25rem;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
}

.plan__price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 0.35rem;
}
.plan__currency { font-family: var(--mono); font-size: 0.875rem; color: var(--steel); }
.plan__amount {
    font-family: var(--display);
    font-weight: 800;
    font-variation-settings: "wdth" 118;
    font-size: clamp(2rem, 1.6rem + 1.4vw, 2.75rem);
    line-height: 1;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

.plan__period { font-family: var(--mono); font-size: 0.75rem; color: var(--steel); margin-bottom: 1.25rem; }

.plan__facts { display: grid; gap: 0.5rem; margin-bottom: 1.5rem; flex: 1; }
.plan__fact { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.875rem; color: var(--steel); }
.plan__fact svg { flex: none; margin-top: 0.2rem; color: var(--flame); }

.plans__empty {
    grid-column: 1 / -1;
    padding: 2.5rem;
    text-align: center;
    color: var(--steel);
    background: var(--paper);
    border: var(--edge) dashed var(--haze-deep);
    border-radius: var(--radius-lg);
}

/* --------------------------------------------------------------------------
   timetable — real weekly grid, days across, sessions stacked
   -------------------------------------------------------------------------- */
.week {
    display: grid;
    gap: 1px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
@media (min-width: 56rem) { .week { grid-template-columns: repeat(7, minmax(0, 1fr)); } }

.day { background: var(--ink); padding: 1.1rem 1rem 1.4rem; min-height: 9rem; }
.day[data-today="true"] { background: var(--ink-soft); box-shadow: inset 0 3px 0 var(--flame); }

.day__name {
    font-family: var(--mono);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    padding-bottom: 0.9rem;
    margin-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.day[data-today="true"] .day__name { color: var(--flame); }

.day__list { display: grid; gap: 0.7rem; }

.slot { display: grid; gap: 0.15rem; }
.slot__time {
    font-family: var(--mono);
    font-size: 0.8125rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--flame);
}
.slot__name { font-size: 0.875rem; font-weight: 600; line-height: 1.3; }
.slot__room { font-size: 0.75rem; color: rgba(255, 255, 255, 0.45); }

.day__rest { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.3); font-family: var(--mono); }

/* --------------------------------------------------------------------------
   trainers
   -------------------------------------------------------------------------- */
.crew { display: grid; gap: 1.25rem; }
@media (min-width: 40rem) { .crew { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 60rem) { .crew { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.coach { display: grid; gap: 0.9rem; }

.coach__frame {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--haze);
}
/* Height is pinned to the frame rather than derived from aspect-ratio — the
   reset's `img { height: auto }` otherwise leaves a gap under short uploads. */
.coach__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.3s, transform 0.4s;
}
.coach:hover .coach__photo { filter: grayscale(0); transform: scale(1.03); }

.coach__name { font-family: var(--display); font-weight: 800; font-variation-settings: "wdth" 110; font-size: 1.0625rem; text-transform: uppercase; letter-spacing: -0.01em; }

.coach__certs { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.5rem; }
.coach__cert {
    padding: 0.25rem 0.5rem;
    border-radius: 2px;
    background: var(--flame-wash);
    color: var(--flame-deep);
    font-family: var(--mono);
    font-size: 0.625rem;
    letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   gallery
   -------------------------------------------------------------------------- */
.frames { display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 60rem) { .frames { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.frame {
    position: relative;
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--haze);
}
.frame img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.5s; }
.frame:hover img { transform: scale(1.05); }

.frame__cap {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.5rem 1rem 0.9rem;
    background: linear-gradient(to top, rgba(17, 20, 24, 0.85), transparent);
    color: #fff;
    font-family: var(--mono);
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@media (min-width: 60rem) {
    .frames--feature .frame:first-child { grid-column: span 2; grid-row: span 2; }
    .frames--feature .frame:first-child img { aspect-ratio: 1; height: 100%; }
}

/* gallery index page */
.wall { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr)); }

.pager { display: flex; justify-content: center; margin-top: 3rem; }
.pager ul { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.pager a, .pager span {
    display: grid;
    place-items: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding-inline: 0.65rem;
    border-radius: var(--radius);
    background: var(--haze);
    font-family: var(--mono);
    font-size: 0.75rem;
    transition: background-color 0.16s, color 0.16s;
}
.pager a:hover { background: var(--ink); color: var(--paper); }
.pager .active span, .pager [aria-current] { background: var(--flame); color: #fff; }

/* --------------------------------------------------------------------------
   closing call
   -------------------------------------------------------------------------- */
.callout {
    position: relative;
    padding: clamp(2.5rem, 6vw, 4.5rem);
    background: var(--flame);
    color: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.callout__grid { display: grid; gap: 2rem; align-items: center; position: relative; z-index: 1; }
@media (min-width: 56rem) { .callout__grid { grid-template-columns: minmax(0, 1.4fr) auto; } }
.callout .lede { color: rgba(255, 255, 255, 0.85); }
.callout__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn--onflame { background: #fff; color: var(--flame-deep); }
.btn--onflame:hover { background: var(--ink); color: #fff; }

/* --------------------------------------------------------------------------
   footer
   -------------------------------------------------------------------------- */
.foot { background: var(--ink); color: rgba(255, 255, 255, 0.65); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }

.foot__grid { display: grid; gap: 2.5rem; }
@media (min-width: 52rem) { .foot__grid { grid-template-columns: 1.4fr repeat(3, 1fr); } }

.foot__title {
    font-family: var(--mono);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--paper);
    margin-bottom: 1rem;
}

.foot__list { display: grid; gap: 0.6rem; font-size: 0.9375rem; }
.foot__list a { transition: color 0.16s; }
.foot__list a:hover { color: var(--flame); }

.foot__brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.foot__brand img { width: 2.75rem; height: 2.75rem; border-radius: 50%; }
.foot__brand span { font-family: var(--display); font-weight: 800; font-variation-settings: "wdth" 112; font-size: 1.125rem; text-transform: uppercase; color: var(--paper); }

.foot__social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.foot__social a {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--paper);
    transition: background-color 0.18s;
}
.foot__social a:hover { background: var(--flame); }

.foot__rule {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--mono);
    font-size: 0.6875rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.45);
}

/* --------------------------------------------------------------------------
   auth — sign-up / sign-in pages
   -------------------------------------------------------------------------- */
.auth { min-height: 100vh; display: grid; }
@media (min-width: 62rem) { .auth { grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr); } }

.auth__main { display: flex; flex-direction: column; padding: clamp(1.5rem, 4vw, 3.5rem); }

/* Masthead and form share one measure so the logo lines up with the fields. */
.auth__top,
.auth__form { width: 100%; max-width: 34rem; margin-inline: auto; }

.auth__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.auth__logo { height: 2.5rem; width: auto; }

/* Orange aside = member-facing. Ink aside = staff-only, so the two audiences
   can tell at a glance which door they are standing at. */
.auth__aside {
    display: none;
    background: var(--flame);
    color: #fff;
    padding: clamp(2rem, 4vw, 3.5rem);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
}
@media (min-width: 62rem) { .auth__aside { display: flex; } }

.auth__aside--ink { background: var(--ink); }
.auth__aside--ink .eyebrow { color: var(--flame); }
.auth__aside--ink .step__n { color: var(--flame); }

.role-tag {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.14);
    font-family: var(--mono);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.auth__aside--ink .role-tag { background: var(--flame); color: #fff; }

.auth__form { width: 100%; max-width: 34rem; }

/* Registration really is a sequence, so the numbering carries information. */
.steps { display: grid; gap: 1.25rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.step__n {
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 700;
    padding-top: 0.15rem;
    color: rgba(255, 255, 255, 0.62);
}
.step__title { font-weight: 700; margin-bottom: 0.15rem; }
.step__body { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.8); }

.perks { display: grid; gap: 0.7rem; }
.perk { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9375rem; }
.perk svg { flex: none; margin-top: 0.2rem; }

/* --- fields --------------------------------------------------------------- */
.field { display: grid; gap: 0.45rem; margin-bottom: 1.15rem; }

.field__label {
    font-family: var(--mono);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
}
.field__hint { font-size: 0.8125rem; color: var(--steel); }

.input {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--body);
    font-size: 1rem;
    color: var(--ink);
    background: var(--paper);
    border: var(--edge) solid var(--haze-deep);
    border-radius: var(--radius);
    transition: border-color 0.16s, box-shadow 0.16s;
    appearance: none;
}
.input::placeholder { color: #9aa7b1; }
.input:hover { border-color: var(--steel); }
.input:focus {
    outline: none;
    border-color: var(--flame);
    box-shadow: 0 0 0 3px var(--flame-wash);
}
.input[aria-invalid="true"] { border-color: #c62828; }

.field__wrap { position: relative; display: grid; }
.field__wrap .input { padding-right: 3.25rem; }

.reveal-btn {
    position: absolute;
    top: 50%;
    right: 0.4rem;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius);
    color: var(--steel);
}
.reveal-btn:hover { color: var(--ink); background: var(--haze); }

.field__error {
    font-family: var(--mono);
    font-size: 0.6875rem;
    letter-spacing: 0.02em;
    color: #c62828;
    min-height: 0;
}
.field__error:empty { display: none; }

/* segmented choice — same control as the pricing switch on the home page */
.choice { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.6rem; }

.choice__opt { position: relative; }
.choice__opt input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    margin: 0;
}
.choice__face {
    display: grid;
    gap: 0.15rem;
    padding: 0.8rem 1rem;
    border: var(--edge) solid var(--haze-deep);
    border-radius: var(--radius);
    transition: border-color 0.16s, background-color 0.16s;
}
.choice__opt:hover .choice__face { border-color: var(--steel); }
.choice__opt input:checked + .choice__face { border-color: var(--flame); background: var(--flame-wash); }
.choice__opt input:focus-visible + .choice__face { outline: 3px solid var(--flame); outline-offset: 2px; }

.choice__name { font-weight: 700; font-size: 0.9375rem; }
.choice__note { font-size: 0.75rem; color: var(--steel); }

.consent { display: flex; gap: 0.65rem; align-items: flex-start; margin: 1.5rem 0; font-size: 0.875rem; color: var(--steel); }
.consent input { width: 1.15rem; height: 1.15rem; margin: 0.15rem 0 0; accent-color: var(--flame); flex: none; }
.consent a { color: var(--flame-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.btn--block { width: 100%; justify-content: center; padding-block: 1.05rem; }

.notice {
    display: none;
    gap: 0.6rem;
    align-items: flex-start;
    padding: 0.9rem 1.1rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
    font-size: 0.9375rem;
}
.notice[data-show="true"] { display: flex; }
.notice--bad { background: #fdecea; color: #a32019; border-left: 3px solid #c62828; }
.notice--good { background: var(--flame-wash); color: var(--flame-deep); border-left: 3px solid var(--flame); }

.auth__alt { margin-top: 2rem; font-size: 0.9375rem; color: var(--steel); }
.auth__alt a { color: var(--flame-deep); font-weight: 600; }

.auth__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 2.5rem;
    font-family: var(--mono);
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--steel);
}
.auth__back:hover { color: var(--ink); }

/* --------------------------------------------------------------------------
   scroll reveal + motion preferences
   -------------------------------------------------------------------------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
    .btn:hover, .route:hover { transform: none; }
}
