@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/barlow-400.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/barlow-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/barlow-500.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/barlow-600.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/barlow-condensed-600.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow-condensed-700.woff2") format("woff2");
}

:root {
  --bg: #f6f4f1;
  --surface: #ffffff;
  --sand: #ede8e0;
  --sand-deep: #e2dbd0;
  --ink: #15140f;
  --ink-soft: #37312a;
  --muted: #6b6459;
  --line: #e0dad1;
  --line-strong: #cdc5b8;
  --ember: #c74d14;
  --ember-deep: #a2380f;
  --ember-wash: #fbeee7;
  --r: 4px;
  --pill: 999px;
  --gut: 20px;
  --max: 1180px;
  --band: clamp(56px, 9vw, 104px);
  --body: "Barlow", -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Barlow Condensed", "Barlow", -apple-system, "Segoe UI", sans-serif;
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
}

body,
main,
header,
footer,
section {
  overflow-x: clip;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.02;
  margin: 0;
  letter-spacing: -0.005em;
}

p,
ul,
ol,
dl {
  margin: 0;
}

a {
  color: var(--ember-deep);
  text-decoration: none;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gut);
}

.narrow {
  max-width: 760px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 18px;
  z-index: 60;
  border-radius: 0 0 var(--r) 0;
}

.skip:focus {
  left: 0;
}

.eyebrow {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}

.eyebrow.on-ember {
  color: var(--ember-deep);
}

.display {
  text-transform: uppercase;
  letter-spacing: 0.005em;
}

.h-xl {
  font-size: clamp(2.5rem, 8.4vw, 4.5rem);
  text-wrap: balance;
}

.h-lg {
  font-size: clamp(2rem, 6vw, 3.1rem);
}

.h-md {
  font-size: clamp(1.55rem, 4vw, 2.1rem);
}

.h-sm {
  font-size: clamp(1.3rem, 3vw, 1.55rem);
}

.lede {
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

.muted {
  color: var(--muted);
}

.stack > * + * {
  margin-top: 18px;
}

.stack-lg > * + * {
  margin-top: 30px;
}

.band {
  padding-block: var(--band);
}

.band-tight {
  padding-block: clamp(38px, 6vw, 64px);
}

.band-sand {
  background: var(--sand);
}

.band-ink {
  background: var(--ink);
  color: var(--bg);
}

.band-ink h1,
.band-ink h2,
.band-ink h3 {
  color: var(--bg);
}

.band-ink .eyebrow {
  color: var(--sand-deep);
}

.band-ink a {
  color: #f0b898;
}

.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

.ic {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  flex: none;
  vertical-align: -0.125em;
}

.badge {
  display: inline-flex;
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: var(--pill);
  border: 1px solid var(--line-strong);
  background: var(--surface);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.4;
}

.badge-ember {
  background: var(--ember-wash);
  border-color: #f0cdb9;
  color: var(--ember-deep);
}

.badge-ink {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 13px 22px;
  border-radius: var(--r);
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  font-family: var(--display);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.btn:hover {
  background: var(--ember);
  border-color: var(--ember);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-ember {
  background: var(--ember);
  border-color: var(--ember);
  color: #fff;
}

.btn-ember:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.band-ink .btn-ghost {
  color: var(--bg);
  border-color: rgba(246, 244, 241, 0.45);
}

.band-ink .btn-ghost:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}

.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  min-width: 0;
}

.brand:hover {
  text-decoration: none;
  color: var(--ember-deep);
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
}

.brand span {
  white-space: nowrap;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-toggle .ic {
  font-size: 1.15rem;
}

.nav-toggle .ic-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .ic-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .ic-close {
  display: inline-block;
}

.site-nav {
  position: absolute;
  top: 100%;
  right: var(--gut);
  left: var(--gut);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  padding: 10px;
  box-shadow: 0 18px 40px rgba(21, 20, 15, 0.14);
  display: none;
}

.site-nav.open {
  display: block;
  animation: drop 0.2s ease both;
}

.site-nav.closing {
  display: block;
  animation: drop 0.16s ease both reverse;
}

@keyframes drop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--r);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  text-decoration: none;
  color: var(--ember-deep);
  transform: translateX(5px);
}

.site-nav a[aria-current="page"] {
  color: var(--ember-deep);
}

.site-nav a[aria-current="page"]::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ember);
  flex: none;
}

.nav-cta {
  display: none;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: block;
    border: 0;
    padding: 0;
    box-shadow: none;
    background: transparent;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 2px;
  }

  .site-nav a {
    padding: 9px 11px;
    font-size: 1rem;
    letter-spacing: 0.04em;
  }

  .site-nav a:hover {
    transform: none;
  }

  .site-nav a[aria-current="page"]::after {
    display: none;
  }

  .site-nav a[aria-current="page"] {
    box-shadow: inset 0 -2px 0 var(--ember);
  }

  .nav-cta {
    display: inline-flex;
    padding: 10px 16px;
    font-size: 0.95rem;
  }
}

