/* kings brand register - cinematic warm dark */

body.kings {
  background: var(--kings-bg);
  color: var(--kings-fg);
}

/* hero - full bleed video with overlay copy */
.k-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px var(--pad-x) 80px;
  background: #0c0a08;
}
@media (min-width: 900px) {
  .k-hero {
    padding: 140px var(--pad-x-lg) 100px;
  }
}
.k-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* left vignette where headline + sub + CTAs sit */
    linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 35%, rgba(0,0,0,0.05) 65%, transparent 85%),
    /* bottom dark wash for the lower copy + CTAs */
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 25%, transparent 48%, rgba(0,0,0,0.92) 100%);
  z-index: 3;
  pointer-events: none;
}

/* youtube ambient hero - fills the .media wrapper as a 16:9 cover */
.k-hero .yt-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.k-hero .yt-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.12);
  pointer-events: none;
  border: 0;
}
.k-hero > *:not(.media) {
  position: relative;
  z-index: 4;
}

.k-hero .eye {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: none;
  opacity: 0.6;
  margin-bottom: 24px;
  font-weight: 400;
}
.k-hero h1 {
  font-size: clamp(56px, 13vw, 156px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: none;
  max-width: 1100px;
  margin-bottom: 32px;
}
.k-hero .sub {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 300;
  opacity: 0.78;
  max-width: 540px;
  line-height: 1.55;
  margin-bottom: 36px;
}
.k-hero .cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* scroll indicator */
.k-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: none;
  opacity: 0.55;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.k-scroll .line {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.4);
  animation: scrollLine 2400ms var(--ease) infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; }
  50% { transform: scaleY(1); }
}

/* scroll indicator sits over the gradient */
.k-scroll {
  z-index: 5;
}

/* lifestyle pillars - 3 (fitness, food + community, recovery + sports) */
.k-pillars {
  background: var(--kings-bg);
  padding: 80px var(--pad-x);
}
@media (min-width: 900px) {
  .k-pillars {
    padding: 140px var(--pad-x-lg);
  }
}
.k-pillars .eye {
  text-align: center;
  margin-bottom: 18px;
}
.k-pillars .section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.022em;
  text-transform: none;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.pillar-grid {
  display: grid;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .pillar-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
  }
}
.pillar {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #1c1814;
  transition: transform 500ms var(--ease);
  display: block;
  min-height: 320px;
  height: auto;
}
@media (min-width: 900px) {
  .pillar {
    aspect-ratio: auto;
    height: 560px;
    min-height: 560px;
  }
}
.pillar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
}
.pillar .pcontent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 3;
  color: #fff;
}
@media (min-width: 900px) {
  .pillar .pcontent {
    padding: 36px;
  }
}
.pillar .ptag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: none;
  opacity: 0.65;
  margin-bottom: 8px;
}
.pillar .ph-title {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.018em;
  text-transform: none;
  line-height: 1.05;
  margin-bottom: 8px;
}
.pillar .pdesc {
  font-size: 15px;
  font-weight: 300;
  opacity: 0.78;
  max-width: 360px;
  line-height: 1.5;
}

