/* ==========================================================================
   BLOOM ANYWAY — design system
   The moment just before sunrise: dark plum night, blush horizon, first gold.
   ========================================================================== */

:root {
  --dawn-ivory:   #FAF5EE;
  --ivory-deep:   #F3E9DA;
  --ink:          #2B2622;
  --ink-soft:     #6B6159;
  --plum:         #7A2E62;   /* vivid berry-plum: energetic but still warm */
  --plum-deep:    #571F46;
  --berry:        #A03A7C;   /* bright end of the plum gradient */
  --rose:         #E08A6D;   /* sunset coral */
  --rose-soft:    #F7DECF;
  --gold:         #EFA733;
  --gold-soft:    #FBE8C6;
  --success:      #5F7A63;
  --error:        #A64B3F;
  --horizon:      linear-gradient(90deg, var(--plum) 0%, var(--rose) 55%, var(--gold) 100%);

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Nunito Sans", Verdana, sans-serif;

  --radius-card: 16px;
  --radius-input: 12px;
  --shadow-card: 0 4px 24px rgba(43, 38, 34, 0.07);
  --shadow-card-hover: 0 12px 36px rgba(122, 46, 98, 0.16);
  --container: 1140px;
}

/* --------------------------------- reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--dawn-ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }

/* ------------------------------ typography ------------------------------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-optical-sizing: auto;
  color: var(--plum);
  margin: 0 0 0.5em;
}
h1 { font-size: 40px; line-height: 1.1; letter-spacing: -0.5px; }
h2 { font-size: 28px; line-height: 1.2; }
h3 { font-size: 20px; }
p  { max-width: 68ch; }
a  { color: var(--plum); }

.eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 12px;
}

@media (min-width: 900px) {
  body { font-size: 18px; }
  h1 { font-size: 56px; }
  h2 { font-size: 36px; }
  h3 { font-size: 24px; }
}

/* --------------------------- the Horizon Rule ---------------------------- */
.horizon-rule {
  height: 3px;
  width: 96px;
  border: none;
  border-radius: 3px;
  background: var(--horizon);
  margin: 20px 0 24px;
}
.horizon-rule--heading { width: 64px; margin: 12px 0 20px; }

