/* ============================================================
   CASINO SOCIETY — MEMBERS PAGE
   Take a Seat at the Table
   ============================================================ */

:root {
  --bg:           #080604;
  --gold:         #C9A96A;
  --gold-light:   #E6D3A3;
  --gold-dim:     rgba(201, 169, 106, 0.40);
  --subtitle-color: rgba(230, 211, 163, 0.70);
  --text-muted:   #927E60;
  --text-dim:     #4E4130;
  --card-bg:      #0d0b08;
  --card-border:  rgba(201, 169, 106, 0.30);
  --surface:      rgba(10, 8, 5, 0.55);
  --surface-strong: rgba(10, 8, 5, 0.82);
  --nav-bg:       rgba(8, 6, 4, 0.96);
  --mobile-bg:    rgba(8, 6, 4, 0.97);
  --hero-overlay-center: rgba(8,6,4,0.40);
  --hero-overlay-edge: rgba(8,6,4,0.85);
  --hero-overlay-top: rgba(8,6,4,0.70);
  --hero-overlay-mid: rgba(8,6,4,0.10);
  --hero-overlay-bottom: rgba(8,6,4,0.90);
  --hero-vignette: rgba(8,6,4,0.75);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-cinzel:  'Cinzel', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --dur:          0.35s;
  --content-max:  900px;
}

html[data-theme="light"] {
  --bg:           #efe3cb;
  --gold:         #6f4e1a;
  --gold-light:   #4f3710;
  --gold-dim:     rgba(141, 106, 45, 0.28);
  --subtitle-color: #2f1d05;
  --text-muted:   #654c27;
  --text-dim:     #a38e69;
  --card-bg:      #fbf4e8;
  --card-border:  rgba(141, 106, 45, 0.24);
  --surface:      rgba(255, 250, 240, 0.84);
  --surface-strong: rgba(255, 250, 240, 0.96);
  --nav-bg:       rgba(239, 227, 203, 0.96);
  --mobile-bg:    rgba(247, 238, 222, 0.98);
  --hero-overlay-center: rgba(239,227,203,0.12);
  --hero-overlay-edge: rgba(239,227,203,0.45);
  --hero-overlay-top: rgba(239,227,203,0.40);
  --hero-overlay-mid: rgba(239,227,203,0.08);
  --hero-overlay-bottom: rgba(239,227,203,0.55);
  --hero-vignette: rgba(239,227,203,0.42);
}

/* ---- RESET ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--gold-light);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
}
.nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold-dim);
}
.nav__tabs {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 4rem);
}

.nav__controls {
  position: absolute;
  right: clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav__tab {
  font-family: var(--font-mono);
  font-size: 1.03rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--dur) var(--ease-out);
}
.nav__tab::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.nav__tab:hover,
.nav__tab--active { color: var(--gold-light); }
.nav__tab:hover::after,
.nav__tab--active::after { width: 100%; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.25rem;
  position: static;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--gold-light);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.nav__burger.is-open span:first-child { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:last-child  { transform: translateY(-7px) rotate(-45deg); }

.theme-toggle {
  min-width: 7.25rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(201, 169, 106, 0.4);
  border-radius: 999px;
  color: var(--gold-light);
  background: var(--surface);
  backdrop-filter: blur(10px);
  transition: background var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.theme-toggle:hover {
  background: var(--surface-strong);
  border-color: rgba(201, 169, 106, 0.6);
}
.theme-toggle__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--mobile-bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  backdrop-filter: blur(20px);
}
.nav__mobile.is-open { display: flex; }
.nav__mobile-link {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--text-muted);
  transition: color var(--dur) var(--ease-out);
}
.nav__mobile-link:hover,
.nav__mobile-link--active { color: var(--gold-light); }

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/casino3-hero.png');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 55%, var(--hero-overlay-center) 0%, var(--hero-overlay-edge) 100%),
    linear-gradient(to bottom, var(--hero-overlay-top) 0%, var(--hero-overlay-mid) 40%, var(--hero-overlay-bottom) 100%);
}
.page-hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 15%, var(--hero-vignette) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: min(980px, 94vw);
  padding: 4rem 1.5rem 3rem;
}
.page-hero__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: var(--gold-light);
  letter-spacing: 0.02em;
  line-height: 1.1;
  white-space: nowrap;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 50px rgba(201, 169, 106, 0.28);
}
.page-hero__rule {
  width: clamp(100px, 28vw, 260px);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 169, 106, 0.55), transparent);
  margin: 0 auto 1.6rem;
}
.page-hero__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--subtitle-color);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

html[data-theme="light"] .page-hero__subtitle {
  font-weight: 600;
  text-shadow: 0 1px 10px rgba(255, 248, 236, 0.55);
}
.page-hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: nowrap;
  justify-content: center;
}
.page-hero__actions .btn {
  padding: 0.8rem 1.5rem;
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  font-weight: 700;
}
.page-hero__widget {
  width: 100%;
  max-width: 520px;
  margin-top: 1.75rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  letter-spacing: 0.04em;
  padding: 0.85rem 2.5rem;
  display: inline-block;
  white-space: nowrap;
  border-radius: 4px;
  transition: all var(--dur) var(--ease-out);
  cursor: pointer;
  text-decoration: none;
}
.btn--ghost {
  color: var(--gold-light);
  border: 1.5px solid rgba(201, 169, 106, 0.55);
  background: var(--surface);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--gold);
  background: var(--surface-strong);
}
.btn--primary {
  color: #1a1208;
  border: 1.5px solid transparent;
  background: linear-gradient(135deg, #d4a84b 0%, #c9a96a 45%, #b8924a 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #e0b85a 0%, #d4a96a 45%, #c9a050 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 0 28px rgba(201, 169, 106, 0.30);
}
.btn--silver {
  color: #1a1714;
  border: 1.5px solid rgba(190, 194, 201, 0.75);
  background: linear-gradient(135deg, #d8dce1 0%, #b8bec7 48%, #929aa5 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28);
}
.btn--silver:hover {
  background: linear-gradient(135deg, #e3e6ea 0%, #c7ccd3 48%, #a1a8b2 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.32), 0 0 24px rgba(190, 194, 201, 0.25);
}
.btn--bronze {
  color: #f2e7da;
  border: 1.5px solid rgba(150, 94, 49, 0.72);
  background: linear-gradient(135deg, #8f542d 0%, #b5723f 45%, #7a4726 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn--bronze:hover {
  background: linear-gradient(135deg, #a36134 0%, #c9854d 45%, #8a512c 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 0 24px rgba(181, 114, 63, 0.24);
}
.btn--crimson {
  color: #E6D3A3;
  border: 1.5px solid rgba(160, 30, 30, 0.65);
  background: linear-gradient(135deg, #8B0000 0%, #A00010 50%, #7B0000 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn--crimson:hover {
  background: linear-gradient(135deg, #A00000 0%, #C00015 50%, #900000 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 0 24px rgba(160, 20, 20, 0.40);
}

/* ============================================================
   PAGE CONTENT
   ============================================================ */