/* stats strip */
.k-stats {
  background: var(--kings-bg-2);
  padding: 70px var(--pad-x);
  border-top: 1px solid var(--kings-line);
  border-bottom: 1px solid var(--kings-line);
}
@media (min-width: 900px) {
  .k-stats {
    padding: 110px var(--pad-x-lg);
  }
}
.stat-grid {
  display: grid;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 600px) {
  .stat-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.stat .num {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat .lbl {
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0.16em;
  opacity: 0.6;
}

/* membership preview band */
.k-mem-preview {
  background: var(--kings-bg);
  padding: 100px var(--pad-x);
}
@media (min-width: 900px) {
  .k-mem-preview {
    padding: 160px var(--pad-x-lg);
  }
}
.k-mem-preview .wrap {
  display: grid;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 900px) {
  .k-mem-preview .wrap {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
.k-mem-preview .copy .eye {
  margin-bottom: 18px;
}
.k-mem-preview .copy h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.022em;
  text-transform: none;
  line-height: 1;
  margin-bottom: 24px;
}
.k-mem-preview .copy p {
  font-size: 17px;
  font-weight: 300;
  opacity: 0.78;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 32px;
}
.k-mem-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 380px;
  max-height: 720px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--kings-bg-3);
}

/* lifestyle quote band */
.k-quote {
  background: var(--kings-bg);
  padding: 100px var(--pad-x);
  border-top: 1px solid var(--kings-line);
}
@media (min-width: 900px) {
  .k-quote {
    padding: 160px var(--pad-x-lg);
  }
}
.k-quote .wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.k-quote blockquote {
  font-size: clamp(28px, 4.2vw, 56px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  text-transform: none;
  margin-bottom: 32px;
  max-width: 1000px;
}
.k-quote .attrib {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: none;
  opacity: 0.55;
}

/* footer */
.k-footer {
  background: #050402;
  padding: 60px var(--pad-x) 28px;
  border-top: 1px solid var(--kings-line);
}
@media (min-width: 900px) {
  .k-footer {
    padding: 100px var(--pad-x-lg) 36px;
  }
}
.k-footer .top {
  display: grid;
  gap: 40px;
  margin-bottom: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 700px) {
  .k-footer .top {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
  }
}
.k-footer .brand-block {
  max-width: 380px;
}
.k-footer .brand-mark {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.k-footer p {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.6;
  line-height: 1.6;
}
.k-footer .col h5 {
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0.2em;
  opacity: 0.5;
  margin-bottom: 18px;
  font-weight: 600;
}
.k-footer .col ul {
  list-style: none;
}
.k-footer .col li {
  margin-bottom: 10px;
}
.k-footer .col a {
  font-size: 15px;
  opacity: 0.85;
  text-transform: none;
  transition: opacity 180ms var(--ease);
}
.k-footer .col a:hover {
  opacity: 1;
}
.k-footer .bot {
  border-top: 1px solid var(--kings-line);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: none;
  opacity: 0.45;
  max-width: 1400px;
  margin: 0 auto;
}

/* ============================================================
   membership page - value stack tiles, toggle, tiers, faqs
   ============================================================ */
.k-mem-hero {
  position: relative;
  padding: 180px var(--pad-x) 100px;
  background:
    radial-gradient(at 60% 20%, rgba(220, 140, 70, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, var(--kings-bg) 0%, var(--kings-bg-2) 100%);
}
@media (min-width: 900px) {
  .k-mem-hero {
    padding: 220px var(--pad-x-lg) 120px;
  }
}
.k-mem-hero .wrap {
  max-width: 1400px;
  margin: 0 auto;
}
.k-mem-hero .eye {
  margin-bottom: 18px;
}
.k-mem-hero h1 {
  font-size: clamp(48px, 9vw, 128px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: none;
  max-width: 900px;
  margin-bottom: 28px;
}
.k-mem-hero .sub {
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 300;
  opacity: 0.78;
  max-width: 560px;
  line-height: 1.55;
}

/* value stack grid - 8 tiles under 4 categories */
.value-stack {
  padding: 80px var(--pad-x);
  background: var(--kings-bg);
}
@media (min-width: 900px) {
  .value-stack {
    padding: 120px var(--pad-x-lg);
  }
}
.value-stack .wrap {
  max-width: 1400px;
  margin: 0 auto;
}
.vs-intro {
  margin-bottom: 64px;
  max-width: 720px;
}
.vs-intro h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.022em;
  text-transform: none;
  line-height: 1.02;
  margin-bottom: 18px;
}
.vs-intro p {
  font-size: 17px;
  font-weight: 300;
  opacity: 0.75;
  line-height: 1.55;
}

.vs-category {
  margin-bottom: 64px;
}
.vs-cat-title {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.012em;
  text-transform: none;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--kings-line);
}
.vs-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .vs-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .vs-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
  }
}
.vs-tile {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1.1;
  min-height: 280px;
  background: var(--kings-bg-3);
  cursor: pointer;
  transition: transform 320ms var(--ease);
  display: block;
}
.vs-tile:hover {
  transform: translateY(-3px);
}
.vs-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.82) 100%);
  z-index: 2;
  pointer-events: none;
}
.vs-tile .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 24px;
  z-index: 3;
}
.vs-tile h4 {
  font-size: 20px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.012em;
  margin-bottom: 4px;
  line-height: 1.15;
}
.vs-tile p {
  font-size: 13px;
  font-weight: 300;
  opacity: 0.75;
  line-height: 1.45;
}