.hero {
  padding-block: clamp(40px, 7vw, 82px);
}

.hero-after {
  margin-top: clamp(30px, 4.5vw, 52px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

@media (min-width: 940px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  }
}

.hero h1 {
  margin-bottom: 20px;
}

.hero-art {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(18px, 3vw, 34px);
}

.figure-card {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(16px, 3vw, 30px);
  margin: 0;
}

.figure-card img {
  width: 100%;
}

.figure-card figcaption {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}

.stat-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}

@media (min-width: 640px) {
  .stat-row-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stat-row-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  .stat-row-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.stat {
  background: var(--bg);
  padding: 20px;
  min-width: 0;
}

.stat b {
  display: block;
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}

.stat span {
  display: block;
  margin-top: 7px;
  font-size: 14px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: clamp(16px, 2.4vw, 26px);
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 700px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 700px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(20px, 3vw, 28px);
  min-width: 0;
  transition: border-color 0.22s ease, transform 0.22s ease;
}

.card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.card h2 a::after,
.card h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.card .more,
.card .price {
  position: relative;
}

.card-art {
  background: var(--sand);
  border-radius: var(--r);
  padding: 14px;
  margin: -4px 0 4px;
}

.card h2 a,
.card h3 a {
  color: var(--ink);
}

.card h2 a:hover,
.card h3 a:hover {
  color: var(--ember-deep);
  text-decoration: none;
}

.card .meta {
  font-size: 14px;
  color: var(--muted);
}

.card-foot {
  margin-top: auto;
  padding-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: baseline;
  justify-content: space-between;
}

.price {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}

.price small {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}

.more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-block: 9px;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ember-deep);
}

.more .ic {
  transition: transform 0.22s ease;
}

.more:hover {
  text-decoration: none;
}

.more:hover .ic {
  transform: translateX(4px);
}

.ticks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}

.ticks li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  min-width: 0;
}

.ticks .ic {
  color: var(--ember);
  font-size: 1.15rem;
  margin-top: 4px;
}