/* ------------------------------- layout ---------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 36px 0; }
.section--tight { padding: 28px 0; }
.section--band { background: var(--ivory-deep); }
.section--rose { background: var(--rose-soft); }
@media (min-width: 900px) {
  .section { padding: 48px 0; }
  .section--tight { padding: 36px 0; }
  .container { padding: 0 28px; }
}

.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: 1fr; }
.grid--2 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ------------------------------- buttons --------------------------------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease,
              background-color 200ms ease, color 200ms ease, filter 200ms ease;
}
.btn:active { transform: translateY(0) scale(0.98); }
.btn--primary {
  background: linear-gradient(135deg, var(--plum) 0%, var(--berry) 100%);
  color: var(--dawn-ivory);
  box-shadow: 0 3px 12px rgba(122, 46, 98, 0.28);
}
.btn--primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(122, 46, 98, 0.38);
}
.btn--secondary {
  background: transparent;
  color: var(--plum);
  border: 1.5px solid var(--plum);
  padding: 12.5px 26.5px;
}
.btn--secondary:hover {
  background: linear-gradient(135deg, var(--plum) 0%, var(--berry) 100%);
  border-color: transparent;
  color: var(--dawn-ivory);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(122, 46, 98, 0.30);
}
.btn--quiet {
  background: none; border: none; padding: 0;
  color: var(--plum); font-weight: 700; text-decoration: none;
  cursor: pointer; font-size: inherit; font-family: var(--font-body);
}
.btn--quiet:hover { text-decoration: underline; text-underline-offset: 4px; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, #F6BE55 100%);
  color: var(--ink);
  box-shadow: 0 3px 12px rgba(239, 167, 51, 0.35);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(239, 167, 51, 0.45); }
.btn--danger { background: var(--error); color: var(--dawn-ivory); }
.btn--sm { padding: 8px 18px; font-size: 14px; }
.btn--wide { width: 100%; text-align: center; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* -------------------------------- forms ---------------------------------- */
input[type="text"], input[type="email"], input[type="password"], input[type="url"],
input[type="number"], input[type="date"], input[type="datetime-local"],
select, textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-input);
  border: 1.5px solid var(--ink-soft);
  background: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
}
label { display: block; font-weight: 600; margin-bottom: 6px; }
.field { margin-bottom: 20px; }
.field-help { font-size: 14px; color: var(--ink-soft); margin: 6px 0 0; }
.field-error { color: var(--error); font-size: 14px; margin: 6px 0 0; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* auth forms */
.auth-card { background: #fff; border-radius: var(--radius-card); box-shadow: var(--shadow-card); padding: 40px 32px; }
.password-wrap { position: relative; }
.password-wrap input { padding-right: 76px; }
.password-toggle {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  background: var(--ivory-deep); border: none; border-radius: 999px;
  padding: 6px 14px; font-family: var(--font-body); font-weight: 700;
  font-size: 13px; color: var(--plum); cursor: pointer;
}
.password-toggle:hover { background: var(--rose-soft); }
.code-input {
  text-align: center; font-size: 28px; letter-spacing: 12px;
  font-weight: 700; font-family: Consolas, monospace; color: var(--plum);
}

/* ------------------------------- flashes ---------------------------------- */
.flash { padding: 14px 20px; border-radius: var(--radius-input); margin: 0 0 16px; font-weight: 600; }
.flash--success, .flash--subscribe-success { background: #E6EEE7; color: var(--success); }
.flash--error, .flash--subscribe-error { background: #F4E0DC; color: var(--error); }
.flash--info { background: var(--gold-soft); color: var(--ink); }
.flash-stack { max-width: var(--container); margin: 16px auto 0; padding: 0 24px; }

/* -------------------------- hero announcement ---------------------------- */
.hero-announcement {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  margin: 0 0 22px;
  padding: 12px 20px;
  background: linear-gradient(100deg, var(--gold-soft) 0%, #FBD9A6 100%);
  border: 1px solid rgba(122, 46, 98, 0.14);
  border-radius: 16px;
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.4;
  box-shadow: 0 10px 24px rgba(224, 138, 109, 0.22);
}
.hero-announcement__spark {
  flex: none;
  display: inline-grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--horizon, var(--gold));
  color: #fff;
  font-size: 15px;
  animation: spark-pulse 2.6s ease-in-out infinite;
}
.hero-announcement__text { min-width: 0; }
@keyframes spark-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-announcement__spark { animation: none; }
}

/* --------------------------------- nav ----------------------------------- */
.site-header { background: var(--dawn-ivory); border-bottom: 1px solid var(--ivory-deep); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container); margin: 0 auto; padding: 16px 24px;
}
.nav-brand {
  font-family: var(--font-display); font-weight: 600; font-size: 24px;
  color: var(--plum); text-decoration: none;
}
.nav-links { display: none; }
.nav-links a {
  color: var(--plum); text-decoration: none; font-weight: 600; font-size: 16px;
  margin-left: 28px; position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2.5px; width: 0;
  background: var(--horizon); border-radius: 2px; transition: width 250ms ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-toggle {
  background: none; border: none; cursor: pointer; padding: 8px;
  display: inline-flex; flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--plum); border-radius: 2px; transition: transform 200ms ease, opacity 200ms ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-drawer {
  display: none;
  background: var(--dawn-ivory);
  border-bottom: 1px solid var(--ivory-deep);
  padding: 8px 24px 24px;
}
.nav-drawer.open { display: block; }
.nav-drawer a {
  display: block; padding: 14px 4px; color: var(--plum); font-weight: 600;
  text-decoration: none; border-bottom: 1px solid var(--ivory-deep); font-size: 18px;
}

@media (min-width: 900px) {
  .nav-links { display: flex; align-items: center; }
  .nav-toggle, .nav-drawer { display: none !important; }
}

/* --------------------------------- hero ---------------------------------- */
.hero { padding: 56px 0 64px; position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute; top: -35%; right: -12%;
  width: 62%; height: 130%;
  background: radial-gradient(circle, rgba(239, 167, 51, 0.16) 0%, rgba(224, 138, 109, 0.08) 45%, transparent 68%);
  pointer-events: none;
}
.hero-grid { display: grid; gap: 40px; align-items: center; }
.hero-image-wrap { position: relative; order: -1; }
.hero-image-wrap::before {
  content: "";
  position: absolute; inset: -24px -12px auto auto;
  width: 78%; height: 92%;
  background: var(--rose-soft);
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  z-index: 0;
}
.hero-image { position: relative; z-index: 1; border-radius: 20px; object-fit: cover; width: 100%; aspect-ratio: 4 / 5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.hero .subline { font-size: 19px; color: var(--ink-soft); }
@media (min-width: 900px) {
  .hero { padding: 96px 0; }
  .hero-grid { grid-template-columns: 7fr 5fr; }
  .hero-image-wrap { order: 1; }
}

/* hero load-in (JS adds .loaded; each child staggers 80ms) */
.hero [data-rise] { opacity: 0; transform: translateY(20px); }
.hero.loaded [data-rise] { opacity: 1; transform: none; transition: opacity 500ms ease, transform 500ms ease; }
.hero.loaded [data-rise="2"] { transition-delay: 80ms; }
.hero.loaded [data-rise="3"] { transition-delay: 160ms; }
.hero.loaded [data-rise="4"] { transition-delay: 240ms; }
.hero.loaded [data-rise="5"] { transition-delay: 320ms; }
.hero.loaded [data-rise="6"] { transition-delay: 400ms; }

/* ---------------------------- daily quote card ---------------------------- */
.quote-card {
  background: var(--gold-soft);
  border-radius: var(--radius-card);
  border-top: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.quote-card::before {
  content: "";
  position: absolute; top: -3px; left: 0; right: 0; height: 3px;
  background: var(--horizon);
  border-radius: 3px 3px 0 0;
}
.sun-disc {
  width: 44px; height: 44px; border-radius: 50%;
  margin: 0 auto 20px;
  background: radial-gradient(circle at 38% 34%, #FBE8C6 0%, var(--gold) 55%, #C77F1C 100%);
  box-shadow: 0 0 32px rgba(239, 167, 51, 0.5);
  animation: sun-breathe 4.5s ease-in-out infinite;
}
@keyframes sun-breathe {
  0%, 100% { box-shadow: 0 0 26px rgba(239, 167, 51, 0.45); transform: scale(1); }
  50%      { box-shadow: 0 0 46px rgba(239, 167, 51, 0.75); transform: scale(1.05); }
}
.quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  max-width: 26em;
  margin: 0 auto 12px;
}
.quote-attribution { color: var(--ink-soft); font-size: 15px; font-weight: 600; }
@media (min-width: 900px) { .quote-text { font-size: 28px; } }

/* ------------------------------ product card ------------------------------ */
.card {
  background: var(--ivory-deep);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: box-shadow 200ms ease, transform 200ms ease;
  overflow: hidden;
  position: relative;
}
.card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--horizon); opacity: 0; transition: opacity 200ms ease; z-index: 2;
}
.card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.card:hover::after { opacity: 1; }

.product-card { position: relative; display: block; text-decoration: none; color: inherit; }
.product-card .cover { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; background: var(--rose-soft); }
.product-card .body { padding: 20px 22px 26px; }
.product-card h3 { font-size: 22px; margin: 10px 0 6px; }
.product-card .promise {
  color: var(--ink-soft); font-size: 15px; margin: 0 0 14px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.price-row { font-weight: 700; color: var(--plum); font-size: 18px; }
.price-row del { color: var(--ink-soft); font-weight: 400; margin-left: 8px; font-size: 15px; }
.ribbon {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--gold); color: var(--ink);
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  padding: 4px 12px; border-radius: 999px;
}
.type-pill {
  display: inline-block; font-size: 13px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--plum); padding: 3px 12px; border-radius: 999px;
}
.type-pill--course { background: var(--gold-soft); }
.type-pill--guide { background: var(--rose-soft); }
.type-pill--membership {
  background: linear-gradient(135deg, var(--plum), var(--berry)); color: #fff;
  margin-left: 6px;
}
.membership-perks {
  margin-top: 18px; padding: 16px 20px;
  background: var(--ivory-deep); border-radius: var(--radius-card);
  border-left: 4px solid var(--plum);
}
.membership-perks .eyebrow { margin: 0 0 8px; }
.membership-perks ul { margin: 0; padding-left: 20px; }
.membership-perks li { margin: 4px 0; }

/* ------------------------------ filter tabs ------------------------------- */
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0 40px; }
.filter-tabs a {
  padding: 8px 20px; border-radius: 999px; text-decoration: none;
  font-weight: 700; font-size: 15px; color: var(--plum);
  border: 1.5px solid var(--plum);
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}
.filter-tabs a:hover { background: var(--rose-soft); transform: translateY(-1px); }
.filter-tabs a.active {
  background: linear-gradient(135deg, var(--plum) 0%, var(--berry) 100%);
  border-color: transparent;
  color: var(--dawn-ivory);
}

/* ---------------------------- product detail ------------------------------ */
.product-hero { display: grid; gap: 36px; align-items: start; }
.product-hero .cover { border-radius: 20px; aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.trust-line { font-size: 14px; color: var(--ink-soft); margin-top: 12px; }
.price-large { font-size: 28px; font-weight: 700; color: var(--plum); margin: 16px 0 20px; }
.price-large del { font-size: 19px; color: var(--ink-soft); font-weight: 400; margin-left: 10px; }
@media (min-width: 900px) { .product-hero { grid-template-columns: 5fr 6fr; gap: 56px; } }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { padding: 10px 0 10px 36px; position: relative; border-bottom: 1px solid var(--ivory-deep); }
.check-list li::before {
  content: "\2713";
  position: absolute; left: 4px; top: 9px;
  color: var(--success); font-weight: 700;
}
.curriculum { counter-reset: module; list-style: none; padding: 0; margin: 0; }
.curriculum li {
  counter-increment: module;
  background: var(--ivory-deep); border-radius: 12px;
  padding: 18px 20px 18px 60px; margin-bottom: 12px; position: relative;
}
.curriculum li::before {
  content: counter(module, decimal-leading-zero);
  position: absolute; left: 20px; top: 18px;
  font-family: var(--font-display); font-weight: 600; color: var(--gold); font-size: 19px;
}
.curriculum h3 { font-size: 18px; margin: 0 0 4px; }
.curriculum p { margin: 0; font-size: 15px; color: var(--ink-soft); }

/* -------------------------------- faq ------------------------------------ */
details.faq-item {
  background: #fff; border-radius: 12px; margin-bottom: 12px;
  border: 1px solid var(--ivory-deep);
}
details.faq-item summary {
  cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--plum);
  list-style: none; position: relative; padding-right: 48px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 22px; color: var(--gold); font-weight: 400;
}
details.faq-item[open] summary::after { content: "\2212"; }
details.faq-item .answer { padding: 0 22px 20px; }

/* ----------------------------- testimonials ------------------------------- */
.testimonial-card { background: #fff; border-radius: var(--radius-card); padding: 26px; box-shadow: var(--shadow-card); }
.stars { color: var(--gold); letter-spacing: 3px; font-size: 14px; margin-bottom: 10px; }
.testimonial-card blockquote { margin: 0 0 14px; font-style: italic; }
.testimonial-card cite { font-style: normal; font-weight: 700; color: var(--plum); }

/* ------------------------------ quote archive ----------------------------- */
.quote-mini {
  background: #fff; border-radius: 12px; padding: 20px; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 10px;
}
.quote-mini.today { background: var(--gold-soft); border: 1.5px solid var(--gold); }
.quote-mini .date { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.quote-mini .text { font-family: var(--font-display); font-style: italic; font-size: 17px; margin: 0; }
.heart-btn {
  background: none; border: none; cursor: pointer; align-self: flex-end;
  font-size: 20px; color: var(--rose); padding: 4px;
}
.heart-btn.on { color: var(--error); }

.quote-gate {
  margin-top: 40px; padding: 28px; border-radius: 16px;
  background: var(--gold-soft); border: 1px solid rgba(122, 46, 98, 0.12);
  max-width: 640px;
}
.quote-gate p { margin: 0 0 18px; }
.quote-gate__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* -------------------------------- footer ---------------------------------- */
.site-footer { background: var(--plum); color: var(--dawn-ivory); padding: 56px 0 32px; margin-top: 64px; }
.site-footer a { color: var(--dawn-ivory); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-grid { display: grid; gap: 32px; }
.footer-brand { font-family: var(--font-display); font-size: 26px; font-weight: 600; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-meta { border-top: 1px solid rgba(250, 245, 238, 0.2); margin-top: 40px; padding-top: 24px;
  font-size: 14px; color: var(--rose-soft); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

/* --------------------------- scroll reveal -------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); }
.reveal.visible { opacity: 1; transform: none; transition: opacity 500ms ease, transform 500ms ease; }

/* ------------------------------ error pages ------------------------------- */
.error-page { text-align: center; padding: 96px 24px; }

/* ------------------------------- utilities -------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack-sm > * + * { margin-top: 12px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap;
}
.inline-form { display: inline; }
.subscribe-row { display: flex; gap: 12px; flex-wrap: wrap; max-width: 480px; margin: 0 auto; }
.subscribe-row input { flex: 1 1 240px; }
.cta-band { text-align: center; }

/* ==========================================================================
   ADMIN — same tokens, denser
   ========================================================================== */
.admin-body { font-size: 15px; background: var(--dawn-ivory); }
.admin-shell { display: grid; min-height: 100vh; grid-template-columns: 1fr; }
.admin-sidebar { background: var(--plum); color: var(--dawn-ivory); padding: 24px 16px; }
.admin-sidebar .brand {
  font-family: var(--font-display); font-size: 22px; display: flex;
  align-items: baseline; flex-wrap: wrap; gap: 6px;
  color: var(--dawn-ivory); text-decoration: none; margin-bottom: 24px; padding: 0 12px;
}
.admin-sidebar .wordmark { color: var(--dawn-ivory); font-size: 22px; }
.admin-sidebar .wordmark__any { color: var(--rose-soft); }
.admin-sidebar .brand-studio { font-size: 14px; font-weight: 600; opacity: 0.75;
  font-family: var(--font-body); letter-spacing: 0.04em; text-transform: lowercase; }
.admin-nav { display: flex; flex-direction: column; gap: 2px; }
.admin-nav a {
  color: var(--dawn-ivory); text-decoration: none; padding: 9px 12px;
  border-radius: 8px; font-weight: 600; font-size: 15px;
}
.admin-nav a:hover { background: var(--plum-deep); }
.admin-nav a.active { background: var(--plum-deep); box-shadow: inset 3px 0 0 var(--gold); }
.admin-main { padding: 28px 24px 64px; max-width: 1140px; width: 100%; }
.admin-main h1 { font-size: 30px; }
@media (min-width: 900px) { .admin-shell { grid-template-columns: 220px 1fr; } }

.admin-cards { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); margin-bottom: 28px; }
@media (min-width: 900px) { .admin-cards { grid-template-columns: repeat(4, 1fr); } }
.stat-card { background: #fff; border-radius: 12px; padding: 18px 20px; box-shadow: var(--shadow-card); }
.stat-card .label { font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); }
.stat-card .value { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--plum); }
.stat-card .delta { font-size: 13px; font-weight: 700; }
.delta.up { color: var(--success); }
.delta.down { color: var(--error); }

.admin-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-card); }
.admin-table th {
  text-align: left; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-soft); padding: 12px 14px; background: var(--ivory-deep);
}
.admin-table td { padding: 11px 14px; border-top: 1px solid var(--ivory-deep); vertical-align: middle; }
.admin-table tr.dragging { opacity: 0.4; }
.drag-handle { cursor: grab; color: var(--ink-soft); user-select: none; }

.status-pill { display: inline-block; padding: 2px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.status-pill--published, .status-pill--paid { background: #E6EEE7; color: var(--success); }
.status-pill--draft { background: var(--gold-soft); color: var(--ink); }
.status-pill--archived, .status-pill--refunded { background: var(--rose-soft); color: var(--plum); }

.chart-panel { background: #fff; border-radius: 12px; padding: 20px; box-shadow: var(--shadow-card); margin-bottom: 24px; }
.chart-panel h2 { font-size: 18px; margin-bottom: 12px; }
.admin-grid-2 { display: grid; gap: 24px; }
@media (min-width: 900px) { .admin-grid-2 { grid-template-columns: 1fr 1fr; } }

.admin-panel { background: #fff; border-radius: 12px; padding: 22px; box-shadow: var(--shadow-card); margin-bottom: 24px; }
.admin-panel h2 { font-size: 19px; margin-top: 0; }

/* show-all toggle beneath collapsible tables */
.show-all-btn { margin: -12px 0 24px; }

/* collapsible FAQ rows in the studio */
details.faq-item { padding: 0; margin-bottom: 12px; }
details.faq-item > summary {
  list-style: none; cursor: pointer; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 700;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item__q { min-width: 0; }
.faq-item__hint {
  flex: none; font-size: 13px; font-weight: 700; color: var(--plum);
  text-transform: uppercase; letter-spacing: 0.05em;
}
details.faq-item[open] > summary { border-bottom: 1px solid var(--ivory-deep); }
details.faq-item[open] > summary .faq-item__hint::after { content: " \2212"; }
details.faq-item:not([open]) > summary .faq-item__hint::after { content: " +"; }
details.faq-item > form { padding: 0 20px 20px; }
.form-row { display: grid; gap: 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.cover-preview { max-width: 160px; border-radius: 10px; margin-top: 10px; aspect-ratio: 4/5; object-fit: cover; }
.page-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }

/* --------------------------- reduced motion ------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero [data-rise], .reveal { opacity: 1 !important; transform: none !important; }
  .card:hover, .btn:hover { transform: none !important; }
}

/* --------------------------- intent picker (onboarding) ------------------- */
.intent-picker { border: none; padding: 0; margin: 8px 0 20px; }
.intent-picker legend {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  color: var(--plum); padding: 0; margin-bottom: 4px;
}
.intent-grid { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 12px; }
@media (min-width: 620px) { .intent-grid { grid-template-columns: 1fr 1fr; } }
.intent-option {
  display: flex; align-items: center;
  padding: 12px 16px; border: 1.5px solid var(--rose-soft);
  border-radius: 999px; background: var(--ivory); cursor: pointer;
  font-weight: 500; line-height: 1.3; color: var(--ink);
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}
.intent-option:hover { border-color: var(--plum); }
/* checkbox is hidden — selection is shown purely by colour */
.intent-option input {
  position: absolute; width: 1px; height: 1px; opacity: 0;
  margin: 0; pointer-events: none;
}
.intent-option:has(input:checked) {
  border-color: var(--plum); background: var(--plum); color: #fff;
}
.intent-option:focus-within { outline: 2px solid var(--plum); outline-offset: 2px; }

/* -------------------------------- avatars --------------------------------- */
.avatar {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--horizon); color: #fff;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  background-size: cover; background-position: center; flex: none; overflow: hidden;
}
.avatar--sm { width: 30px; height: 30px; font-size: 12px; }
.avatar--lg { width: 64px; height: 64px; font-size: 24px; }
.avatar--xl { width: 96px; height: 96px; font-size: 34px; }
.profile-preview { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }

/* account header: avatar + greeting on the left, actions on the right */
.account-head {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 24px;
}
.account-head__who { display: flex; align-items: center; gap: 16px; }
.account-head__who h1 { margin: 0; }
.account-head__actions { display: flex; align-items: center; gap: 10px; }
.account-head__actions form { margin: 0; }

/* clickable avatar uploader */
.avatar-edit {
  display: flex; align-items: center; gap: 28px;
  margin-bottom: 32px; padding: 22px 24px;
  background: var(--ivory-deep); border-radius: 18px;
}
.avatar-edit__pick {
  position: relative; display: inline-block; cursor: pointer; border-radius: 50%;
  flex: none; line-height: 0;
}
.avatar-edit__pick .avatar { transition: filter 150ms ease, box-shadow 150ms ease; }
.avatar-edit__pick:hover .avatar {
  filter: brightness(0.9);
  box-shadow: 0 0 0 4px var(--rose-soft);
}
.avatar-edit__pick:focus-visible { outline: 2px solid var(--plum); outline-offset: 3px; }
.avatar-edit__text { flex: 1; min-width: 0; }
.avatar-edit__text strong { display: block; margin-bottom: 4px; }
.avatar-edit__text .field-help { margin: 0; max-width: 44ch; }

.checkline {
  display: flex; align-items: center; gap: 8px; font-weight: 400; margin-top: 8px;
}
.checkline input { width: auto; accent-color: var(--plum); }

/* screen-reader-only (also hides the raw file input behind the avatar) */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* profile links editor */
.link-fields { border: none; padding: 0; margin: 8px 0 20px; }
.link-fields legend {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  color: var(--plum); padding: 0; margin-bottom: 4px;
}
.link-row { display: flex; gap: 10px; margin-top: 10px; }
.link-row input:first-child { flex: 0 0 34%; }
.link-row input:last-child { flex: 1; }
@media (max-width: 520px) { .link-row { flex-direction: column; }
  .link-row input:first-child { flex: 1; } }

.settings-block { margin-top: 44px; }
.settings-block h3 { margin-bottom: 6px; }

/* author links + public profile */
.author-link { color: inherit; text-decoration: none; font-weight: inherit; }
.author-link:hover { color: var(--plum); text-decoration: underline; text-underline-offset: 3px; }

.profile-card {
  text-align: center; background: var(--ivory-deep); border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); padding: 40px 28px;
}
.profile-card .avatar { margin: 0 auto 16px; }
.profile-card h1 { margin: 0; }
.profile-card__bio { color: var(--ink-soft); margin: 12px auto 0; max-width: 48ch; }
.profile-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }

/* ------------------------------- forums ----------------------------------- */
.forum-cats { display: grid; gap: 14px; }
.forum-cat {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; background: var(--ivory-deep); border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); border-left: 5px solid var(--plum);
  text-decoration: none; color: inherit; transition: transform 150ms ease, box-shadow 150ms ease;
}
.forum-cat:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-hover, var(--shadow-card)); }
.forum-cat h3 { margin: 0 0 4px; }
.forum-cat p { margin: 0; color: var(--ink-soft); font-size: 15px; }
.forum-cat__count { color: var(--ink-soft); font-size: 13px; white-space: nowrap; font-weight: 600; }