/* tiers */
.tiers {
  padding: 80px var(--pad-x);
  background: var(--kings-bg-2);
  border-top: 1px solid var(--kings-line);
}
@media (min-width: 900px) {
  .tiers {
    padding: 140px var(--pad-x-lg);
  }
}
.tiers .wrap {
  max-width: 1400px;
  margin: 0 auto;
}
.tiers-head {
  text-align: center;
  margin-bottom: 56px;
}
.tiers-head .eye {
  margin-bottom: 18px;
}
.tiers-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.022em;
  text-transform: none;
  margin-bottom: 32px;
}
.tier-toggle-row {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.tier-toggle-note {
  text-align: center;
  font-size: 13px;
  opacity: 0.55;
  text-transform: none;
  letter-spacing: 0.06em;
  margin-bottom: 48px;
}

.tier-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .tier-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1100px) {
  .tier-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}
.tier {
  border: 1px solid var(--kings-line);
  border-radius: 12px;
  padding: 32px 26px 28px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  transition: border-color 240ms var(--ease), background 240ms var(--ease);
}
.tier:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}
.tier.featured {
  background: #fff;
  color: #121212;
  border-color: #fff;
}
.tier-eye {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: none;
  opacity: 0.55;
  margin-bottom: 10px;
}
.tier h3 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-transform: none;
  line-height: 1.1;
  margin-bottom: 12px;
}
.tier .price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.tier .price .amt {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.tier .price .per {
  font-size: 14px;
  opacity: 0.6;
  text-transform: none;
}
.tier .joining {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: none;
  opacity: 0.55;
  margin-bottom: 22px;
}
.tier ul {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.tier ul li {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  padding: 6px 0;
  opacity: 0.85;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.tier.featured ul li {
  border-top-color: rgba(28, 42, 58, 0.08);
}
.tier ul li:first-child {
  border-top: none;
}
.tier .tier-cta {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  border: 1px solid currentColor;
  transition: background 200ms var(--ease);
}
.tier:not(.featured) .tier-cta:hover {
  background: rgba(255, 255, 255, 0.08);
}
.tier.featured .tier-cta {
  background: #121212;
  color: #fff;
  border-color: #121212;
}
.tier.featured .tier-cta:hover {
  background: #2a2a2a;
}

.tier-evidence-note {
  margin-top: 24px;
  font-size: 13px;
  font-weight: 300;
  opacity: 0.5;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

/* faqs section */
.k-faqs {
  padding: 80px var(--pad-x);
  background: var(--kings-bg);
  border-top: 1px solid var(--kings-line);
}
@media (min-width: 900px) {
  .k-faqs {
    padding: 140px var(--pad-x-lg);
  }
}
.k-faqs .wrap {
  max-width: 920px;
  margin: 0 auto;
}
.k-faqs .head {
  text-align: center;
  margin-bottom: 56px;
}
.k-faqs .head .eye {
  margin-bottom: 18px;
}
.k-faqs .head h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.022em;
  text-transform: none;
}

/* join wizard */
.join-shell {
  min-height: 100vh;
  min-height: 100svh;
  background:
    radial-gradient(at 78% 30%, rgba(220, 140, 70, 0.28) 0%, transparent 55%),
    radial-gradient(at 15% 85%, rgba(180, 80, 40, 0.18) 0%, transparent 50%),
    linear-gradient(165deg, #1a1410 0%, #0c0a08 60%, #050402 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.join-shell > * {
  position: relative;
  z-index: 3;
}

/* the atmosphere column - photograph + warm overlays */
.join-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.join-atmosphere::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.join-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 60% 25%, rgba(220, 140, 70, 0.22) 0%, transparent 55%),
    linear-gradient(180deg, rgba(12,10,8,0.35) 0%, rgba(12,10,8,0.55) 60%, rgba(12,10,8,0.85) 100%);
}
@media (min-width: 1000px) {
  .join-atmosphere::before {
    width: 55%;
    opacity: 0.85;
  }
  .join-atmosphere::after {
    background:
      radial-gradient(at 30% 25%, rgba(220, 140, 70, 0.3) 0%, transparent 40%),
      linear-gradient(90deg, rgba(12,10,8,0.05) 0%, rgba(12,10,8,0.2) 35%, rgba(12,10,8,0.7) 50%, rgba(20,16,12,0.95) 65%, rgba(20,16,12,1) 100%);
  }
}
.join-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--kings-line);
}
@media (min-width: 900px) {
  .join-bar {
    padding: 28px 48px;
  }
}
.join-bar .brand {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
}
.join-bar .step-pip {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: none;
  opacity: 0.55;
}
.join-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}
.join-progress .fill {
  height: 100%;
  background: #fff;
  transition: width 600ms var(--ease);
}
.join-body {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 40px 24px;
}
@media (min-width: 900px) {
  .join-body {
    padding: 60px 48px;
  }
}
.join-body .inner {
  max-width: 540px;
  margin: 0 auto;
  width: 100%;
}

