/* Chad Kulengosky lessons — warm studio theme */
:root {
  --bg: #0f0e0c;
  --bg-elevated: #1a1814;
  --bg-card: #221f1a;
  --bg-card-hover: #2a261f;
  --border: rgba(245, 180, 80, 0.12);
  --border-strong: rgba(245, 180, 80, 0.28);
  --text: #f4efe6;
  --text-muted: #b8a990;
  --accent: #e8a838;
  --accent-soft: #f5c46a;
  --accent-dim: rgba(232, 168, 56, 0.15);
  --success: #7cbc6e;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --font-sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --font-display: Georgia, "Times New Roman", "Palatino Linotype", serif;
  --max: 1100px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Ambient studio glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(232, 168, 56, 0.14), transparent 55%),
    radial-gradient(ellipse 40% 40% at 100% 30%, rgba(180, 90, 40, 0.08), transparent 50%),
    radial-gradient(ellipse 35% 35% at 0% 70%, rgba(232, 168, 56, 0.06), transparent 50%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #1a1408;
  padding: 0.75rem 1rem;
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(15, 14, 12, 0.82);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: none;
  gap: 1.5rem;
  align-items: center;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #1a1408 !important;
  font-weight: 650;
  text-decoration: none !important;
  font-size: 0.88rem;
  transition: transform 0.15s ease, background 0.15s ease;
}

.nav-cta:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
  position: relative;
  z-index: 30;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem 1.25rem;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  color: var(--text);
  text-decoration: none;
  padding: 0.5rem 0;
  font-weight: 500;
}

@media (min-width: 800px) {
  .nav {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .nav-mobile {
    display: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #1a1408;
  box-shadow: 0 8px 28px rgba(232, 168, 56, 0.28);
}

.btn-primary:hover {
  background: var(--accent-soft);
  color: #1a1408;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  background: var(--accent-dim);
  color: var(--accent-soft);
}


.btn-disabled,
.btn-disabled:hover {
  background: var(--bg-elevated);
  color: var(--text-muted);
  border: 1px solid var(--border);
  box-shadow: none;
  transform: none;
  cursor: not-allowed;
  opacity: 0.75;
  pointer-events: none;
}

/* Sections */
section {
  padding: 4.5rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

/* Hero */
.hero {
  padding: 3.5rem 0 4.5rem;
  position: relative;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-meta strong {
  color: var(--text);
  font-weight: 600;
}

.hero-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, #1c1914 100%);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.18), transparent 65%);
  pointer-events: none;
}

.hero-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hero-card h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.hero-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.hero-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-list li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(232, 168, 56, 0.5);
}

/* Teach */
.cards-2,
.cards-3,
.cards-teach {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .cards-2 {
    grid-template-columns: 1fr 1fr;
  }
  .cards-teach {
    grid-template-columns: 1fr 1fr;
  }
}

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

@media (min-width: 1100px) {
  .cards-teach {
    grid-template-columns: repeat(5, 1fr);
  }
}

.teach-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.teach-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}

.teach-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.teach-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.teach-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.teach-card ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.teach-card li {
  color: var(--text);
  font-size: 0.92rem;
  padding-left: 1.1rem;
  position: relative;
}

.teach-card li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Steps */
.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent);
  color: #1a1408;
  font-weight: 750;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
  .pricing-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .pricing-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.price-amount-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0.75rem 0 0.25rem;
}