.new-post { margin-top: 24px; }
.new-post > summary { display: inline-flex; list-style: none; cursor: pointer; }
.new-post > summary::-webkit-details-marker { display: none; }

.post-list { display: grid; gap: 10px; }
.post-row {
  display: flex; gap: 16px; align-items: center; padding: 16px 18px;
  background: var(--ivory-deep); border-radius: 14px; box-shadow: var(--shadow-card);
  text-decoration: none; color: inherit; transition: transform 150ms ease;
}
.post-row:hover { transform: translateY(-2px); }
.post-row__votes { font-weight: 700; color: var(--plum); white-space: nowrap; font-size: 14px; }
.post-row__main h3 { margin: 0 0 2px; font-size: 18px; }
.post-row__meta { display: flex; align-items: center; gap: 8px; margin: 0; color: var(--ink-soft); font-size: 13px; }

.forum-post { background: var(--ivory-deep); border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); padding: 28px; margin: 16px 0 40px; }
.forum-post h1 { margin-top: 0; }
.forum-body { line-height: 1.6; margin: 16px 0; white-space: normal; }
.forum-actions { margin-top: 12px; }

.comment-form { margin: 16px 0 28px; }
.comment-list { display: grid; gap: 16px; }
.comment { background: var(--ivory-deep); border-radius: 14px; box-shadow: var(--shadow-card); padding: 18px 20px; }
.comment__head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.comment__date { color: var(--ink-soft); font-size: 13px; margin-left: auto; }