/* step 1 two-column layout: left = atmosphere + value, right = tier picker */
.join-body.split {
  align-items: stretch;
  padding: 0;
}
.join-body.split .inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}
@media (min-width: 1000px) {
  .join-body.split .inner {
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 80px);
  }
}
.join-left {
  padding: 60px 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1000px) {
  .join-left {
    padding: 80px 48px;
  }
}
.join-right {
  padding: 0 24px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(20, 16, 12, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 1000px) {
  .join-right {
    padding: 80px 48px;
    background: linear-gradient(180deg, rgba(20, 16, 12, 0.78) 0%, rgba(12, 10, 8, 0.88) 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }
}
.join-left h1 {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 600;
  letter-spacing: -0.025em;
  text-transform: none;
  line-height: 0.96;
  margin-bottom: 18px;
}
.join-left .lead {
  font-size: 17px;
  font-weight: 300;
  opacity: 0.75;
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.55;
}
.join-points {
  list-style: none;
  padding: 0;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 460px;
}
.join-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  font-weight: 300;
  opacity: 0.85;
  line-height: 1.5;
}
.join-points li .num {
  flex: 0 0 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.join-points li b {
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}
.join-right .step-eye {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: none;
  opacity: 0.55;
  margin-bottom: 14px;
}
.join-right h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.05;
  text-transform: none;
  margin-bottom: 28px;
}
.join-body .eye {
  margin-bottom: 18px;
}
.join-body h1 {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 600;
  letter-spacing: -0.025em;
  text-transform: none;
  line-height: 0.96;
  margin-bottom: 14px;
}
.join-body .lead {
  font-size: 17px;
  font-weight: 300;
  opacity: 0.7;
  margin-bottom: 40px;
  max-width: 460px;
}

.join-tier-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.join-tier {
  text-align: left;
  border: 1px solid var(--kings-line);
  border-radius: 12px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  transition: border-color 240ms var(--ease), background 240ms var(--ease), transform 240ms var(--ease);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: 100%;
  position: relative;
  font-family: inherit;
  cursor: pointer;
}
.join-tier:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}
.join-tier.selected {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.07);
}
.join-tier.selected::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  bottom: -1px;
  width: 3px;
  background: #fff;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.join-tier .left h4 {
  font-size: 18px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.join-tier .left p {
  font-size: 13px;
  opacity: 0.6;
  font-weight: 300;
}
.join-tier .right {
  text-align: right;
  flex-shrink: 0;
}
.join-tier .right .amt {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.join-tier .right .per {
  font-size: 11px;
  opacity: 0.55;
  text-transform: none;
  letter-spacing: 0.06em;
}

.join-fields .field input {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.join-fields .field input:focus {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}
.join-fields .field label {
  color: rgba(255, 255, 255, 0.6);
}

.pay-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.pay-apple {
  background: #fff;
  color: #121212;
  border-radius: 8px;
  padding: 18px;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  text-transform: none;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: background 200ms var(--ease);
}
.pay-apple:hover {
  background: rgba(255, 255, 255, 0.88);
}
.pay-apple svg {
  width: 22px;
  height: 22px;
}
.pay-card {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-transform: none;
  letter-spacing: 0.02em;
  transition: background 200ms var(--ease);
}
.pay-card:hover {
  background: rgba(255, 255, 255, 0.08);
}
.pay-note {
  font-size: 12px;
  text-align: center;
  opacity: 0.45;
  margin-top: 14px;
  text-transform: none;
  letter-spacing: 0.04em;
}

/* welcome step 3 */
.welcome-shell {
  text-align: left;
}
.welcome-shell h1 {
  font-size: clamp(44px, 8vw, 88px);
  margin-bottom: 16px;
}
.welcome-shell .lead {
  margin-bottom: 32px;
}
.welcome-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.welcome-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid var(--kings-line);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  text-transform: none;
  text-align: left;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.welcome-action:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
}
.welcome-action .ttl {
  font-size: 17px;
  font-weight: 600;
}
.welcome-action .arr {
  font-size: 20px;
  opacity: 0.5;
  transition: transform 200ms var(--ease);
}
.welcome-action:hover .arr {
  transform: translateX(4px);
  opacity: 1;
}

.btn-wide {
  display: block;
  width: 100%;
  text-align: center;
}

/* experiences (kings) */
.k-page-hero {
  position: relative;
  padding: 200px var(--pad-x) 100px;
  background:
    radial-gradient(at 60% 30%, rgba(220, 140, 70, 0.18) 0%, transparent 60%),
    var(--kings-bg);
  overflow: hidden;
}
@media (min-width: 900px) {
  .k-page-hero {
    padding: 240px var(--pad-x-lg) 140px;
  }
}
.k-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 10, 8, 0.45) 0%, transparent 30%, transparent 50%, var(--kings-bg) 100%);
  z-index: 2;
  pointer-events: none;
}
.k-page-hero > .media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.k-page-hero .wrap {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
}
.cat-hero > .media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.k-page-hero .eye {
  margin-bottom: 18px;
}
.k-page-hero h1 {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: none;
  max-width: 1000px;
  margin-bottom: 28px;
}
.k-page-hero .sub {
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 300;
  opacity: 0.75;
  max-width: 560px;
  line-height: 1.55;
}