.linklist {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.linklist li {
  border-bottom: 1px solid var(--line);
  min-width: 0;
}

.linklist a {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 4px;
  color: var(--ink);
  transition: transform 0.22s ease, color 0.22s ease;
}

.linklist a:hover {
  text-decoration: none;
  color: var(--ember-deep);
  transform: translateX(6px);
}

.linklist strong {
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.linklist span {
  font-size: 14px;
  color: var(--muted);
  flex: 0 1 auto;
  min-width: 0;
}

.prose {
  max-width: 68ch;
}

.prose > * + * {
  margin-top: 20px;
}

.prose h2 {
  font-size: clamp(1.5rem, 3.4vw, 1.95rem);
  margin-top: 44px;
  line-height: 1.12;
}

.prose h3 {
  font-size: clamp(1.22rem, 2.6vw, 1.4rem);
  margin-top: 32px;
  line-height: 1.2;
}

.prose ul,
.prose ol {
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

.prose li {
  min-width: 0;
}

.prose blockquote {
  margin: 0;
  padding: 18px 22px;
  background: var(--sand);
  border-left: 3px solid var(--ember);
  border-radius: 0 var(--r) var(--r) 0;
  font-size: 1.08rem;
}

.prose strong {
  font-weight: 600;
}

.callout {
  background: var(--sand);
  border: 1px solid var(--line);
  border-left: 3px solid var(--ember);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 20px 22px;
}

.callout h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.timetable {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 860px) {
  .timetable {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
  }
}

.day {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px;
  min-width: 0;
}

@media (min-width: 860px) {
  .day {
    border: 0;
    border-radius: 0;
    padding: 16px 14px;
  }

  .day-rest {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 20px;
    padding: 18px 14px;
  }

  .day-rest h2 {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .day-rest .slots {
    margin: 0;
  }

  .day-rest .slot {
    border: 0;
    background: transparent;
    padding: 0;
  }
}

.day h2 {
  font-size: 1.12rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.slots {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.slot {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border-radius: var(--r);
  background: var(--bg);
  border: 1px solid var(--line);
  min-width: 0;
}

.slot time {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.slot a {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}

.slot a:hover {
  color: var(--ember-deep);
}

.slot a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.slot .who {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.slot-rest {
  color: var(--muted);
  font-size: 15px;
}

@media (min-width: 560px) and (max-width: 859px) {
  .day:not(.day-rest) .slot {
    grid-template-columns: 96px minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 4px 16px;
  }
}

.tiers {
  display: grid;
  gap: clamp(16px, 2.4vw, 24px);
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}

@media (min-width: 900px) {
  .tiers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.tier {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(22px, 3vw, 30px);
  min-width: 0;
}

.tier-featured {
  background: var(--sand);
  border-color: var(--line-strong);
}

.tier .amount {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.tier .amount span {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

.tier .ticks {
  flex: 1;
}

.tier .btn {
  width: fit-content;
}

@media (min-width: 900px) {
  .tier .btn {
    width: 100%;
    justify-content: center;
  }
}

.coach {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(20px, 3vw, 32px);
}

@media (min-width: 720px) {
  .coach {
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
  }
}

.coach-id {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

@media (min-width: 720px) {
  .coach-id {
    display: block;
  }
}

.coach-id img {
  width: 92px;
  height: 92px;
  flex: none;
}

@media (min-width: 720px) {
  .coach-id img {
    width: 148px;
    height: 148px;
  }
}

.initials {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ember-deep);
}

@media (min-width: 720px) {
  .initials {
    margin-top: 14px;
  }
}

.faq {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 2px;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.6vw, 1.35rem);
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s ease;
  min-width: 0;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary:hover {
  color: var(--ember-deep);
}

.faq summary .ic {
  font-size: 1.2rem;
  margin-top: 3px;
  color: var(--ember);
  transition: transform 0.25s ease;
}

.faq details[open] summary .ic {
  transform: rotate(180deg);
}

.faq .answer {
  padding: 0 2px 22px;
  display: grid;
  gap: 14px;
  color: var(--ink-soft);
}

.faq details[open] .answer {
  animation: fade 0.25s ease both;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.field label,
.field .label {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.field input,
.field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  padding: 13px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 0 3px var(--ember-wash);
}

.field .hint {
  font-size: 14px;
  color: var(--muted);
}

.field .err {
  display: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--ember-deep);
  align-items: center;
  gap: 7px;
}

.field.invalid .err {
  display: flex;
}

.field.invalid input,
.field.invalid textarea,
.field.invalid .pick-btn {
  border-color: var(--ember);
}

.pick {
  position: relative;
  min-width: 0;
}

.pick-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--body);
  font-size: 16px;
  text-align: left;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  padding: 13px 14px;
  cursor: pointer;
}

.pick-btn .ic {
  color: var(--muted);
  transition: transform 0.22s ease;
}

.pick-btn[aria-expanded="true"] .ic {
  transform: rotate(180deg);
}

.pick-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 30;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  box-shadow: 0 18px 40px rgba(21, 20, 15, 0.16);
  display: none;
  max-height: 280px;
  overflow-y: auto;
}

.pick-list.open {
  display: block;
  animation: drop 0.18s ease both;
}

.pick-list li {
  padding: 11px 12px;
  border-radius: var(--r);
  cursor: pointer;
  font-size: 16px;
  min-width: 0;
}

.pick-list li:hover,
.pick-list li.active {
  background: var(--sand);
}

.pick-list li[aria-selected="true"] {
  color: var(--ember-deep);
  font-weight: 600;
}

.form-note {
  font-size: 14px;
  color: var(--muted);
}

.form-status {
  display: none;
  gap: 10px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--r);
  background: var(--ember-wash);
  border: 1px solid #f0cdb9;
  color: var(--ember-deep);
  font-size: 15px;
}

.form-status.show {
  display: flex;
}

.form-status .ic {
  font-size: 1.15rem;
  margin-top: 3px;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.next {
  border-top: 1px solid var(--line);
  background: var(--sand);
}

.next-grid {
  display: grid;
  gap: clamp(16px, 2.4vw, 24px);
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 760px) {
  .next-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.next-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
  color: var(--ink);
  min-width: 0;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.next-card:hover {
  text-decoration: none;
  transform: translateX(5px);
  border-color: var(--line-strong);
}

.next-card strong {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
}

.next-card:hover strong {
  color: var(--ember-deep);
}

.next-card span {
  font-size: 15px;
  color: var(--muted);
}

.site-foot {
  background: var(--ink);
  color: #cfc8bd;
  padding-block: clamp(44px, 6vw, 72px) 34px;
  font-size: 15px;
}

.foot-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 700px) {
  .foot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  .foot-grid {
    grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
    gap: 40px;
  }
}

.site-foot h2 {
  font-size: 13px;
  font-family: var(--body);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8d8477;
  margin-bottom: 14px;
}

.site-foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.site-foot a {
  color: #ece6dd;
  transition: transform 0.2s ease, color 0.2s ease;
  display: inline-block;
  padding-block: 5px;
}

.site-foot a:hover {
  color: #f0b898;
  text-decoration: none;
  transform: translateX(4px);
}

.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--bg);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.foot-brand:hover {
  transform: none;
}

.foot-brand img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.foot-note {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid #2f2b24;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: 14px;
  color: #8d8477;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
}

.js .reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

@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;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .card:hover,
  .next-card:hover,
  .linklist a:hover,
  .site-nav a:hover,
  .btn:hover,
  .site-foot a:hover {
    transform: none;
  }
}

.ic-accessibility {
  -webkit-mask-image: url("../icons/accessibility.svg");
  mask-image: url("../icons/accessibility.svg");
}

.ic-arrow-left {
  -webkit-mask-image: url("../icons/arrow-left.svg");
  mask-image: url("../icons/arrow-left.svg");
}

.ic-arrow-right {
  -webkit-mask-image: url("../icons/arrow-right.svg");
  mask-image: url("../icons/arrow-right.svg");
}

.ic-calendar-days {
  -webkit-mask-image: url("../icons/calendar-days.svg");
  mask-image: url("../icons/calendar-days.svg");
}

.ic-check {
  -webkit-mask-image: url("../icons/check.svg");
  mask-image: url("../icons/check.svg");
}

.ic-chevron-down {
  -webkit-mask-image: url("../icons/chevron-down.svg");
  mask-image: url("../icons/chevron-down.svg");
}

.ic-circle-check {
  -webkit-mask-image: url("../icons/circle-check.svg");
  mask-image: url("../icons/circle-check.svg");
}

.ic-clock {
  -webkit-mask-image: url("../icons/clock.svg");
  mask-image: url("../icons/clock.svg");
}

.ic-dumbbell {
  -webkit-mask-image: url("../icons/dumbbell.svg");
  mask-image: url("../icons/dumbbell.svg");
}

.ic-mail {
  -webkit-mask-image: url("../icons/mail.svg");
  mask-image: url("../icons/mail.svg");
}

.ic-map-pin {
  -webkit-mask-image: url("../icons/map-pin.svg");
  mask-image: url("../icons/map-pin.svg");
}

.ic-open {
  -webkit-mask-image: url("../icons/menu.svg");
  mask-image: url("../icons/menu.svg");
}

.ic-notebook-pen {
  -webkit-mask-image: url("../icons/notebook-pen.svg");
  mask-image: url("../icons/notebook-pen.svg");
}

.ic-pound-sterling {
  -webkit-mask-image: url("../icons/pound-sterling.svg");
  mask-image: url("../icons/pound-sterling.svg");
}

.ic-shield-check {
  -webkit-mask-image: url("../icons/shield-check.svg");
  mask-image: url("../icons/shield-check.svg");
}

.ic-triangle-alert {
  -webkit-mask-image: url("../icons/triangle-alert.svg");
  mask-image: url("../icons/triangle-alert.svg");
}

.ic-user-round {
  -webkit-mask-image: url("../icons/user-round.svg");
  mask-image: url("../icons/user-round.svg");
}

.ic-users {
  -webkit-mask-image: url("../icons/users.svg");
  mask-image: url("../icons/users.svg");
}

.ic-close {
  -webkit-mask-image: url("../icons/x.svg");
  mask-image: url("../icons/x.svg");
}

@media print {
  .site-head,
  .next,
  .skip,
  .btn,
  .nav-toggle,
  .hero-art,
  .figure-card,
  .card-art,
  .form-status {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .band,
  .band-tight,
  .hero {
    padding-block: 14pt;
  }

  .band-sand,
  .band-ink,
  .site-foot {
    background: #fff;
    color: #000;
  }

  .band-ink h1,
  .band-ink h2,
  .band-ink h3,
  .site-foot a,
  .site-foot h2 {
    color: #000;
  }

  .timetable {
    display: block;
  }

  .day {
    padding: 0;
    margin-bottom: 12pt;
  }

  .day h2 {
    font-size: 13pt;
    padding-bottom: 4pt;
  }

  .slots {
    display: block;
    margin-top: 6pt;
  }

  .slot {
    display: grid;
    grid-template-columns: 70pt 1fr auto;
    gap: 0 12pt;
    padding: 2pt 0;
    border: 0;
    background: transparent;
    border-radius: 0;
  }

  .slot time {
    font-size: 11pt;
  }

  .day,
  .card,
  .tier,
  .coach,
  .slot {
    break-inside: avoid;
  }

  .site-foot {
    border-top: 1pt solid #999;
    padding-block: 12pt;
  }

  .foot-grid > div:not(:first-child),
  .foot-brand img {
    display: none;
  }

  .foot-note {
    margin-top: 10pt;
    padding-top: 8pt;
  }
}

.ic-car {
  -webkit-mask-image: url("../icons/car.svg");
  mask-image: url("../icons/car.svg");
}

.ic-bike {
  -webkit-mask-image: url("../icons/bike.svg");
  mask-image: url("../icons/bike.svg");
}