.like-form { display: inline-block; }
.heart-btn span { font-weight: 600; }

/* topic tags + filters */
.tag-filter { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 4px; }
.tag-chip {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  border: 1px solid var(--rose-soft); background: var(--ivory);
  color: var(--ink-soft); text-decoration: none; font-size: 14px; font-weight: 600;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}
.tag-chip:hover { border-color: var(--plum); color: var(--plum); }
.tag-chip.on { background: var(--plum); border-color: var(--plum); color: #fff; }
.tag-chip--mini {
  padding: 2px 9px; font-size: 12px; margin-right: 6px; vertical-align: middle;
  background: var(--rose-wash, rgba(123, 108, 246, 0.1)); color: var(--plum);
  border-color: transparent;
}
.forum-post .tag-chip--mini { display: inline-block; margin-bottom: 10px; }

/* one-level reply threads */
.comment-thread { display: grid; gap: 12px; }
.reply-list { display: grid; gap: 12px; margin-left: 28px;
  padding-left: 16px; border-left: 2px solid var(--rose-soft); }
.comment--reply { background: var(--ivory); }
.reply-toggle { display: inline-block; margin-left: 6px; }
.reply-toggle > summary {
  display: inline; list-style: none; cursor: pointer;
  color: var(--plum); font-size: 13px; font-weight: 600;
}
.reply-toggle > summary::-webkit-details-marker { display: none; }
.comment-form--reply { margin-top: 12px; }
.comment-form--reply textarea { width: 100%; }

/* -------------------------- library + reader ---------------------------- */
.library-card {
  background: var(--ivory-deep); border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); padding: 18px; display: flex;
  flex-direction: column; align-items: flex-start; gap: 10px;
}
.library-card__cover {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 12px;
}
.library-card h3 { margin: 0; font-size: 20px; }
.library-card .btn { margin-top: auto; }