.page-content {
  background: var(--bg);
  padding-bottom: 1rem;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.content-section {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}
.section-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
  margin-bottom: 2.5rem;
}
.section-heading {
  font-family: var(--font-cinzel);
  font-weight: 400;
  font-size: clamp(0.85rem, 1.8vw, 1.2rem);
  letter-spacing: 0.25em;
  color: var(--gold-light);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.card-grid {
  display: grid;
  gap: 1.1rem;
}
.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  overflow: visible;
  padding-bottom: 0;
}
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2.25rem 1rem 1.75rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  position: relative;
  transition: border-color 0.4s var(--ease-out);
}
/* Corner tick marks */
.feature-card::before,
.feature-card::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  border-color: rgba(201, 169, 106, 0.55);
  border-style: solid;
}
.feature-card::before {
  top: 7px; left: 7px;
  border-width: 1px 0 0 1px;
}
.feature-card::after {
  bottom: 7px; right: 7px;
  border-width: 0 1px 1px 0;
}
.feature-card:hover { border-color: rgba(201, 169, 106, 0.60); }
.feature-card__icon {
  color: var(--gold);
  opacity: 0.80;
  line-height: 1;
}
.feature-card__label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--gold-light);
  text-align: center;
  letter-spacing: 0.02em;
}

/* Play cards hover details */
.feature-card--play {
  cursor: pointer;
  min-height: 11.25rem;
}
.feature-card__play-details {
  position: absolute;
  inset: 0;
  padding: 1.35rem 1.1rem;
  background:
    linear-gradient(180deg, rgba(12, 9, 7, 0.98) 0%, rgba(8, 6, 4, 0.96) 100%),
    radial-gradient(circle at top, rgba(201, 169, 106, 0.06), transparent 60%);
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.98);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
  z-index: 8;
}
.feature-card__play-details::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 169, 106, 0.10);
  pointer-events: none;
}
.feature-card--play:hover .feature-card__play-details {
  opacity: 1;
  transform: scale(1);
}
.feature-card--play:hover .feature-card__icon,
.feature-card--play:hover .feature-card__label {
  opacity: 0.15;
}
.play-details__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  color: var(--gold-light);
  letter-spacing: 0.02em;
}
.play-details__text {
  max-width: 15rem;
  margin: 0;
  font-size: clamp(0.76rem, 1vw, 0.88rem);
  line-height: 1.5;
  color: rgba(230, 211, 158, 0.82);
}

