/* Kinga Wanesa — rela.sales
   Inspired by minimal editorial sites: bold type, warm neutrals, character */

:root {
  --bg: #ffffff;
  --bg-alt: #f7f6f4;
  --text: #0a0a0a;
  --text-muted: #4a4a4a;
  --accent: #0a0a0a;
  --accent-hover: #333333;
  --border: #e8e8e8;
  --white: #ffffff;
  --cream: #f7f6f4;
  --mono: "IBM Plex Mono", "Courier New", monospace;
  --sans: "Inter", "Helvetica Neue", sans-serif;
  --serif: var(--sans);
  --max: 720px;
  --max-wide: 1100px;
  --nav-h: 64px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.display {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
}

.headline {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

.subhead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.55;
}

.label {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--text-muted);
}

/* ── Layout ── */
.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--tight {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(246, 242, 236, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.nav__logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.nav__logo span {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.nav__links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

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

.nav__cta {
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  padding: 0.65rem 1.25rem;
  background: var(--text);
  color: var(--bg) !important;
  transition: background 0.2s !important;
}

.nav__cta:hover {
  background: var(--text-muted) !important;
  color: var(--white) !important;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: 0.3s;
}

/* ── Marquee ── */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  padding: 0.85rem 0;
  background: var(--text);
  color: var(--bg);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  gap: 3rem;
}

.marquee__item {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  border: 1px solid var(--text);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s;
}

.btn:hover {
  background: var(--text);
  color: var(--bg);
}

.btn--primary {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--text-muted);
  border-color: var(--text-muted);
  color: var(--white);
}

.btn--dark {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}

.btn--dark:hover {
  background: var(--text-muted);
  border-color: var(--text-muted);
}

.btn-arrow::after {
  content: "→";
  transition: transform 0.2s;
}

.btn:hover .btn-arrow::after,
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ── Hero ── */
.hero {
  padding-top: calc(var(--nav-h) + clamp(3rem, 8vw, 6rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__content { max-width: 560px; }

.hero__badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__title { margin-bottom: 1.25rem; }

.hero__text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero__meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  overflow: hidden;
}

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

.hero__visual-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--text-muted);
  text-align: center;
  padding: 2rem;
}

/* ── Service cards (Lori-style) ── */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  transition: background 0.3s;
}

.service-card:hover { background: var(--white); }

.service-card__num {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.service-card__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-card__link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}

.service-card:hover .service-card__link { gap: 0.75rem; color: var(--text); }

/* ── Pain / Solution blocks ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}

.pain-list li,
.benefit-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pain-list li::before { content: "—"; color: var(--text); flex-shrink: 0; }
.benefit-list li::before { content: "✓"; color: var(--text); flex-shrink: 0; font-weight: 600; }

.block--dark {
  background: var(--text);
  color: var(--bg);
}

.block--dark .subhead,
.block--dark .pain-list li,
.block--dark p { color: rgba(246, 242, 236, 0.75); }

.block--dark .label { color: var(--bg); opacity: 0.6; }

/* ── Modules grid ── */
.modules {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.module {
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--white);
}