.reader-block { margin-top: 28px; }
.reader-block__title { margin-bottom: 12px; }
.reader-pdf {
  width: 100%; height: 78vh; min-height: 480px; border: 1px solid rgba(43, 38, 34, 0.14);
  border-radius: 12px; background: #fff;
}
.reader-doc {
  background: #fff; border: 1px solid rgba(43, 38, 34, 0.12);
  border-radius: 12px; padding: 28px 32px; line-height: 1.7; overflow-wrap: break-word;
}
.reader-doc img { max-width: 100%; height: auto; }
.reader-doc table { border-collapse: collapse; width: 100%; }
.reader-doc td, .reader-doc th { border: 1px solid rgba(43, 38, 34, 0.16); padding: 6px 10px; }
.reader-doc--empty { color: var(--ink-soft); text-align: center; }

/* admin: uploaded course files */
.asset-list { list-style: none; padding: 0; margin: 0 0 16px; }
.asset-list__row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid rgba(43, 38, 34, 0.1);
  transition: opacity 160ms ease, background 160ms ease;
}
.asset-list__name { flex: 1; min-width: 0; }
.asset-list__name small { color: var(--ink-soft); font-weight: 400; }
.asset-list__row--pending-remove {
  opacity: 0.55;
  background: rgba(166, 75, 63, 0.06);
  border-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 -10px;
}
.asset-list__row--pending-remove .asset-list__name {
  text-decoration: line-through;
  text-decoration-color: rgba(166, 75, 63, 0.55);
}

/* admin: reel review draw cards */
.reel-applicant-list { display: grid; gap: 12px; margin-top: 18px; }
.reel-applicant {
  background: var(--dawn-ivory);
  border: 1.5px solid rgba(43, 38, 34, 0.1);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.reel-applicant__top { padding: 14px 16px 10px; }
.reel-applicant__who { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.reel-applicant__who strong { font-size: 16px; color: var(--ink); }
.reel-applicant__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px;
  margin-top: 10px; font-size: 14px; color: var(--ink-soft);
}
.reel-applicant__meta > a:not(.btn) { font-weight: 600; }
.reel-applicant__fold { border-top: 1px solid rgba(43, 38, 34, 0.08); }
.reel-applicant__summary {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 16px; cursor: pointer; list-style: none;
  font-weight: 700; color: var(--plum);
}
.reel-applicant__summary::-webkit-details-marker { display: none; }
.reel-applicant__chevron {
  width: 28px; height: 28px; border-radius: 999px; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(122, 46, 98, 0.08); color: var(--plum);
  font-size: 18px; line-height: 1; font-weight: 700;
  transition: transform 160ms ease, background 160ms ease;
}
.reel-applicant__fold[open] .reel-applicant__chevron {
  transform: rotate(45deg);
  background: rgba(122, 46, 98, 0.14);
}
.reel-applicant__body { padding: 0 16px 16px; }
.reel-applicant__body .stack-form { margin-top: 4px; }
.reel-applicant--winner {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(239, 167, 51, 0.28), var(--shadow-card);
  background: linear-gradient(180deg, var(--gold-soft) 0%, #fff 48%);
  order: -1;
}
.reel-winner-badge {
  display: inline-block; align-self: flex-start;
  margin-bottom: 4px; padding: 3px 10px;
  border-radius: 999px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.02em; text-transform: uppercase;
  background: var(--gold); color: var(--plum-deep);
}

/* ------------------------------- badges --------------------------------- */
.badge {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  line-height: 0;
  filter: drop-shadow(0 2px 4px rgba(43, 38, 34, 0.18));
}
.badge svg { display: block; width: 100%; height: auto; }
.badge--chip { width: 20px; margin: 0 2px; }
.badge--md   { width: 54px; }
.badge--lg   { width: 84px; }

/* hover tooltip = the milestone reached */
.badge[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, -6px);
  white-space: nowrap;
  background: var(--ink);
  color: var(--dawn-ivory);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  padding: 6px 10px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(43, 38, 34, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease, transform 120ms ease;
  z-index: 40;
}
.badge[data-tip]:hover::after,
.badge[data-tip]:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, -10px);
}

/* streak card ("I showed up today") */
.streak-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 22px 26px;
  border-radius: var(--radius-card);
  background: linear-gradient(120deg, var(--gold-soft) 0%, var(--rose-soft) 100%);
  border: 1px solid rgba(122, 46, 98, 0.12);
  box-shadow: var(--shadow-card);
}
.streak-card__count {
  margin: 4px 0 6px;
  font-family: var(--font-display);
  color: var(--plum-deep);
}
.streak-card__count strong { font-size: 40px; line-height: 1; }
.streak-card__count span { font-size: 16px; margin-left: 8px; color: var(--ink-soft); }
.streak-done {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; color: var(--success);
  background: rgba(95, 122, 99, 0.12); padding: 12px 20px; border-radius: 999px;
}

/* badge strips + collections */
.badge-strip {
  display: flex; align-items: center; flex-wrap: wrap; gap: 16px;
  margin-top: 22px;
}
.badge-strip__items { display: flex; gap: 8px; }
.profile-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  margin: 20px 0 4px;
}

.badge-picker { border: none; padding: 0; margin: 28px 0 8px; }
.badge-picker legend {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  color: var(--plum); padding: 0; margin-bottom: 4px;
}
.badge-collection { display: grid; gap: 10px; margin-top: 14px; }
.badge-collection__row {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 14px; border-radius: 14px; background: var(--ivory-deep);
}
.badge-collection__row.is-locked { opacity: 0.55; }
.badge-collection__row.is-locked .badge { filter: grayscale(0.85) drop-shadow(0 1px 2px rgba(43,38,34,0.15)); }
.badge-collection__meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.badge-collection__meta .checkline { margin: 4px 0 0; font-weight: 700; }

.badge-tile { display: flex; flex-direction: column; align-items: center; gap: 8px; margin: 0; text-align: center; }
.badge-tile figcaption strong { display: block; font-size: 14px; }
.badge-tile figcaption span { font-size: 12px; color: var(--ink-soft); }

/* studio badge manager */
.badge-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 18px;
  margin-top: 14px;
}
.badge-admin-cell {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-align: center; padding: 14px 10px; border-radius: 14px;
  background: var(--dawn-ivory);
}
.badge-admin-cell .badge--lg { width: 76px; }
.badge-admin-cell strong { font-size: 14px; }
.badge-admin-cell label { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
.badge-admin-cell input[type="number"] { width: 92px; text-align: center; }

/* My Journey keepsake card */
.journey-card {
  position: relative;
  overflow: hidden;
  margin-top: 26px;
  padding: 28px 30px;
  border-radius: var(--radius-card);
  color: var(--dawn-ivory);
  background: linear-gradient(120deg, var(--plum-deep) 0%, var(--plum) 42%, var(--berry) 100%);
  box-shadow: var(--shadow-card);
}
.journey-card::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 5px;
  background: var(--horizon);
}
.journey-card .eyebrow { color: var(--gold); }
.journey-card h3 { margin: 4px 0 10px; color: #fff; font-size: 24px; }
.journey-card p { color: rgba(250, 245, 238, 0.86); max-width: 60ch; margin: 0 0 18px; }
.journey-card__body { position: relative; z-index: 1; }
.journey-card__mark {
  position: absolute; right: -10px; bottom: -24px;
  font-size: 150px; line-height: 1; color: rgba(239, 167, 51, 0.18);
  pointer-events: none;
}
.journey-card--locked {
  background: linear-gradient(120deg, #514a45 0%, var(--ink) 100%);
}
.journey-card--locked .eyebrow { color: var(--rose-soft); }

/* ===================== Memberships, videos & spotlight ===================== */

/* home-page "new video" nudge for Creator members */
.hero-newvideo {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; margin-top: 10px;
  padding: 10px 18px; border-radius: 999px;
  background: linear-gradient(135deg, var(--plum) 0%, var(--berry) 100%);
  color: #fff; font-weight: 600;
  transition: transform .18s ease, box-shadow .18s ease;
}
.hero-newvideo__spark { font-size: 13px; }
.hero-newvideo:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-hover); }