/* Ethos card hover details */
.feature-card--ethos {
  position: relative;
  cursor: pointer;
  min-height: 11.75rem;
}
.feature-card__ethos-details {
  position: absolute;
  inset: 0;
  width: auto;
  min-height: 0;
  padding: 1.2rem 1rem 1.1rem;
  background:
    linear-gradient(180deg, rgba(12, 9, 7, 0.98) 0%, rgba(8, 6, 4, 0.96) 100%),
    radial-gradient(circle at top, rgba(201, 169, 106, 0.08), transparent 60%);
  border: 1px solid rgba(201, 169, 106, 0.32);
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.98);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
  text-align: center;
  z-index: 8;
}
.feature-card__ethos-details::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 169, 106, 0.10);
  pointer-events: none;
}
.feature-card--ethos:hover .feature-card__ethos-details {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  border-color: rgba(201, 169, 106, 0.45);
}
.feature-card--ethos:hover .feature-card__icon,
.feature-card--ethos:hover .feature-card__label {
  opacity: 0.15;
}
.ethos-details__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}
.ethos-details__list {
  list-style: decimal;
  padding-left: 1.15rem;
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(0.72rem, 0.92vw, 0.8rem);
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}
.ethos-details__list li {
  color: rgba(230, 211, 158, 0.85);
}

/* ============================================================
   FORM SECTION
   ============================================================ */
.content-section--form { padding-bottom: 4rem; }

.whitepaper-row {
  display: flex;
  justify-content: center;
  margin-bottom: 2.75rem;
}
.whitepaper-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(201, 169, 106, 0.22);
  padding: 0.65rem 1.6rem;
  border-radius: 3px;
  transition: color var(--dur), border-color var(--dur);
}
.whitepaper-link:hover {
  color: var(--gold-light);
  border-color: rgba(201, 169, 106, 0.50);
}

.member-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form__input,
.form__textarea {
  background: var(--surface);
  border: 1px solid rgba(201, 169, 106, 0.22);
  border-radius: 3px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 0.8rem 1rem;
  width: 100%;
  resize: vertical;
  transition: border-color var(--dur);
  outline: none;
}
.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-dim);
  font-style: italic;
}
.form__input:focus,
.form__textarea:focus {
  border-color: rgba(201, 169, 106, 0.50);
}

/* Skills checkboxes */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: 1px solid rgba(201, 169, 106, 0.18);
  border-radius: 3px;
}
.skill-check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  transition: color var(--dur);
  user-select: none;
}
.skill-check:hover { color: var(--gold-light); }
.skill-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 15px; height: 15px;
  border: 1px solid rgba(201, 169, 106, 0.35);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color var(--dur), background var(--dur);
}
.skill-check input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.skill-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 1px; left: 4px;
  width: 4px; height: 8px;
  border: 1.5px solid #1a1208;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.form__submit { align-self: flex-start; margin-top: 0.5rem; }

.form__success {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
  min-height: 1.6em;
  opacity: 0;
  transition: opacity 0.5s;
}
.form__success.visible { opacity: 1; }

/* ============================================================
   UPGRADE BAR
   ============================================================ */
.upgrade-bar {
  border-top: 1px solid rgba(201, 169, 106, 0.30);
  background: var(--nav-bg);
}
.upgrade-bar__content {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.upgrade-bar__text {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.upgrade-bar__text em { color: var(--gold-light); font-style: italic; }
.upgrade-bar__btn { font-size: 0.9rem; padding: 0.6rem 1.5rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .page-hero__actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .nav__tabs { display: none; }
  .nav__burger { display: flex; }
  .page-hero {
    min-height: auto;
    padding-top: 80px;
  }
  .page-hero__content {
    max-width: calc(100vw - 1.5rem);
    padding: 3rem 0.75rem 2.5rem;
  }
  .page-hero__title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
    white-space: normal;
  }
  .page-hero__subtitle {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
    margin-bottom: 1.75rem;
  }
  .page-hero__actions {
    gap: 0.65rem;
  }
  .theme-toggle {
    min-width: 0;
    padding: 0.45rem 0.7rem;
  }
  .page-hero__actions .btn {
    padding: 0.78rem 1.2rem;
    font-size: 0.92rem;
  }
  .content-section {
    padding: 2.75rem 1rem;
  }
  .card-grid--3 {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }
  .card-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-card__play-details {
    padding: 1.1rem 0.9rem;
  }
  .play-details__text {
    max-width: 13rem;
  }
  .feature-card__ethos-details {
    position: static;
    width: 100%;
    min-height: 0;
    margin-top: 1rem;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .feature-card__ethos-details::before {
    display: none;
  }
  .ethos-details__title {
    text-align: center;
  }
  .ethos-details__list {
    grid-template-columns: 1fr;
  }
  .form__row { grid-template-columns: 1fr; }
  .form__submit { align-self: stretch; text-align: center; }
  .upgrade-bar__content { justify-content: center; text-align: center; }
}
@media (max-width: 540px) {
  .page-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .page-hero__actions .btn {
    width: 100%;
  }
  .card-grid--4 { grid-template-columns: 1fr; }
  .page-hero__actions { flex-direction: column; align-items: stretch; }
  .btn { text-align: center; }
  .nav__controls {
    gap: 0.5rem;
    right: 0.75rem;
  }
  .theme-toggle__label {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }
  .nav__mobile-link {
    font-size: clamp(1.65rem, 10vw, 2.5rem);
  }
  .skills-grid {
    grid-template-columns: 1fr;
  }
}