.price-channel {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.price-amount-pair .price-amount {
  font-size: 1.55rem;
  margin: 0;
}

.price-save {
  color: var(--success) !important;
  font-size: 0.85rem !important;
  font-weight: 600;
  margin: 0 0 0.75rem !important;
  flex: 0 !important;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.featured {
  border-color: var(--border-strong);
  background: linear-gradient(180deg, #2a2418 0%, var(--bg-card) 55%);
  box-shadow: 0 0 0 1px rgba(232, 168, 56, 0.15), var(--shadow);
}

.price-badge {
  position: absolute;
  top: -0.65rem;
  right: 1rem;
  background: var(--accent);
  color: #1a1408;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.price-amount {
  font-size: 2.25rem;
  font-weight: 750;
  color: var(--accent-soft);
  line-height: 1;
  margin: 0.75rem 0 0.25rem;
}

.price-duration {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.price-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1.5rem;
}

.price-card .btn {
  width: 100%;
}

/* Booking */
.booking-wrap {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 860px) {
  .booking-wrap {
    grid-template-columns: 1fr 1.15fr;
    gap: 2rem;
    align-items: start;
  }
}

.booking-aside {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.booking-aside h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.booking-aside p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.schedule-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.85rem 1rem;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-top: 1rem;
}

.schedule-note code {
  color: var(--accent-soft);
  font-size: 0.8rem;
  word-break: break-all;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.form-grid {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 560px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.field-hint {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8rem;
}

input,
select,
textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 0.75rem 0.9rem;
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input::placeholder,
textarea::placeholder {
  color: #7a6e5a;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(245, 180, 80, 0.4);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
  outline: none;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-status {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  display: none;
  font-size: 0.95rem;
}

.form-status.visible {
  display: block;
}

.form-status.success {
  background: rgba(124, 188, 110, 0.12);
  border: 1px solid rgba(124, 188, 110, 0.35);
  color: var(--text);
}

.form-status .summary {
  margin-top: 0.75rem;
  padding: 0.85rem;
  background: var(--bg);
  border-radius: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
  white-space: pre-wrap;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.copy-btn {
  margin-top: 0.75rem;
}

/* Press / Accolades */
.press-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.press-card {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.press-card p {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.45;
  font-style: italic;
}

.press-card footer {
  margin-top: auto;
  display: grid;
  gap: 0.2rem;
}

.press-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--accent-soft);
  font-size: 0.92rem;
}

.press-meta {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.credits-block {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.credits-block h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.credits-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.credits-list li {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}

.credits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.credits-list strong {
  color: var(--text);
}

/* Timeline */
.timeline {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  border-left: 2px solid var(--border-strong);
  padding-left: 1.25rem;
}

.timeline li {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.25rem;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: calc(-1.25rem - 5px);
  top: 1.4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(232, 168, 56, 0.15);
}

.timeline-era {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.timeline strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.timeline p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* About */
.about-card {
  display: grid;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--bg-card), #1a1712);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

@media (min-width: 700px) {
  .about-card {
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
  }
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, var(--accent-soft), var(--accent) 45%, #8a5a18 100%);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #1a1408;
  border: 3px solid var(--border-strong);
  flex-shrink: 0;
}

.about-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-brand span {
  color: var(--accent);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.footer-col a,
.footer-col p {
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: #7a6e5a;
  font-size: 0.82rem;
  text-align: center;
}

/* Pay + Support */
.pay-wrap {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 860px) {
  .pay-wrap {
    grid-template-columns: 1.35fr 0.85fr;
    gap: 2rem;
    align-items: stretch;
  }
}

.pay-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.85rem 1.75rem;
  box-shadow: var(--shadow);
}

.pay-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.pay-steps {
  list-style: none;
  counter-reset: pay-step;
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
}

.pay-steps li {
  counter-increment: pay-step;
  position: relative;
  padding-left: 2.4rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.pay-steps li::before {
  content: counter(pay-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: var(--accent-dim);
  border: 1px solid var(--border-strong);
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pay-steps strong {
  color: var(--text);
}

.pay-steps a {
  color: var(--accent-soft);
}

.pay-rates {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.pay-rates a {
  color: var(--accent-soft);
}

.pay-note {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.35rem;
  line-height: 1.5;
}

.pay-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.pay-setup-hint,
.support-setup-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border-strong);
}

.pay-setup-hint code,
.support-setup-hint code {
  color: var(--accent-soft);
  font-size: 0.8rem;
  word-break: break-all;
}

.support-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.support-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.support-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.support-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}

.btn-support {
  width: 100%;
  font-size: 0.95rem;
  padding: 0.8rem 1.25rem;
}

.support-setup-hint {
  margin-top: 0.85rem;
}

/* Gear for sale */
.gear-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.gear-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.gear-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}

.gear-card.is-sold {
  opacity: 0.62;
}

.gear-card.is-sold:hover {
  background: var(--bg-card);
}

.gear-card.is-pending {
  border-color: rgba(245, 180, 80, 0.22);
}

.gear-media {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(145deg, #2a2418 0%, #1a1814 55%, #221a12 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.gear-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gear-media-placeholder {
  color: var(--accent);
  font-size: 2.25rem;
  opacity: 0.55;
  letter-spacing: 0.02em;
}

.gear-body {
  padding: 1.25rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gear-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 0.55rem;
}

.gear-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.gear-status {
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--accent-soft);
  border: 1px solid var(--border);
}

.gear-status.status-pending {
  background: rgba(245, 180, 80, 0.12);
  color: var(--accent);
}

.gear-status.status-sold {
  background: rgba(184, 169, 144, 0.12);
  color: var(--text-muted);
}

.gear-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.gear-price {
  font-size: 1.45rem;
  font-weight: 750;
  color: var(--accent-soft);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.gear-price.is-tbd {
  font-size: 1.15rem;
  color: var(--accent);
}

.gear-condition {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
}

.gear-blurb {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  flex: 1;
  margin-bottom: 1.15rem;
}

.gear-card .btn {
  width: 100%;
  margin-top: auto;
}

.gear-soft-cta {
  margin-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.gear-soft-cta a {
  font-weight: 600;
}

.gear-empty {
  grid-column: 1 / -1;
  color: var(--text-muted);
  text-align: center;
  padding: 2rem 1rem;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}


/* Listen / Spotify */
.listen-grid {
  display: grid;
  gap: 1rem;
}

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

.listen-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.35rem 1.3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.listen-card:hover,
.listen-card:focus-visible {
  border-color: var(--accent, #e8a838);
  transform: translateY(-1px);
}

.listen-card strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
}

.listen-card span {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.listen-card em {
  margin-top: 0.55rem;
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent, #e8a838);
}

.listen-empty {
  color: var(--text-muted);
  grid-column: 1 / -1;
}