/* class category tiles */
.cat-grid-section {
  padding: 80px var(--pad-x);
  background: var(--kings-bg);
}
@media (min-width: 900px) {
  .cat-grid-section {
    padding: 120px var(--pad-x-lg);
  }
}
.cat-grid-section .wrap {
  max-width: 1400px;
  margin: 0 auto;
}
.cat-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .cat-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1100px) {
  .cat-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.cat {
  position: relative;
  aspect-ratio: 3 / 4;
  min-height: 280px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--kings-bg-3);
  transition: transform 300ms var(--ease);
  display: block;
}
.cat:hover {
  transform: translateY(-4px);
}
.cat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
  pointer-events: none;
}
.cat .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px;
  z-index: 3;
}
.cat .label h4 {
  font-size: 24px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.015em;
  line-height: 1.05;
}
.cat .label p {
  font-size: 12px;
  opacity: 0.65;
  margin-top: 4px;
  text-transform: none;
  letter-spacing: 0.04em;
}

/* timetable */
.tt-section {
  padding: 80px var(--pad-x);
  background: var(--kings-bg);
}
@media (min-width: 900px) {
  .tt-section {
    padding: 120px var(--pad-x-lg);
  }
}
.tt-section .wrap {
  max-width: 1400px;
  margin: 0 auto;
}
.tt-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.tt-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tt-filter {
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--kings-line);
  font-size: 13px;
  text-transform: none;
  color: #fff;
  background: transparent;
  transition: all 180ms var(--ease);
}
.tt-filter:hover { border-color: rgba(255, 255, 255, 0.35); }
.tt-filter.active {
  background: #fff;
  color: #121212;
  border-color: #fff;
}
.tt-day {
  margin-bottom: 36px;
}
.tt-day h4 {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: none;
  opacity: 0.55;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--kings-line);
  margin-bottom: 14px;
}
.tt-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  align-items: center;
}
@media (min-width: 600px) {
  .tt-row {
    grid-template-columns: 100px 1fr 1fr auto;
  }
}
.tt-row .time {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.tt-row .cls h5 {
  font-size: 17px;
  font-weight: 600;
  text-transform: none;
  margin-bottom: 2px;
}
.tt-row .cls span {
  font-size: 13px;
  opacity: 0.6;
}
.tt-row .coach {
  display: none;
  font-size: 14px;
  opacity: 0.7;
}
@media (min-width: 600px) {
  .tt-row .coach {
    display: block;
  }
}
.tt-row .book {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 13px;
  text-transform: none;
  color: #fff;
  background: transparent;
  white-space: nowrap;
}
.tt-row .book:hover {
  background: rgba(255, 255, 255, 0.08);
}
.tt-row .book.full {
  opacity: 0.4;
  pointer-events: none;
}

/* at kings hub */
.hub-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .hub-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1000px) {
  .hub-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.hub-card {
  position: relative;
  aspect-ratio: 5 / 6;
  min-height: 360px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--kings-bg-3);
  transition: transform 320ms var(--ease);
  display: block;
}
.hub-card:hover {
  transform: translateY(-4px);
}
.hub-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
  pointer-events: none;
}
.hub-card .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 28px;
  z-index: 3;
}
.hub-card .eye {
  margin-bottom: 8px;
}
.hub-card h4 {
  font-size: 28px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.018em;
  line-height: 1.05;
  margin-bottom: 6px;
}
.hub-card p {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.75;
}
.hub-card.soon {
  pointer-events: none;
}
.hub-card .badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 11px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: none;
  z-index: 4;
  color: #fff;
}