/* membership gate cards in the community */
.member-gate {
  margin-top: 20px; padding: 18px 20px;
  border: 1.5px dashed rgba(122, 46, 98, 0.35);
  border-radius: var(--radius-card);
  background: var(--ivory-deep);
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  justify-content: space-between;
}
.member-gate p { margin: 0; max-width: 52ch; }
.member-gate--soft {
  border-style: solid; text-align: center; justify-content: center;
  margin-top: 28px;
}
.membership-pill {
  display: inline-block; margin: 4px 0 8px;
  padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
}
.membership-pill--creator { background: linear-gradient(135deg, var(--plum), var(--berry)); color: #fff; }
.membership-pill--healing { background: var(--rose-soft); color: var(--plum-deep); }

/* subject filter tabs (a lighter second row under the type tabs) */
.filter-tabs--subjects { margin-top: -8px; margin-bottom: 20px; flex-wrap: wrap; }
.filter-tabs--subjects a { font-size: 14px; }

/* spotlight on the home page */
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 28px;
  align-items: start;
}
.spotlight-grid--solo { grid-template-columns: minmax(0, 420px); justify-content: center; }
.spotlight-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 28px 24px 26px;
  box-shadow: var(--shadow-card);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.spotlight-card h3 { margin: 0; }
.reel-embed {
  position: relative; width: 100%; max-width: 280px; margin: 4px auto 16px;
  aspect-ratio: 9 / 16; border-radius: 14px; overflow: hidden;
  background: var(--ivory-deep); box-shadow: var(--shadow-card);
}
.reel-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 760px) {
  .spotlight-grid { grid-template-columns: 1fr; gap: 20px; }
  .spotlight-grid--solo { grid-template-columns: 1fr; }
  .reel-embed { max-width: 240px; }
}