.module__num {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.module__title {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

/* ── Pricing ── */
.pricing {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  padding: clamp(2.5rem, 5vw, 4rem);
  border: 1px solid var(--border);
  background: var(--white);
}

.pricing__price {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  margin: 1rem 0;
}

.pricing__price span {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.pricing__features {
  text-align: left;
  margin: 2rem 0;
}

.pricing__features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  display: flex;
  gap: 0.6rem;
}

.pricing__features li::before {
  content: "✔";
  color: var(--accent);
  flex-shrink: 0;
}

/* ── FAQ ── */
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.faq summary {
  font-family: var(--serif);
  font-size: 1.15rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq summary::after { content: "+"; font-family: var(--sans); font-size: 1.25rem; }
.faq details[open] summary::after { content: "−"; }

.faq p {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 640px;
}

/* ── About strip ── */
.about-strip {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-strip__img {
  aspect-ratio: 1;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  overflow: hidden;
}

.about-strip__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Form / Mailchimp ── */
.optin {
  max-width: 520px;
  margin-inline: auto;
  text-align: center;
}

.optin-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.optin-form input[type="email"],
.optin-form input[type="text"] {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  width: 100%;
}

.optin-form input:focus {
  outline: none;
  border-color: var(--text);
}

/* Mailchimp embed override */
#mc_embed_signup,
.mc-field-group { width: 100% !important; }

#mc_embed_signup .button,
.optin-form .btn { width: 100%; justify-content: center; }

/* ── Podcast embed area ── */
.podcast-embed {
  aspect-ratio: 16/9;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── work FLOW product ── */
.flow-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.flow-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.flow-col {
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Collab page ── */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.collab-card {
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--white);
}

.collab-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.collab-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

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

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer__brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 280px;
}

.footer__col h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer__col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  transition: color 0.2s;
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer__social {
  display: flex;
  gap: 1.25rem;
}

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

/* ── Testimonials ── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
}

.testimonial__media {
  aspect-ratio: 4/5;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
}

.testimonial__media img,
.testimonial__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__quote {
  padding: 1.25rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Inquiry checklist ── */
.inquiry-list {
  margin: 1.5rem 0;
}

.inquiry-list li {
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.5rem;
}

.inquiry-list li::before {
  content: "→";
  color: var(--accent);
  flex-shrink: 0;
}

.quote-block {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.45;
  color: var(--text);
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  opacity: 0.5;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Sticky CTA bar (mobile) ── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}

.sticky-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ── Utility ── */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
.accent { color: var(--accent); }
.max-narrow { max-width: 640px; margin-inline: auto; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero__grid,
  .split,
  .flow-preview,
  .about-strip { grid-template-columns: 1fr; }

  .hero__visual { max-height: 400px; aspect-ratio: 16/10; }

  .footer__grid { grid-template-columns: 1fr 1fr; }

  .flow-columns { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1.25rem;
  }

  .nav__links.is-open { display: flex; }

  .nav__toggle { display: block; }

  .sticky-cta { display: block; }

  body.has-sticky-cta { padding-bottom: 72px; }

  .footer__grid { grid-template-columns: 1fr; }

  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ── rela.sales landing v1.3 — Lori-clean, no overlap ── */
body.rela-landing-active .elementor,
body.rela-landing-active .elementor-location-single,
body.rela-landing-active .ekit-template-content-markup,
body.rela-landing-active .page-header,
body.rela-landing-active .site-main:not(.rela-landing),
body.rela-landing-active #primary > .page-content,
body.rela-landing-active .entry-content:not(.rela-landing *) {
  display: none !important;
}

body.rela-landing-active,
body.page-relasales {
  background: var(--white);
}

body.rela-landing-active .rela-landing {
  display: block !important;
  width: 100%;
}

body.rela-landing-active .elementor-location-footer,
body.rela-landing-active .site-footer:not(.footer--legal),
body.rela-landing-active footer:not(.footer--legal) {
  display: none !important;
}

body.rela-landing-active .rela-landing .footer--legal,
body.page-relasales .rela-landing .footer--legal {
  display: block !important;
  visibility: visible !important;
  position: relative;
  z-index: 20;
  width: 100%;
}

body.rela-landing-active .nav--minimal {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav__logo--mono {
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: lowercase;
}

.container--narrow {
  width: min(100% - 2.5rem, 640px);
  margin-inline: auto;
}

.container--wide {
  width: min(100% - 2.5rem, 1080px);
  margin-inline: auto;
}

.section-kicker {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--sans);
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  max-width: 16ch;
}

.section-intro {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 42ch;
  margin-bottom: 2.5rem;
}

.hero-clean {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: var(--white);
}

.hero-clean__title {
  font-size: clamp(1.75rem, 4.2vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 18ch;
}

.hero-clean__sub {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 36ch;
  color: var(--text);
}

.hero-clean__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-clean__list li {
  font-size: 0.98rem;
  line-height: 1.7;
  padding: 0.4rem 0;
  color: var(--text-muted);
}

.landing-section {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.landing-section--alt {
  background: var(--cream);
}

.landing-section--cta {
  padding-bottom: clamp(5rem, 12vw, 7rem);
}

.prose {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}

.prose p {
  margin-bottom: 1.25rem;
}

.prose blockquote {
  margin: 2rem 0;
  padding: 0;
  border: none;
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.6;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.offer-card {
  background: var(--white);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.offer-card__label {
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.offer-card__name {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.offer-card__text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.offer-card__price {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.offer-card__link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: auto;
}

.offer-card__link:hover {
  text-decoration: underline;
}

.optin-row__form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.optin-row__fields {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 0.75rem;
  min-width: min(100%, 280px);
}

.optin-row__form input[type="email"],
.optin-row__form input[type="text"] {
  flex: 1;
  min-width: 180px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  font: inherit;
  background: var(--white);
}

.optin-row__form input[type="email"] {
  min-width: 220px;
}

.optin-row__honeypot {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.optin-row__notice {
  width: 100%;
  margin: 0 0 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid #c9a227;
  background: #fff9e6;
  color: #5c4a00;
  font-size: 0.9rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.check-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.faq-list div {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.faq-list dt {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.faq-list dd {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.landing-cta {
  text-align: left;
}

.btn--lg {
  padding: 1.1rem 2rem;
  margin-top: 0.5rem;
}

.link-underline {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer--minimal {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer--minimal .container--narrow p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.footer-minimal__social {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1rem;
  font-size: 0.82rem;
}

body.rela-landing-active .sticky-cta {
  display: none !important;
}

.hero-clean__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.cred-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.cred-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.5;
}

.pull-quote {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
}

.check-list--tight li {
  padding: 0.45rem 0;
}

@media (max-width: 900px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

.visual-band {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.visual-band img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: grayscale(100%);
}

.media-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.media-split--reverse .media-split__photo {
  order: 2;
}

.media-split--reverse .media-split__text {
  order: 1;
}

.media-split__photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(15%);
}

.offer-grid--3 {
  margin-top: 2rem;
}

.offer-grid--stack {
  grid-template-columns: 1fr;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonial-card--screenshot img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border);
}

.testimonial-card--video video {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
  border: 1px solid var(--border);
}

.testimonial-card__placeholder {
  aspect-ratio: 9 / 16;
  max-height: 420px;
  border: 1px dashed var(--border);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.testimonial-card__placeholder p {
  margin: 0;
  font-weight: 600;
  color: var(--text);
}

.consultation-lead {
  margin: 1.25rem 0 0.75rem;
  font-size: 1rem;
}

.consultation-note {
  margin-top: 1.25rem;
  margin-bottom: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.social-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links__card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color 0.2s;
}

.social-links__card:hover {
  border-color: var(--text);
}

.social-links__label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.social-links__handle {
  font-size: 1.05rem;
  font-weight: 700;
}

.social-recent {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.social-recent__kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  margin-bottom: 0.75rem;
}

/* Substack spotlight — featured section (after problem) */
.substack-spotlight {
  background: var(--text);
  color: var(--cream);
}

.substack-spotlight .section-kicker,
.substack-spotlight .section-title,
.substack-spotlight .section-intro {
  color: var(--cream);
}

.substack-spotlight .section-intro {
  opacity: 0.88;
}

.substack-spotlight__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.substack-spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.substack-spotlight .btn--dark {
  background: var(--cream);
  color: var(--text);
  border-color: var(--cream);
}

.substack-spotlight .btn--dark:hover {
  background: var(--white);
  border-color: var(--white);
}

.substack-spotlight .btn--outline {
  border-color: rgba(246, 242, 236, 0.55);
  color: var(--cream);
}

.substack-spotlight .btn--outline:hover {
  border-color: var(--cream);
  background: rgba(246, 242, 236, 0.08);
}

.substack-featured {
  padding: 2rem;
  border: 1px solid rgba(246, 242, 236, 0.25);
  background: rgba(246, 242, 236, 0.06);
}

.substack-featured__label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  margin: 0 0 1rem;
  opacity: 0.75;
}

.substack-featured__title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.25;
  font-weight: 700;
}

.substack-featured__title a {
  color: var(--cream);
  text-decoration: none;
}

.substack-featured__title a:hover {
  text-decoration: underline;
}

.substack-featured__teaser {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.85;
}

.substack-featured__link {
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
}

.substack-featured__link:hover {
  text-decoration: underline;
}

/* the relaxation era — Spotify spotlight */
.relaxation-era {
  background: var(--text);
  color: var(--cream);
}

.relaxation-era__grid {
  display: grid;
  grid-template-columns: minmax(260px, 38%) 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.relaxation-era__cover {
  width: 100%;
  max-width: 320px;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.relaxation-era__title {
  font-family: var(--mono);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  letter-spacing: 0.04em;
  text-transform: lowercase;
  margin: 1.25rem 0 0.35rem;
}

.relaxation-era__subtitle {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  opacity: 0.72;
  margin: 0 0 1.25rem;
}

.relaxation-era__desc {
  font-size: 0.98rem;
  line-height: 1.65;
  opacity: 0.9;
  max-width: 36ch;
}

.relaxation-era__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  list-style: none;
}

.relaxation-era__tags li {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(246, 242, 236, 0.28);
  border-radius: 999px;
  opacity: 0.85;
}

.relaxation-era__tags li::before {
  content: none;
}

.relaxation-era__player {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.relaxation-era__embed {
  border: 0;
  border-radius: 12px;
  min-height: 352px;
}

.relaxation-era__placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  min-height: 280px;
  padding: 2rem;
  border: 1px dashed rgba(246, 242, 236, 0.35);
  border-radius: 12px;
  background: rgba(246, 242, 236, 0.05);
}

.relaxation-era__placeholder-title {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  opacity: 0.75;
}

.relaxation-era__placeholder-text {
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.85;
}

.relaxation-era__admin-notice {
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.5;
  opacity: 0.7;
  margin-top: 0.5rem;
}

.relaxation-era__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.relaxation-era .btn--dark {
  background: var(--cream);
  color: var(--text);
  border-color: var(--cream);
}

.relaxation-era .btn--dark:hover {
  background: var(--white);
  border-color: var(--white);
}

.relaxation-era .btn--outline {
  border-color: rgba(246, 242, 236, 0.55);
  color: var(--cream);
}

.relaxation-era .btn--outline:hover {
  border-color: var(--cream);
  background: rgba(246, 242, 236, 0.08);
}

.substack-more {
  list-style: none;
  margin: 2rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(246, 242, 236, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.substack-more a {
  color: var(--cream);
  opacity: 0.85;
  font-size: 0.92rem;
  text-decoration: none;
}

.substack-more a:hover {
  opacity: 1;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .substack-spotlight__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.testimonial-card {
  margin: 0;
}

.testimonial-card__media {
  aspect-ratio: 4/3;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
}

.testimonial-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__media span {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 1rem;
  text-align: center;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.testimonial-card blockquote p {
  margin: 0;
}

@media (max-width: 900px) {
  .media-split,
  .media-split--reverse {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .visual-band img {
    height: 280px;
  }
}

/* v1.6 — hero split, episode, slider, social, legal footer */
.hero-clean--split {
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.hero-clean__grid {
  display: grid;
  grid-template-columns: minmax(260px, 42%) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-clean__photo img {
  width: 100%;
  max-height: 620px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(8%);
}

.episode-split {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.episode-split__cover img {
  width: 100%;
  max-width: 280px;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.episode-split__show {
  font-family: var(--mono);
  font-size: 0.85rem;
  margin-top: 1rem;
  text-transform: lowercase;
}

.episode-split__meta {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.testimonial-slider {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.testimonial-slider:active {
  cursor: grabbing;
}

.testimonial-slider__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding-bottom: 0.5rem;
}

.testimonial-card {
  flex: 0 0 min(340px, 85vw);
  margin: 0;
  border: 1px solid var(--border);
  background: var(--white);
}

.testimonial-card--photo img {
  width: 100%;
  height: auto;
  display: block;
}

.testimonial-card--quote {
  background: var(--text);
  color: var(--white);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
}

.testimonial-card--quote blockquote {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.65;
}

.testimonial-card--quote figcaption {
  font-size: 0.78rem;
  opacity: 0.75;
}

.testimonial-card figcaption {
  padding: 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
  border-top: 1px solid var(--border);
}

.testimonial-card--video video {
  width: 100%;
  display: block;
  background: #000;
}

.follow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 1rem;
}

.follow-col__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.follow-col__head h3 {
  font-size: 1.1rem;
  font-weight: 800;
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.68rem;
}

.follow-col__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.follow-col__item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
}

.follow-col__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.follow-col__item--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  padding: 0.5rem;
}

.substack-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.substack-list li {
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}

.substack-list a {
  font-size: 0.95rem;
  line-height: 1.45;
}

.substack-list a:hover {
  text-decoration: underline;
}

.follow-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.footer--legal {
  background: var(--text);
  color: var(--white);
  padding: 2.5rem 0 3rem;
  margin-top: 0;
  clear: both;
}

.footer-legal__top {
  margin-bottom: 1.25rem;
}

.footer-legal__top a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-legal__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-bottom: 1.5rem;
}

.footer-legal__nav a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-legal__nav a:hover {
  text-decoration: underline;
}

.footer-legal__copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
}

.legal-content {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.legal-content__h {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 2rem 0 0.75rem;
}

.modules--landing .module--bonus {
  grid-column: 1 / -1;
  background: var(--cream);
}

.module-list {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.module-list__items {
  columns: 2;
  column-gap: 2.5rem;
  padding-left: 1.25rem;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.module-list__items li {
  margin-bottom: 0.65rem;
  break-inside: avoid;
}

.module-list__bonus {
  font-weight: 600;
}

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

@media (max-width: 900px) {
  .hero-clean__grid,
  .episode-split,
  .follow-grid,
  .social-links,
  .relaxation-era__grid {
    grid-template-columns: 1fr;
  }

  .module-list__items {
    columns: 1;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-clean__photo {
    max-width: 320px;
  }

  .episode-split__cover img {
    max-width: 200px;
  }

  .relaxation-era__cover {
    max-width: 220px;
  }
}