/* portal screens */
.portal-shell {
  min-height: 100vh;
  background: var(--portal-bg);
  color: #fff;
}
.portal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--portal-line);
}
@media (min-width: 900px) {
  .portal-nav {
    padding: 28px 48px;
  }
}
.portal-nav .brand {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.portal-nav .menu {
  display: none;
  gap: 32px;
}
@media (min-width: 900px) {
  .portal-nav .menu {
    display: flex;
  }
}
.portal-nav .menu a {
  font-size: 14px;
  opacity: 0.6;
  text-transform: none;
  transition: opacity 200ms var(--ease);
}
.portal-nav .menu a.active,
.portal-nav .menu a:hover {
  opacity: 1;
}
.portal-nav .user {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.portal-nav .user .av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a4a4a, #2a2a2a);
  border: 1px solid var(--portal-line);
}
.portal-stage {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 24px;
}
@media (min-width: 900px) {
  .portal-stage {
    padding: 100px 48px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 64px;
  }
}
.portal-main .meta {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: none;
  opacity: 0.5;
  margin-bottom: 18px;
}
.portal-main h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.96;
  text-transform: none;
  margin-bottom: 24px;
}
.portal-main .lead {
  font-size: 17px;
  opacity: 0.7;
  max-width: 540px;
  line-height: 1.55;
  margin-bottom: 40px;
}
.portal-day-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 580px;
}
.portal-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--portal-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  align-items: center;
}
.portal-row.now {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}
.portal-row .t {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.portal-row .b1 {
  font-size: 17px;
  font-weight: 600;
  text-transform: none;
}
.portal-row .b2 {
  font-size: 13px;
  opacity: 0.55;
  margin-top: 2px;
}
.portal-row .pin {
  font-size: 11px;
  text-transform: none;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;
}
.portal-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 60px;
}
@media (min-width: 900px) {
  .portal-side {
    margin-top: 0;
  }
}
.portal-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--portal-line);
  border-radius: 10px;
  padding: 22px 24px;
}
.portal-card.dark {
  background: #050505;
}
.portal-card .l {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: none;
  opacity: 0.55;
  margin-bottom: 8px;
  font-weight: 600;
}
.portal-card .h {
  font-size: 22px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.012em;
  line-height: 1.15;
  margin-bottom: 10px;
}
.portal-card .p {
  font-size: 13px;
  opacity: 0.65;
  line-height: 1.5;
}
.portal-card .lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.portal-card .lines span {
  font-size: 13px;
  opacity: 0.78;
}

/* ============================================================
   experiences category page - rich Tier 1 per kevin's feedback
   ============================================================ */