/* video room */
.video-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px; margin-top: 28px;
}
.video-card {
  display: block; text-decoration: none; color: inherit;
  background: #fff; border-radius: var(--radius-card); overflow: hidden;
  box-shadow: var(--shadow-card); transition: transform .18s ease, box-shadow .18s ease;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.video-card__thumb {
  position: relative; aspect-ratio: 16 / 9; background: var(--horizon);
  display: flex; align-items: center; justify-content: center;
}
.video-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-card__play { color: #fff; font-size: 40px; opacity: 0.9; }
.video-card__body { padding: 16px; }
.video-card__body h3 { margin: 0 0 6px; font-size: 18px; }
.video-card__body p { margin: 0 0 8px; color: var(--ink-soft); font-size: 14px; }
.video-card__date { font-size: 12px; color: var(--ink-soft); }
.video-player {
  aspect-ratio: 16 / 9; background: #000; border-radius: var(--radius-card);
  overflow: hidden; margin-bottom: 24px; box-shadow: var(--shadow-card);
}
.video-player video { width: 100%; height: 100%; display: block; }
.empty-state {
  margin-top: 32px; padding: 40px; text-align: center;
  background: var(--ivory-deep); border-radius: var(--radius-card);
}

/* studio: spotlight + members */
.spotlight-fieldset {
  border: 1px solid rgba(122, 46, 98, 0.2); border-radius: 12px;
  padding: 16px 18px; margin-bottom: 18px;
}
.spotlight-fieldset legend { font-weight: 700; padding: 0 8px; color: var(--plum); }
.spotlight-candidates ul, .spotlight-list { list-style: none; padding: 0; margin: 8px 0 0; }
.spotlight-candidates li, .spotlight-list li { padding: 6px 0; border-bottom: 1px solid var(--ivory-deep); }
.member-search { display: flex; gap: 10px; max-width: 420px; }
.member-search input { flex: 1; }
.stat-row { display: flex; gap: 14px; flex-wrap: wrap; }
.stat-chip {
  background: var(--ivory-deep); border-radius: 12px; padding: 10px 16px;
  font-weight: 600; color: var(--ink-soft);
}
.stat-chip span { font-size: 22px; font-weight: 700; color: var(--plum); margin-right: 6px; }
.link-fields--locked { opacity: 0.9; }

/* ---------- Membership plans & comparison ---------- */
.membership-hero { text-align: center; padding-bottom: 8px; }
.membership-hero h1 { margin: 6px 0 10px; }
.membership-hero .subline { max-width: 620px; margin: 0 auto; color: var(--ink-soft); }

.btn--block { display: block; width: 100%; text-align: center; }
.btn.is-disabled { opacity: 0.55; pointer-events: none; cursor: default; }

.plan-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
@media (max-width: 860px) { .plan-grid { grid-template-columns: 1fr; } }

.plan-card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--ivory-deep);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}
.plan-card--feature {
  border: 2px solid var(--plum);
  box-shadow: var(--shadow-card-hover);
}
.plan-card.is-current { outline: 2px solid var(--gold); outline-offset: 2px; }
.plan-card h2 { margin: 0 0 6px; font-size: 24px; }
.plan-price { font-size: 34px; font-weight: 800; color: var(--plum); margin: 4px 0 2px; }
.plan-price span { font-size: 15px; font-weight: 600; color: var(--ink-soft); margin-left: 4px; }
.plan-price .soon { font-size: 20px; font-weight: 700; color: var(--ink-soft); }
.plan-tagline { color: var(--ink-soft); margin: 0 0 16px; min-height: 42px; }
.plan-perks { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.plan-perks li { position: relative; padding: 7px 0 7px 26px; border-top: 1px solid var(--ivory-deep); }
.plan-perks li:first-child { border-top: none; }
.plan-perks li::before {
  content: "\2713"; position: absolute; left: 0; top: 7px;
  color: var(--plum); font-weight: 800;
}
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold-soft); color: var(--plum);
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.plan-badge--star { background: var(--horizon); color: #fff; }

.section-title { text-align: center; margin-bottom: 24px; }
.cmp-wrap { overflow-x: auto; }
.cmp-table {
  width: 100%; border-collapse: collapse; min-width: 520px;
  background: #fff; border-radius: var(--radius-card); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.cmp-table th, .cmp-table td { padding: 14px 16px; text-align: center; border-top: 1px solid var(--ivory-deep); }
.cmp-table thead th { background: var(--ivory-deep); font-size: 15px; border-top: none; }
.cmp-table tbody th { text-align: left; font-weight: 600; color: var(--ink); }
.cmp-table__feature { background: rgba(122, 46, 98, 0.05); }
.cmp-yes { color: var(--plum); font-weight: 800; font-size: 18px; }
.cmp-no { color: var(--ink-soft); }
.cmp-note { font-size: 13px; font-weight: 600; color: var(--ink-soft); }

/* =========================== bloom anyway wordmark ======================== */
.wordmark { display: inline-flex; align-items: baseline; gap: 1px;
  font-family: var(--font-display); font-weight: 600; font-size: 27px;
  color: var(--plum-deep); line-height: 1; letter-spacing: -0.01em; }
.wordmark__txt { display: inline-block; }
.wordmark__sf { width: 0.86em; height: 0.86em; display: inline-block;
  transform: translateY(0.06em); }
.wordmark__any { margin-left: 0.4em; font-style: italic; font-weight: 400;
  font-size: 0.78em; color: var(--rose); }
.footer-brand .wordmark { color: var(--dawn-ivory); }
.footer-brand .wordmark__any { color: var(--rose-soft); }

/* ============================ announcement strip ========================== */
.announce-strip { background: var(--gold-soft);
  border-bottom: 1px solid rgba(239,167,51,0.4); }
.announce-strip .container { padding-top: 12px; padding-bottom: 12px;
  display: flex; flex-direction: column; gap: 8px; }
.announce-strip .hero-announcement,
.announce-strip .hero-newvideo { margin: 0; }

/* =============================== spotlight ================================ */
.spotlight-tag {
  display: inline-block; font-family: var(--font-display);
  font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; background: var(--horizon); padding: 6px 14px; border-radius: 999px;
  margin: 0 0 18px; box-shadow: var(--shadow-card);
}
.spotlight-card--creator,
.spotlight-card--reel {
  height: auto;
  align-self: start;
}
.spotlight-creator {
  display: flex; flex-direction: column; align-items: center;
  width: 100%; max-width: 320px;
}
.spotlight-creator__photo--ph {
  width: 112px; height: 112px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; background: var(--gold-soft); line-height: 1;
  margin: 0 0 12px; flex-shrink: 0;
  border: 3px solid var(--gold-soft); box-shadow: var(--shadow-card);
}
.spotlight-creator h3 {
  margin: 0; font-size: clamp(22px, 3vw, 26px); line-height: 1.2;
  max-width: 100%; word-wrap: break-word;
}
.spotlight-creator__handle {
  margin: 6px 0 0; color: var(--plum); font-weight: 700; font-size: 16px;
}
.spotlight-creator__bio {
  margin: 14px 0 0; color: var(--ink-soft); line-height: 1.55;
  white-space: pre-wrap; font-size: 15px; max-width: 34ch;
  text-wrap: pretty;
}
.spotlight-creator__cta { margin-top: 18px; }
.spotlight-card--reel p {
  margin: 0 0 14px; color: var(--ink-soft); font-size: 15px;
  max-width: 34ch; line-height: 1.55;
}

/* ============================ content hub ================================ */
.review-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.review-card {
  background: #fff; border-radius: var(--radius-card); padding: 22px;
  box-shadow: var(--shadow-card);
}
.review-card h3 { margin: 0 0 8px; font-size: 20px; }
.stack-form { display: flex; flex-direction: column; gap: 12px; }
.stack-form label { display: flex; flex-direction: column; gap: 6px;
  font-weight: 600; font-size: 14px; }
.stack-form input[type="url"],
.stack-form input[type="text"],
.stack-form input[type="file"],
.stack-form textarea {
  font-weight: 400; font-family: inherit; font-size: 15px;
  padding: 10px 12px; border: 1px solid var(--ivory-deep);
  border-radius: var(--radius-input); background: #fff;
}
.hub-request { background: #fff; border-radius: var(--radius-card);
  padding: 22px; box-shadow: var(--shadow-card); }

.tag-fold {
  margin: 12px 0 18px; background: #fff; border-radius: 14px;
  border: 1px solid var(--ivory-deep); padding: 4px 14px 10px;
}
.tag-fold__summary {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  cursor: pointer; list-style: none; padding: 12px 2px; font-weight: 700;
  color: var(--plum); font-size: 15px; user-select: none;
}
.tag-fold__summary::-webkit-details-marker { display: none; }
.tag-fold__arrow {
  width: 28px; height: 28px; border-radius: 50%; background: var(--ivory-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; transition: transform .25s ease; color: var(--plum);
}
.tag-fold[open] .tag-fold__arrow { transform: rotate(180deg); }
.tag-fold .tag-cloud { margin-top: 4px; max-height: none; }

/* coaching fold + owner notice */
.journey-card.coaching-card { margin-top: 16px; }
.journey-card .coaching-fold__toggle {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; max-width: 520px; margin: 4px 0 0; padding: 0;
  border: 0; background: none; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-size: clamp(22px, 3vw, 26px);
  font-weight: 600; color: #fff; line-height: 1.25;
}
.journey-card .coaching-fold__arrow {
  flex: none; width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(250, 245, 238, 0.2); font-size: 14px; color: #fff;
  transition: transform .28s ease;
}
.journey-card .coaching-fold__toggle.is-open .coaching-fold__arrow { transform: rotate(180deg); }
.journey-card .coaching-fold__panel {
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height .35s ease, opacity .28s ease, margin .28s ease;
}
.journey-card .coaching-fold__panel.is-open { opacity: 1; margin-top: 12px; }
.journey-card .coaching-fold__panel p { color: rgba(250, 245, 238, 0.9); }
.journey-card .coaching-form label {
  color: rgba(250, 245, 238, 0.95); font-weight: 600;
}
.journey-card .coaching-form .field-help { color: rgba(250, 245, 238, 0.75); }
.journey-card .coaching-datetime {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid rgba(250, 245, 238, 0.55);
  border-radius: 12px;
  padding: 12px 14px;
  color-scheme: light;
}
.journey-card .coaching-datetime::-webkit-calendar-picker-indicator {
  opacity: 0.7; cursor: pointer;
}
.journey-card .spotlight-list li { color: rgba(250, 245, 238, 0.92);
  border-bottom-color: rgba(250, 245, 238, 0.2); }
.journey-card .spotlight-list .field-help { color: rgba(250, 245, 238, 0.72); }
.owner-notice {
  background: #fff; border-radius: var(--radius-card); padding: 22px 24px;
  box-shadow: var(--shadow-card); border-left: 4px solid var(--horizon);
}
.owner-notice__head { display: flex; gap: 14px; align-items: center; margin-bottom: 14px; }
.owner-notice__icon { font-size: 32px; line-height: 1; }
.owner-notice__list { list-style: none; padding: 0; margin: 0; }
.owner-notice__list li { padding: 12px 0; border-top: 1px solid var(--ivory-deep); }
.owner-notice__list li:first-child { border-top: none; padding-top: 0; }

/* ============================ content library lock ======================= */
.video-card--locked .video-card__thumb { filter: grayscale(0.35) brightness(0.85); }
.video-card__lock { position: absolute; top: 10px; right: 10px; font-size: 20px;
  background: rgba(43,38,34,0.7); color: #fff; width: 34px; height: 34px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.video-card__thumb { position: relative; }
.video-locked { position: relative; border-radius: var(--radius-card);
  overflow: hidden; background: var(--plum-deep) center/cover no-repeat;
  min-height: 340px; }
.video-locked__veil { position: absolute; inset: 0; display: flex;
  flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  text-align: center; padding: 32px; color: #fff;
  background: linear-gradient(rgba(43,24,45,0.72), rgba(43,24,45,0.86)); }
.video-locked__icon { font-size: 46px; }
.video-locked__veil h2 { color: #fff; margin: 0; }
.video-locked__veil p { color: var(--rose-soft); max-width: 40ch; margin: 0 0 8px; }

/* ============================== marketplace ============================== */
.market-head { display: flex; justify-content: space-between; align-items: flex-end;
  gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.market-filters { display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
  margin: 16px 0; }
.market-filters input, .market-filters select { padding: 9px 12px;
  border: 1px solid var(--ivory-deep); border-radius: var(--radius-input);
  font-family: inherit; font-size: 15px; }
.view-toggle { display: inline-flex; margin-left: auto; border-radius: 10px;
  overflow: hidden; border: 1px solid var(--ivory-deep); }
.view-toggle a { padding: 8px 12px; color: var(--ink-soft); text-decoration: none;
  font-size: 18px; line-height: 1; background: #fff; }
.view-toggle a.active { background: var(--plum); color: #fff; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 24px; }
.tag-chip { display: inline-block; padding: 6px 13px; border-radius: 999px;
  background: var(--ivory-deep); color: var(--ink); text-decoration: none;
  font-size: 14px; font-weight: 600; }
.tag-chip.active, .tag-chip.on { background: var(--plum); color: #fff; }
.tag-chip--mini { padding: 2px 9px; font-size: 12px; }
.market-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px; }
.market-card { background: #fff; border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s; }
.market-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.market-card__thumb { position: relative; display: block; aspect-ratio: 4/3;
  background: var(--gold-soft); overflow: hidden; }
.market-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.market-card__ph, .market-row__ph { display: flex; align-items: center;
  justify-content: center; height: 100%; font-size: 40px; }
.market-card__pill { position: absolute; top: 10px; left: 10px; font-size: 12px;
  font-weight: 700; background: rgba(255,255,255,0.92); color: var(--plum);
  padding: 4px 10px; border-radius: 999px; }
.market-card__body { padding: 16px; }
.market-card__body h3 { margin: 0 0 6px; font-size: 19px; }
.market-card__body h3 a, .market-row__body h3 a { color: inherit; text-decoration: none; }
.market-card__body p { margin: 0 0 10px; color: var(--ink-soft); font-size: 14px; }
.market-card__meta, .market-row__meta { display: flex; gap: 12px; align-items: center;
  flex-wrap: wrap; }
.market-price { font-weight: 800; color: var(--plum); }
.market-price--lg { font-size: 26px; }
.market-list { display: flex; flex-direction: column; gap: 14px; }
.market-row { display: flex; gap: 16px; background: #fff; border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); padding: 14px; text-decoration: none; color: inherit; }
.market-row.is-inactive { opacity: 0.6; }
.market-row__thumb { flex: none; width: 120px; height: 90px; border-radius: 12px;
  overflow: hidden; background: var(--gold-soft); display: block; }
.market-row__thumb img { width: 100%; height: 100%; object-fit: cover; }
.market-row__body { flex: 1; }
.market-row__body h3 { margin: 6px 0 4px; font-size: 20px; }
.market-row__body p { margin: 0 0 8px; color: var(--ink-soft); }
.type-pill--muted { background: var(--ivory-deep); color: var(--ink-soft); }

.listing-detail { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px;
  margin-top: 20px; }
.listing-detail__hero { width: 100%; border-radius: var(--radius-card);
  aspect-ratio: 4/3; object-fit: cover; background: var(--gold-soft); }
.listing-detail__ph { display: flex; align-items: center; justify-content: center;
  aspect-ratio: 4/3; font-size: 72px; background: var(--gold-soft);
  border-radius: var(--radius-card); }
.listing-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.listing-thumbs__btn {
  display: block; padding: 0; margin: 0; border: 2px solid transparent;
  border-radius: 8px; background: none; cursor: pointer; line-height: 0;
  overflow: hidden;
}
.listing-thumbs__btn img { width: 74px; height: 56px; object-fit: cover;
  display: block; border-radius: 6px; pointer-events: none; }
.listing-thumbs__btn:hover,
.listing-thumbs__btn:focus-visible { border-color: var(--plum); outline: none; }
.listing-thumbs__btn.is-active { border-color: var(--plum); }
.listing-thumbs img { width: 74px; height: 56px; object-fit: cover; border-radius: 8px;
  border: 2px solid transparent; }
.listing-thumbs--edit img { cursor: default; }
.listing-thumb-edit { display: inline-flex; flex-direction: column; align-items: center;
  gap: 4px; font-size: 12px; }
.listing-desc { margin: 18px 0; line-height: 1.7; }
.trust-line { font-size: 13px; color: var(--ink-soft); margin-top: 10px; }
.seller-card { display: flex; gap: 14px; align-items: center; margin-top: 26px;
  padding: 16px; background: var(--ivory-deep); border-radius: var(--radius-card); }
.seller-card p { margin: 4px 0 0; }
.kind-picker { display: flex; gap: 12px; border: none; padding: 0; margin: 0 0 18px; }
.kind-option { flex: 1; position: relative; }
.kind-option input { position: absolute; opacity: 0; pointer-events: none; }
.kind-option span { display: block; text-align: center; padding: 14px; border-radius: 12px;
  border: 2px solid var(--ivory-deep); font-weight: 700; cursor: pointer; }
.kind-option input:checked + span { border-color: var(--plum); background: rgba(122,46,98,0.06);
  color: var(--plum); }
.kind-option input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
/* dedicated location box for services (toggled via [hidden] + JS) */
.location-box {
  margin: 8px 0 22px; padding: 18px 20px; border-radius: 14px;
  background: var(--gold-soft); border: 2px solid var(--gold);
}
.location-box[hidden] { display: none !important; }
.location-box label { display: block; font-weight: 800; font-size: 17px;
  color: var(--plum-deep); margin-bottom: 4px; }
.location-box .field-help { margin: 0 0 10px; }
.location-box input { width: 100%; padding: 12px 14px; font-size: 16px;
  border: 1px solid rgba(122,46,98,0.25); border-radius: var(--radius-input);
  font-family: inherit; background: #fff; }
.market-loc {
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 700; font-size: 13px; color: var(--plum-deep);
  background: var(--gold-soft); padding: 4px 10px; border-radius: 999px;
}
.market-loc--lg { font-size: 15px; padding: 6px 12px; }
.loc-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }
.tag-picker { border: none; padding: 0; margin: 0 0 22px; }
.tag-picker legend { font-weight: 700; margin-bottom: 6px; }
.tag-picker__grid { display: flex; flex-wrap: wrap; gap: 8px; max-height: 280px;
  overflow-y: auto; padding: 4px 2px 8px; border: 1px solid var(--ivory-deep);
  border-radius: 12px; background: #fff; }
.tag-pick { position: relative; }
.tag-pick input { position: absolute; opacity: 0; pointer-events: none; }
.tag-pick span { display: inline-block; padding: 7px 12px; border-radius: 999px;
  background: var(--ivory-deep); color: var(--ink); font-size: 13px; font-weight: 600;
  cursor: pointer; border: 2px solid transparent; }
.tag-pick input:checked + span { background: var(--plum); color: #fff; border-color: var(--plum-deep); }
.tag-pick input:disabled + span { opacity: 0.4; cursor: not-allowed; }
.tag-cloud { max-height: 160px; overflow-y: auto; }
.gift-box { margin-top: 16px; border: 1px dashed var(--rose); border-radius: 12px;
  padding: 12px 16px; }
.gift-box summary { cursor: pointer; font-weight: 700; color: var(--plum); }
.gift-row { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.gift-row input { flex: 1; min-width: 200px; padding: 9px 12px;
  border: 1px solid var(--ivory-deep); border-radius: var(--radius-input); }

/* signup membership teaser + settings actions */
.signup-plans { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--ivory-deep); }
.signup-plans__list { list-style: none; padding: 0; margin: 12px 0; display: flex;
  flex-direction: column; gap: 8px; font-size: 15px; color: var(--ink-soft); }
.settings-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.link-row { display: flex; gap: 8px; margin-bottom: 8px; }
.link-row__label { max-width: 180px; }
.post-toolbar { display: flex; justify-content: flex-end; }
.post-list--tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px; }
.post-list--tiles .post-row { background: #fff; border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); padding: 18px; }

@media (max-width: 760px) {
  .listing-detail { grid-template-columns: 1fr; gap: 24px; }
  .market-row__thumb { width: 90px; height: 72px; }
}