.cat-hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 180px var(--pad-x) 80px;
}
@media (min-width: 900px) {
  .cat-hero {
    padding: 220px var(--pad-x-lg) 100px;
    min-height: 80vh;
  }
}
.cat-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 35%, transparent 50%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
}
.cat-hero > * { position: relative; z-index: 3; }
.cat-hero .wrap { max-width: 1400px; margin: 0 auto; }
.cat-hero .eye {
  font-size: 13px;
  letter-spacing: 0.28em;
  margin-bottom: 18px;
  opacity: 0.7;
}
.cat-hero h1 {
  font-size: clamp(56px, 11vw, 144px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.94;
  text-transform: none;
  margin-bottom: 24px;
}
.cat-hero .sub {
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 300;
  opacity: 0.78;
  max-width: 540px;
  line-height: 1.55;
}

/* class types in this category */
.classes-section {
  padding: 80px var(--pad-x);
  background: var(--kings-bg);
}
@media (min-width: 900px) {
  .classes-section { padding: 140px var(--pad-x-lg); }
}
.classes-section .wrap { max-width: 1400px; margin: 0 auto; }
.classes-section .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}
.classes-section .head h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.022em;
  text-transform: none;
  line-height: 1.02;
}
.class-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .class-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .class-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.class-card {
  border: 1px solid var(--kings-line);
  border-radius: 12px;
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 240ms var(--ease), background 240ms var(--ease), transform 240ms var(--ease);
}
.class-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-3px);
}
.class-card .ct-eye {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: none;
  opacity: 0.55;
  margin-bottom: 10px;
  font-weight: 600;
}
.class-card h4 {
  font-size: 22px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  line-height: 1.15;
}
.class-card p {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.75;
  line-height: 1.55;
  margin-bottom: 16px;
}
.class-card .meta {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: none;
  opacity: 0.5;
  border-top: 1px solid var(--kings-line);
  padding-top: 14px;
}

/* coaches */
.coaches-section {
  padding: 80px var(--pad-x);
  background: var(--kings-bg-2);
  border-top: 1px solid var(--kings-line);
  border-bottom: 1px solid var(--kings-line);
}
@media (min-width: 900px) {
  .coaches-section { padding: 140px var(--pad-x-lg); }
}
.coaches-section .wrap { max-width: 1400px; margin: 0 auto; }
.coaches-section .head { margin-bottom: 56px; max-width: 720px; }
.coaches-section .head h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.022em;
  text-transform: none;
  line-height: 1.02;
  margin-bottom: 18px;
}
.coaches-section .head p {
  font-size: 17px;
  font-weight: 300;
  opacity: 0.75;
  line-height: 1.55;
}
.coach-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .coach-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .coach-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}
.coach-card {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 280px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--kings-bg-3);
  transition: transform 320ms var(--ease);
  display: block;
}
.coach-card:hover { transform: translateY(-4px); }
.coach-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.88) 100%);
  z-index: 2;
  pointer-events: none;
}
.coach-card .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 22px;
  z-index: 3;
}
.coach-card .label h5 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.012em;
  text-transform: none;
  margin-bottom: 4px;
}
.coach-card .label p {
  font-size: 13px;
  opacity: 0.7;
  font-weight: 300;
}

/* first-class advice */
.first-class {
  padding: 100px var(--pad-x);
  background: var(--kings-bg);
}
@media (min-width: 900px) {
  .first-class { padding: 140px var(--pad-x-lg); }
}
.first-class .wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.first-class .eye {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: none;
  opacity: 0.55;
  margin-bottom: 18px;
}
.first-class h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.02;
  text-transform: none;
  margin-bottom: 36px;
  max-width: 720px;
}
.fc-list {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .fc-list { grid-template-columns: 1fr 1fr; }
}
.fc-item {
  border-top: 1px solid var(--kings-line);
  padding: 24px 0;
}
.fc-item h4 {
  font-size: 18px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.fc-item p {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.7;
  line-height: 1.55;
}

/* member voice */
.member-voice {
  padding: 100px var(--pad-x);
  background: var(--kings-bg-2);
  border-top: 1px solid var(--kings-line);
}
@media (min-width: 900px) {
  .member-voice { padding: 140px var(--pad-x-lg); }
}
.member-voice .wrap {
  max-width: 900px;
  margin: 0 auto;
}
.member-voice blockquote {
  font-size: clamp(24px, 3.6vw, 42px);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.2;
  text-transform: none;
  margin-bottom: 24px;
}
.member-voice .attrib {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: none;
  opacity: 0.55;
}

/* ============================================================
   portal bookings + profile - richer Tier 1
   ============================================================ */
.portal-page-shell {
  min-height: 100vh;
  background: var(--portal-bg);
  color: #fff;
}
.portal-page-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}
@media (min-width: 900px) {
  .portal-page-body {
    padding: 100px 48px;
  }
}
.portal-page-head {
  margin-bottom: 56px;
  max-width: 720px;
}
.portal-page-head .eye {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: none;
  opacity: 0.55;
  margin-bottom: 14px;
}
.portal-page-head h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-transform: none;
  margin-bottom: 18px;
}
.portal-page-head p {
  font-size: 17px;
  font-weight: 300;
  opacity: 0.7;
  line-height: 1.55;
}

/* bookings timeline */
.b-timeline {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.b-month {
  border-top: 1px solid var(--portal-line);
  padding-top: 24px;
}
.b-month h3 {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: none;
  opacity: 0.55;
  margin-bottom: 20px;
  font-weight: 600;
}
.b-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.b-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--portal-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  align-items: center;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.b-row:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}
.b-row.past { opacity: 0.55; }
.b-row .date {
  text-align: center;
}
.b-row .date .day {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1;
}
.b-row .date .mo {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: none;
  opacity: 0.55;
  margin-top: 4px;
}
.b-row .body h5 {
  font-size: 17px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.b-row .body p {
  font-size: 13px;
  opacity: 0.6;
  font-weight: 300;
}
.b-row .badge {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  white-space: nowrap;
}
.b-row .badge.kings { border-color: rgba(255, 255, 255, 0.4); }
.b-row .badge.t1857 { border-color: rgba(255, 180, 120, 0.5); color: #ffcfa6; }
.b-row .badge.kids { border-color: rgba(120, 180, 220, 0.5); color: #b6d4ec; }
.b-row .badge.past { opacity: 0.4; }

/* profile */
.profile-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .profile-grid {
    grid-template-columns: 1fr 2fr;
    gap: 48px;
  }
}
.profile-aside {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--portal-line);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  height: fit-content;
}
.profile-aside .avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a4a4a, #2a2a2a);
  margin: 0 auto 18px;
  border: 1px solid var(--portal-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.profile-aside h2 {
  font-size: 24px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.profile-aside .sub {
  font-size: 13px;
  opacity: 0.6;
  margin-bottom: 24px;
}
.profile-aside .stats {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid var(--portal-line);
}
.profile-aside .stats .s {
  flex: 1;
}
.profile-aside .stats .num {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1;
}
.profile-aside .stats .lbl {
  font-size: 11px;
  opacity: 0.55;
  letter-spacing: 0.12em;
  text-transform: none;
  margin-top: 4px;
}

.profile-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.profile-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--portal-line);
  border-radius: 12px;
  padding: 28px 30px;
}
.profile-section h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.012em;
  margin-bottom: 18px;
}
.profile-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--portal-line);
}
.profile-row:last-child { border-bottom: none; padding-bottom: 0; }
.profile-row:first-child { padding-top: 0; }
.profile-row .l {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: none;
  opacity: 0.55;
  font-weight: 600;
}
.profile-row .r {
  font-size: 15px;
  text-align: right;
}
.profile-row .r .edit {
  font-size: 12px;
  opacity: 0.4;
  margin-left: 12px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  cursor: pointer;
  transition: opacity 200ms var(--ease);
}
.profile-row .r .edit:hover { opacity: 1; }

.household-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.household-member {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--portal-line);
  border-radius: 10px;
}
.household-member .av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
}
.household-member .body h5 {
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  margin-bottom: 2px;
}
.household-member .body p {
  font-size: 12px;
  opacity: 0.55;
}

/* boditrax mini chart for Today */
.tx-chart {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--portal-line);
}
.tx-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
  margin-bottom: 8px;
}
.tx-bars div {
  flex: 1;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  min-height: 6px;
  transition: background 280ms var(--ease);
}
.tx-bars div.now {
  background: #fff;
}
.tx-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  opacity: 0.55;
  letter-spacing: 0.06em;
  text-transform: none;
}

/* sign-in screen */
.signin-shell {
  min-height: 100vh;
  background: var(--kings-bg);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.signin-card {
  width: 100%;
  max-width: 380px;
  text-align: left;
}
.signin-card .brand {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.022em;
  margin-bottom: 40px;
}
.signin-card h1 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-transform: none;
  margin-bottom: 12px;
}
.signin-card .lead {
  font-size: 15px;
  opacity: 0.6;
  margin-bottom: 32px;
  font-weight: 300;
}
.signin-card .small {
  font-size: 13px;
  text-align: center;
  margin-top: 20px;
  opacity: 0.6;
}
