/* =========================================
   QUIET POWER — APPLE DESIGN SYSTEM (2026)
   ========================================= */

:root {
  /* Apple Neutral Palette */
  --bg: #f5f5f7;
  --surface: #ffffff;
  --surface-transparent: rgba(255, 255, 255, 0.72);
  --text: #1d1d1f;        /* Apple Jet Black */
  --muted: #86868b;       /* Apple Secondary Gray */
  --line: #d2d2d7;        /* Subtle separator */
  --accent: #000000;      /* High contrast focus */
  --radius-lg: 22px;
  --radius-sm: 12px;
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.04);
  --max-content: 720px;   /* Ideal para leitura focada */
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0 auto;
  max-width: 720px;
  background-color: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.home-classic-body {
  max-width: none;
  margin: 0;
  background:
    radial-gradient(circle at top center, rgba(121, 165, 173, 0.16), transparent 26%),
    radial-gradient(circle at bottom right, rgba(77, 114, 122, 0.18), transparent 30%),
    linear-gradient(180deg, #17353d 0%, #21434c 46%, #1a3b43 100%);
  color: #eadfcd;
  font-family: Georgia, "Times New Roman", serif;
}

.home-classic {
  max-width: 820px;
  margin: 28px auto 0;
  padding: 30px 26px 52px;
  line-height: 1.5;
  background: rgba(244, 238, 226, 0.92);
  border: 1px solid rgba(233, 222, 198, 0.24);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(8, 21, 25, 0.32);
}

.home-classic-header {
  text-align: center;
  padding: 18px 0 22px;
  border-bottom: 1px solid rgba(94, 81, 64, 0.14);
}

.home-classic-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.home-classic-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: block;
  border: 1px solid rgba(94, 81, 64, 0.2);
  box-shadow: 0 8px 18px rgba(55, 42, 29, 0.12);
  object-fit: cover;
}

.home-classic-header h1 {
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 700;
  color: #5c4f3f;
  margin-bottom: 0;
  line-height: 1.2;
}

.home-classic-header p {
  margin: 0 0 8px;
}

.home-classic-header a {
  color: #4b4136;
  text-decoration: underline;
}

.home-classic-domain {
  margin-top: 10px;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.home-classic-domain a {
  color: #6d6154;
  text-decoration: none;
  border-bottom: 1px solid rgba(109, 97, 84, 0.34);
}

.home-classic-domain a:hover {
  color: #43382d;
  border-color: currentColor;
  opacity: 1;
}

.social-strip {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.social-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  background: rgba(255, 250, 240, 0.58);
  color: #4f4438;
  border: 1px solid rgba(94, 81, 64, 0.16);
  box-shadow: 0 8px 18px rgba(60, 47, 34, 0.05);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.social-strip a:hover {
  transform: translateY(-1px);
  background: rgba(255, 250, 240, 0.82);
  color: #2f261d;
  border-color: rgba(94, 81, 64, 0.3);
  opacity: 1;
}

.social-strip--home {
  margin-top: 16px;
}

.home-classic-intro {
  margin-top: 20px;
  font-size: 1.28rem;
  line-height: 1.32;
  font-weight: 600;
  color: #362e27;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-wrap: balance;
}

.subline {
  font-size: 0.9rem;
  color: #7f7465;
  margin-top: 6px;
}

.home-classic-nav {
  margin-top: 38px;
  padding: 8px 12px;
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  background: rgba(255, 250, 240, 0.18);
  border-top: 1px solid rgba(94, 81, 64, 0.16);
  border-bottom: 1px solid rgba(94, 81, 64, 0.12);
}

.home-classic-nav a {
  color: #4f4438;
  font-size: 0.98rem;
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 0;
  background: transparent;
  border: 0;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-classic-nav a:hover {
  color: #2f261d;
  background: rgba(255, 250, 240, 0.36);
  box-shadow: 0 6px 12px rgba(60, 47, 34, 0.04);
  opacity: 1;
}

.home-classic-separator {
  color: rgba(94, 81, 64, 0.42);
  padding: 9px 4px;
}

.home-classic section {
  margin-top: 64px;
}

.home-book-feature {
  margin-top: 52px;
}

.home-section-label {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #4a4034;
}

.home-book-feature h2 {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1;
  margin-bottom: 8px;
  color: #2f251c;
}

.home-book-tagline {
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: #55483a;
}

.home-book-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 18px;
}

.home-book-cover-card {
  display: block;
  text-decoration: none;
}

.home-book-cover-stage {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  padding: 28px 24px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.58), transparent 28%),
    linear-gradient(180deg, rgba(239, 230, 213, 0.98) 0%, rgba(226, 212, 191, 0.94) 100%);
  border: 1px solid rgba(125, 106, 77, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 18px 34px rgba(48, 36, 25, 0.14);
}

.home-book-cover-image {
  width: 100%;
  max-width: 250px;
  display: block;
  border-radius: 6px;
  transform: perspective(1200px) rotateY(-14deg) rotateX(2deg);
  transform-origin: center left;
  box-shadow:
    -14px 16px 28px rgba(58, 44, 30, 0.12),
    22px 24px 38px rgba(55, 42, 29, 0.24);
}

.home-book-summary h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #3f3327;
}

.home-book-summary p {
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 14px;
  color: #342c25;
}

.home-book-summary .btn-secondary {
  margin-left: 10px;
}

.btn-primary {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 22px;
  background: #f1e5cd;
  color: #2f261e;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  border: 1px solid rgba(92, 76, 58, 0.34);
  box-shadow: 0 2px 0 rgba(61, 47, 30, 0.08);
}

.home-essay-actions .btn-primary {
  background: #3c4038;
  color: #f7f0e2;
  border-color: rgba(41, 45, 39, 0.42);
  box-shadow: 0 8px 16px rgba(37, 33, 27, 0.14);
}

.home-essay-actions .btn-primary:hover {
  background: #30342d;
  color: #fff8eb;
}

.btn-primary:hover {
  background: #f7edd9;
  color: #251d16;
  opacity: 1;
}

.btn-secondary {
  display: inline-block;
  margin-top: 10px;
  color: #40352b;
  text-decoration: underline;
  font-size: 0.9rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

.btn-secondary:hover {
  color: #2d241c;
  opacity: 1;
}

.micro-decision {
  font-size: 0.85rem;
  color: #777;
  margin-top: 10px;
  margin-bottom: 0;
}

.home-shop-btn {
  display: inline-block;
  min-width: 172px;
  padding: 10px 18px;
  border: 1px solid rgba(107, 89, 67, 0.34);
  border-radius: 6px;
  background: rgba(241, 229, 205, 0.92);
  color: #3b3024;
  text-align: center;
  text-decoration: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  font-weight: 600;
  box-shadow: 0 2px 0 rgba(61, 47, 30, 0.08);
}

.home-shop-btn:hover {
  background: rgba(247, 237, 217, 0.98);
  color: #2c241b;
  opacity: 1;
}

.home-essays p,
.home-essays a {
  color: #3c342a;
  font-size: 1rem;
}

.home-essays h2,
.home-products h2 {
  line-height: 1.2;
  color: #2f251c;
}

.home-essay-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
  gap: 20px;
  align-items: center;
  margin-top: 14px;
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(255, 250, 240, 0.62);
  border: 1px solid rgba(125, 106, 77, 0.16);
  box-shadow: 0 12px 24px rgba(94, 76, 47, 0.08);
}

.home-game-card {
  background:
    radial-gradient(circle at top left, rgba(125, 211, 168, 0.18), transparent 28%),
    rgba(255, 250, 240, 0.64);
}

.home-essay-card h2 {
  margin-bottom: 8px;
}

.home-essay-card p {
  margin: 0;
  color: #473b2f;
}

.home-essay-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-essay-actions .btn-secondary {
  margin-top: 12px;
}

.home-essays .btn-secondary {
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid rgba(79, 68, 56, 0.32);
}

.home-essays .btn-secondary:hover {
  color: #241c15;
  border-color: currentColor;
  opacity: 1;
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-product-card,
.product-card {
  padding: 8px;
  border: 1px solid rgba(125, 106, 77, 0.22);
  border-radius: 10px;
  background: rgba(255, 250, 240, 0.9);
  box-shadow: 0 10px 20px rgba(94, 76, 47, 0.08);
  margin-top: 20px;
}

.home-product-card img,
.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin-bottom: 10px;
}

.home-product-card h3 {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 4px;
  color: #3d3226;
  min-height: 2.4em;
}

.home-product-card p {
  margin-bottom: 10px;
  color: #554839;
}

.home-product-card .home-shop-btn,
.product-card a {
  width: 100%;
  min-width: 0;
  padding: 8px 12px;
  display: inline-block;
  margin-top: 8px;
}

.home-classic-footer {
  padding: 18px 24px 36px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(236, 223, 205, 0.72);
}

.home-classic-footer-signature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.home-classic-footer-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(236, 223, 205, 0.26);
}

.home-classic-footer .social-strip a {
  background: rgba(255, 248, 236, 0.08);
  color: #eadfcd;
  border-color: rgba(236, 223, 205, 0.18);
  box-shadow: none;
}

.home-classic-footer .social-strip a:hover {
  background: rgba(255, 248, 236, 0.16);
  color: #fff5e8;
  border-color: rgba(236, 223, 205, 0.34);
}

.monastery-body {
  max-width: none;
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(123, 151, 178, 0.28), transparent 24%),
    radial-gradient(circle at top left, rgba(183, 201, 218, 0.2), transparent 30%),
    radial-gradient(circle at top, rgba(214, 198, 166, 0.12), transparent 34%),
    linear-gradient(180deg, #f4f0ea 0%, #e2eaef 100%);
  color: #2e2a25;
  font-family: "Times New Roman", Georgia, serif;
}

.monastery-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 36px 24px 80px;
}

.monastery-header,
.monastery-hero,
.monastery-paths,
.monastery-feature-strip,
.monastery-footer {
  margin-top: 96px;
}

.monastery-header {
  margin-top: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(76, 63, 46, 0.1);
}

.monastery-kicker,
.monastery-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: #6f725c;
  margin-bottom: 12px;
}

.monastery-header h1,
.monastery-hero h2 {
  color: #231d17;
  line-height: 1.05;
}

.monastery-header h1 {
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  max-width: 700px;
}

.monastery-intro {
  max-width: 480px;
  margin-top: 18px;
  color: #5c5043;
  font-size: 1.1rem;
  line-height: 1.55;
}

.monastery-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 34px;
}

.monastery-nav a,
.monastery-path-card a,
.monastery-feature-panel a,
.monastery-footer-links a {
  color: #4e4337;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.monastery-nav a {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.monastery-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(111, 114, 92, 0.6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.monastery-nav a:hover,
.monastery-path-card a:hover,
.monastery-feature-panel a:hover,
.monastery-footer-links a:hover {
  color: #1f1914;
  border-color: currentColor;
  opacity: 1;
}

.monastery-nav a:hover {
  color: #1f1914;
}

.monastery-nav a:hover::after {
  transform: scaleX(1);
}

.monastery-hero {
  max-width: 620px;
}

.monastery-hero h2 {
  font-size: clamp(2.5rem, 4.8vw, 3.9rem);
  margin-bottom: 16px;
}

.monastery-hero-text,
.monastery-note,
.monastery-path-card p,
.monastery-feature-panel p {
  color: #5f5448;
  line-height: 1.6;
}

.monastery-hero-text,
.monastery-path-card p,
.monastery-feature-panel p {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.24);
}

.monastery-note {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.24);
}

.monastery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.monastery-actions-tight {
  margin-top: 18px;
}

.monastery-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.monastery-path-card {
  padding: 22px;
  border: 1px solid rgba(76, 63, 46, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 4px 12px rgba(73, 59, 43, 0.03);
}

.monastery-path-card-primary {
  background:
    radial-gradient(circle at top right, rgba(124, 151, 176, 0.26), transparent 34%),
    radial-gradient(circle at bottom left, rgba(205, 190, 160, 0.1), transparent 40%),
    rgba(245, 247, 247, 0.88);
}

.monastery-path-card h3,
.monastery-feature-panel h3 {
  color: #231d17;
  font-size: 1.48rem;
  margin-bottom: 10px;
}

.monastery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  font-size: 0.92rem;
}

.monastery-btn-primary {
  background: #35382c;
  color: #f7f2e8;
}

.monastery-btn-primary:hover {
  background: #424638;
  color: #fffaf2;
  opacity: 1;
}

.monastery-btn-secondary {
  color: #4e4337;
  border: 1px solid rgba(111, 114, 92, 0.18);
  background: rgba(255, 255, 255, 0.56);
}

.monastery-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.82);
  opacity: 1;
}

.monastery-feature-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.monastery-feature-panel {
  padding: 20px;
  min-height: 100%;
  border: 1px solid rgba(76, 63, 46, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 4px 12px rgba(73, 59, 43, 0.03);
}

.monastery-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 16px;
}

.monastery-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(111, 114, 92, 0.14);
  color: #5b584d;
  font-size: 0.82rem;
}

.monastery-footer {
  padding-top: 26px;
  border-top: 1px solid rgba(76, 63, 46, 0.1);
}

.monastery-footer p {
  color: #85745f;
  margin-bottom: 14px;
}

.monastery-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.monastery-subpage {
  max-width: none;
  margin: 0;
  background:
    radial-gradient(circle at top center, rgba(121, 165, 173, 0.16), transparent 26%),
    radial-gradient(circle at bottom right, rgba(77, 114, 122, 0.18), transparent 30%),
    linear-gradient(180deg, #17353d 0%, #21434c 46%, #1a3b43 100%);
  color: #eadfcd;
  font-family: "Times New Roman", Georgia, serif;
}

.monastery-subpage .site-header {
  position: relative;
  top: auto;
  z-index: 1;
  width: min(980px, calc(100% - 48px));
  margin: 28px auto 0;
  padding: 18px 24px 20px;
  background: rgba(244, 238, 226, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(233, 222, 198, 0.24);
  border-radius: 18px 18px 0 0;
  border-bottom: 0;
  box-shadow: 0 24px 60px rgba(8, 21, 25, 0.32);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.monastery-subpage .site-header--pill {
  border-radius: 24px;
  border-bottom: 1px solid rgba(233, 222, 198, 0.24);
  margin-bottom: 18px;
}

.monastery-subpage .branding-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.monastery-subpage .site-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(94, 81, 64, 0.12);
  box-shadow: 0 6px 14px rgba(60, 47, 34, 0.08);
}

.monastery-subpage .branding-title {
  color: #231d17;
  font-size: 1rem;
}

.monastery-subpage .branding-subtitle {
  display: block;
  color: #6b6358;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.monastery-subpage .site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 8px 12px;
  background: rgba(255, 250, 240, 0.18);
  border-top: 1px solid rgba(94, 81, 64, 0.16);
  border-bottom: 1px solid rgba(94, 81, 64, 0.12);
}

.monastery-subpage .site-nav a {
  color: #5a4d40;
  font-size: 0.92rem;
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 0;
  background: transparent;
  border: 0;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.monastery-subpage .site-nav a:hover,
.monastery-subpage .site-nav a:focus-visible,
.monastery-subpage .site-nav a.active {
  color: #1f1914;
  background: rgba(255, 250, 240, 0.36);
  box-shadow: 0 6px 12px rgba(60, 47, 34, 0.04);
  opacity: 1;
}

.monastery-subpage .page-main,
.monastery-subpage .page,
.monastery-subpage main:not(.monastery-page):not(.knowledge-page):not(.editorial-page):not(.premium-page):not(.home-classic) {
  max-width: 980px;
  margin: 0 auto 0;
  padding: 28px 24px 72px;
  background: rgba(244, 238, 226, 0.92);
  border: 1px solid rgba(233, 222, 198, 0.24);
  border-top: 0;
  border-radius: 18px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0 24px 60px rgba(8, 21, 25, 0.32);
}

.monastery-subpage .page-intro,
.monastery-subpage .page-hero-intro {
  max-width: 980px;
  margin: 0 auto 0;
  padding: 30px 28px 10px;
  text-align: center;
  background: rgba(244, 238, 226, 0.92);
  border: 1px solid rgba(233, 222, 198, 0.24);
  border-bottom: 0;
  border-top: 0;
  border-radius: 0;
  box-shadow: 0 24px 60px rgba(8, 21, 25, 0.32);
}

.monastery-subpage .page-intro--about {
  margin-top: 0;
  border-top: 1px solid rgba(233, 222, 198, 0.24);
  border-bottom: 1px solid rgba(233, 222, 198, 0.24);
  border-radius: 24px;
  padding: 34px 28px 28px;
}

.monastery-subpage .page-intro--panel {
  margin-top: 0;
  border-top: 1px solid rgba(233, 222, 198, 0.24);
  border-bottom: 1px solid rgba(233, 222, 198, 0.24);
  border-radius: 24px;
  padding: 34px 28px 28px;
}

.monastery-subpage .page-intro--library {
  background:
    radial-gradient(circle at top left, rgba(144, 183, 190, 0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(35, 71, 80, 0.12), transparent 34%),
    rgba(244, 238, 226, 0.92);
}

.monastery-subpage .books-page-main {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding-top: 0;
}

.monastery-subpage .thoughts-page-main {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding-top: 0;
}

.shop-shelf,
.about-shelf {
  background:
    radial-gradient(circle at left center, rgba(72, 112, 121, 0.22), transparent 30%),
    radial-gradient(circle at right top, rgba(119, 156, 164, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(28, 61, 69, 0.18) 0%, rgba(28, 61, 69, 0.08) 100%);
  border-radius: 24px;
}

.shop-shelf {
  padding: 16px;
  margin-bottom: 2.5rem;
}

.about-shelf {
  padding: 18px;
  margin-bottom: 28px;
}

.about-shelf--thin {
  margin-bottom: 0;
}

.monastery-subpage .shop-page-main,
.monastery-subpage .about-page-main {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding-top: 0;
}

.monastery-subpage .page-kicker {
  color: #6f725c;
}

.monastery-subpage .page-title,
.monastery-subpage .page-hero-intro h1,
.monastery-subpage .page-intro h1 {
  color: #231d17;
}

.monastery-subpage .page-text,
.monastery-subpage .page-subtitle,
.monastery-subpage .page-hero-intro p {
  color: #5f5448;
}

.monastery-subpage .page-text,
.monastery-subpage .page-subtitle,
.monastery-subpage .page-intro .decision-line,
.monastery-subpage .page-hero-intro p,
.library-feature p,
.library-section-head p {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.32);
}

.monastery-subpage .page-text,
.monastery-subpage .page-subtitle,
.monastery-subpage .page-hero-intro p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.monastery-subpage .page-intro .page-subtitle {
  max-width: 620px;
  margin-top: 14px;
}

.monastery-subpage .page-section p,
.monastery-subpage .page-section li,
.monastery-subpage p,
.monastery-subpage li {
  color: #5f5448;
}

.monastery-subpage .page-section h1,
.monastery-subpage .page-section h2,
.monastery-subpage .page-section h3,
.monastery-subpage h1,
.monastery-subpage h2,
.monastery-subpage h3,
.monastery-subpage h4 {
  color: #231d17;
}

.monastery-subpage .idea-card,
.monastery-subpage .product-card,
.monastery-subpage .book-card,
.monastery-subpage .about-text,
.monastery-subpage .about-card,
.monastery-subpage .contact-copy,
.monastery-subpage .contact-form-wrap,
.monastery-subpage .qp-assessment-cta,
.monastery-subpage .qp-question-card,
.monastery-subpage .result,
.monastery-subpage .intro,
.monastery-subpage .qp-teaser-card,
.monastery-subpage .page-footer-note {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(76, 63, 46, 0.08);
  box-shadow: none;
}

.monastery-subpage .idea-card {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(76, 63, 46, 0.12);
}

.monastery-subpage .idea-card,
.monastery-subpage .book-card,
.monastery-subpage .about-text,
.monastery-subpage .about-card,
.monastery-subpage .contact-copy,
.monastery-subpage .contact-form-wrap,
.monastery-subpage .page-footer-note {
  color: #5f5448;
}

.monastery-subpage .product-card,
.monastery-subpage .book-card,
.monastery-subpage .about-card,
.monastery-subpage .about-card {
  border-radius: 12px;
}

.monastery-subpage .idea-preview,
.monastery-subpage .product-description,
.monastery-subpage .book-card p,
.monastery-subpage .about-card p,
.monastery-subpage .contact-copy p,
.monastery-subpage .contact-copy li {
  color: #5f5448;
}

.monastery-subpage .idea-preview {
  color: #4f4338;
}

.monastery-subpage .idea-title {
  color: #231d17;
}

.monastery-subpage .idea-toggle {
  color: #3d3329;
}

.monastery-subpage .idea-full {
  border-top: 1px solid rgba(76, 63, 46, 0.12);
  color: #4e4338;
}

.monastery-subpage .idea-full p {
  color: #4e4338;
}

.monastery-subpage input,
.monastery-subpage textarea {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(76, 63, 46, 0.14);
  color: #231d17;
}

.monastery-subpage label {
  color: #4e4337;
}

.monastery-subpage .btn-primary,
.monastery-subpage .btn,
.monastery-subpage .contact-submit,
.monastery-subpage .start-btn {
  background: #35382c;
  color: #f7f2e8;
}

.monastery-subpage .btn-primary:hover,
.monastery-subpage .btn:hover,
.monastery-subpage .contact-submit:hover,
.monastery-subpage .start-btn:hover {
  background: #424638;
  color: #fffaf2;
  opacity: 1;
}

.monastery-subpage .btn-secondary,
.monastery-subpage .knowledge-link,
.monastery-subpage .result-cta .secondary {
  color: #4e4337;
  border-color: rgba(111, 114, 92, 0.18);
}

.monastery-subpage .btn-secondary:hover {
  color: #231d17;
  opacity: 1;
}

.monastery-subpage .site-footer {
  margin-top: 56px;
  padding: 28px 24px 40px;
  text-align: center;
  border-top: 1px solid rgba(76, 63, 46, 0.12);
  background: transparent;
}

.monastery-subpage .site-footer p,
.monastery-subpage .site-footer a {
  color: #85745f;
}

.monastery-subpage .site-footer a:hover {
  color: #231d17;
  opacity: 1;
}

.monastery-subpage .social-strip {
  justify-content: center;
}

.monastery-subpage .social-strip a {
  background: rgba(255, 255, 255, 0.78);
  color: #2f2a24;
  border-color: rgba(82, 70, 54, 0.12);
}

.monastery-subpage .social-strip a:hover {
  background: rgba(255, 255, 255, 0.96);
  color: #171410;
  border-color: rgba(82, 70, 54, 0.26);
}

.monastery-subpage .qp-book-main {
  max-width: 980px;
  margin: 18px auto 0;
  padding: 0 24px 72px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.monastery-subpage .qp-feature-grid {
  display: grid;
  grid-template-columns: minmax(200px, 0.7fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}

.monastery-subpage .qp-feature-cover img {
  width: 100%;
  max-width: 240px;
  display: block;
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(73, 59, 43, 0.08);
}

.monastery-subpage .qp-feature-copy p {
  margin-top: 0;
}

.monastery-subpage .qp-feature-copy h2 {
  margin: 0 0 14px;
}

.monastery-subpage .qp-intro-pill {
  max-width: 720px;
  margin: 0 auto;
  padding: 26px 24px 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(246, 241, 231, 0.94) 0%, rgba(241, 235, 224, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(13, 27, 31, 0.08);
}

.monastery-subpage .qp-intro-pill .page-kicker,
.monastery-subpage .qp-intro-pill .page-title,
.monastery-subpage .qp-intro-pill .page-text,
.monastery-subpage .qp-intro-pill .page-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.monastery-subpage .qp-intro-pill .page-text,
.monastery-subpage .qp-intro-pill .page-subtitle {
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}

.monastery-subpage .qp-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.monastery-subpage .qp-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.monastery-subpage .qp-summary-panel {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(246, 241, 231, 0.94) 0%, rgba(241, 235, 224, 0.9) 100%);
  box-shadow: 0 10px 24px rgba(13, 27, 31, 0.08);
}

.monastery-subpage .qp-bundle-panel {
  margin-top: 28px;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(246, 241, 231, 0.94) 0%, rgba(241, 235, 224, 0.9) 100%);
  box-shadow: 0 10px 24px rgba(13, 27, 31, 0.08);
}

.monastery-subpage .qp-bundle-panel p {
  max-width: 660px;
}

.monastery-subpage .qp-bundle-panel .cta-main {
  margin-top: 18px;
}

.monastery-subpage .qp-summary-panel h2 + ul {
  margin-top: 14px;
}

.monastery-subpage .qp-summary-panel h2:not(:first-child) {
  margin-top: 24px;
}

.monastery-subpage .qp-summary-panel ul {
  padding-left: 1.1rem;
  line-height: 1.9;
}

.monastery-subpage .qp-section-head {
  max-width: 640px;
  margin-bottom: 18px;
}

.monastery-subpage .qp-section-head h2 {
  margin: 0 0 10px;
}

.monastery-subpage .qp-workbooks-panel {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(246, 241, 231, 0.94) 0%, rgba(241, 235, 224, 0.9) 100%);
  box-shadow: 0 10px 24px rgba(13, 27, 31, 0.08);
}

.monastery-subpage .qp-summary-note {
  margin-top: 14px;
  color: #85745f;
}

.monastery-subpage .qp-hero-copy .page-kicker {
  margin-bottom: 10px;
}

.monastery-subpage .final-cta.small,
.monastery-subpage .final-cta .small {
  color: #85745f;
}

.monastery-subpage .ideas-grid {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 40px;
}

.monastery-subpage .about-body {
  max-width: 980px;
  margin: 18px auto 0;
  padding: 0 24px 80px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.monastery-subpage .about-closing {
  border-top-color: rgba(76, 63, 46, 0.12);
}

.monastery-subpage .about-closing p {
  color: #231d17;
}

.monastery-subpage .about-card a {
  color: #231d17;
}

.monastery-subpage .products-grid,
.monastery-subpage .contact-body {
  max-width: 980px;
  margin: 0 auto 0;
  padding: 0 24px 48px;
}

.monastery-subpage .products-grid.shop-shelf {
  padding: 18px 14px;
}

.monastery-subpage .products-grid.shop-shelf {
  max-width: 920px;
  gap: 22px;
  padding: 16px;
}

.monastery-subpage .contact-body,
.monastery-subpage .thought-article-shell {
  max-width: 980px;
  background: rgba(244, 238, 226, 0.92);
  border: 1px solid rgba(233, 222, 198, 0.24);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 24px 60px rgba(8, 21, 25, 0.32);
}

.monastery-subpage .contact-closing,
.monastery-subpage .page-footer-note {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.monastery-subpage .shop-footer-note {
  max-width: 760px;
  padding-bottom: 24px;
}

.monastery-subpage .page-hero-intro .page-kicker {
  display: block;
  margin-bottom: 12px;
}

.monastery-subpage .contact-closing {
  padding-top: 18px;
}

.monastery-subpage .contact-closing p {
  color: #231d17;
}

@media (max-width: 768px) {
  .monastery-subpage .site-header {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    width: calc(100% - 24px);
    margin-top: 18px;
  }

  .monastery-subpage .site-header--pill {
    margin-bottom: 14px;
  }

  .monastery-subpage .site-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 10px;
  }

  .monastery-subpage .page-main,
  .monastery-subpage .page,
  .monastery-subpage main:not(.monastery-page):not(.knowledge-page):not(.editorial-page):not(.premium-page):not(.home-classic) {
    padding: 24px 18px 64px;
  }

  .monastery-subpage .page-intro,
  .monastery-subpage .page-hero-intro {
    margin-top: 0;
    padding: 24px 18px 8px;
  }

  .monastery-subpage .page-intro--about,
  .monastery-subpage .page-intro--panel {
    margin-top: 0;
    padding: 28px 18px 22px;
  }
}

.editorial-body {
  max-width: none;
  margin: 0;
  background: #f7f3eb;
  color: #201b16;
  font-family: Georgia, "Times New Roman", serif;
}

.editorial-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 36px 28px 72px;
}

.editorial-header,
.editorial-feature,
.editorial-columns,
.editorial-shop,
.editorial-footer {
  margin-top: 64px;
}

.editorial-header {
  margin-top: 12px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(32, 27, 22, 0.12);
}

.editorial-kicker,
.editorial-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: #897c6b;
  margin-bottom: 12px;
}

.editorial-header h1 {
  max-width: 720px;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1.04;
  color: #241d16;
}

.editorial-intro {
  max-width: 560px;
  margin-top: 20px;
  color: #5e5448;
  font-size: 1.16rem;
  line-height: 1.65;
}

.editorial-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

.editorial-nav a,
.editorial-column a,
.editorial-shop-head a,
.editorial-footer-links a {
  color: #372f26;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.editorial-nav a:hover,
.editorial-column a:hover,
.editorial-shop-head a:hover,
.editorial-footer-links a:hover {
  border-color: currentColor;
  opacity: 1;
}

.editorial-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 40px;
  align-items: center;
}

.editorial-feature-copy h2 {
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  line-height: 1.02;
  color: #231c15;
  margin-bottom: 8px;
}

.editorial-subtitle {
  color: #756857;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.editorial-feature-copy p {
  max-width: 520px;
  line-height: 1.7;
  color: #4d443a;
}

.editorial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.editorial-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  font-size: 0.95rem;
}

.editorial-btn-primary {
  background: #201b16;
  color: #f7f3eb;
}

.editorial-btn-primary:hover {
  background: #111;
  opacity: 1;
}

.editorial-btn-secondary {
  color: #201b16;
  border: 1px solid rgba(32, 27, 22, 0.16);
}

.editorial-btn-secondary:hover {
  background: rgba(32, 27, 22, 0.04);
  opacity: 1;
}

.editorial-feature-cover img {
  width: 100%;
  max-width: 280px;
  display: block;
  margin-left: auto;
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(44, 35, 25, 0.16);
}

.editorial-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.editorial-column {
  padding-top: 24px;
  border-top: 1px solid rgba(32, 27, 22, 0.12);
}

.editorial-column h3,
.editorial-card h3 {
  font-size: 1.55rem;
  color: #241d16;
  margin-bottom: 12px;
}

.editorial-column p {
  color: #52483c;
  line-height: 1.7;
  margin-bottom: 14px;
}

.editorial-shop-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
}

.editorial-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.editorial-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.editorial-footer {
  padding-top: 22px;
  border-top: 1px solid rgba(32, 27, 22, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: #6d6254;
}

.editorial-footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.premium-body {
  max-width: none;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(235, 221, 194, 0.55), transparent 26%),
    linear-gradient(180deg, #f6f1e8 0%, #efe7da 100%);
  color: #211b15;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.premium-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 28px 76px;
}

.premium-header,
.premium-hero,
.premium-test,
.premium-products,
.premium-footer {
  margin-top: 64px;
}

.premium-header {
  margin-top: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(33, 27, 21, 0.1);
}

.premium-kicker,
.premium-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: #8a7a64;
  margin-bottom: 12px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

.premium-header h1,
.premium-hero h2,
.premium-products h3 {
  color: #1f1813;
  line-height: 1;
}

.premium-header h1 {
  font-size: clamp(3.4rem, 7vw, 5.6rem);
  margin-bottom: 12px;
}

.premium-intro {
  max-width: 540px;
  color: #5f5548;
  font-size: 1.2rem;
  line-height: 1.55;
}

.premium-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

.premium-nav a,
.premium-inline-link,
.premium-footer-links a {
  color: #2a221b;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.premium-nav a:hover,
.premium-inline-link:hover,
.premium-footer-links a:hover {
  border-color: currentColor;
  opacity: 1;
}

.premium-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 42px;
  align-items: center;
}

.premium-hero h2 {
  font-size: clamp(3rem, 6vw, 4.6rem);
  margin-bottom: 10px;
}

.premium-subtitle {
  font-size: 1.2rem;
  color: #6d614f;
  margin-bottom: 18px;
}

.premium-copy {
  max-width: 520px;
  color: #50463a;
  font-size: 1.12rem;
  line-height: 1.62;
  margin-bottom: 14px;
}

.premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.premium-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.95rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

.premium-btn-primary {
  background: #181411;
  color: #f7f2e8;
  box-shadow: 0 14px 30px rgba(24, 20, 17, 0.12);
}

.premium-btn-primary:hover {
  background: #000;
  opacity: 1;
}

.premium-btn-secondary {
  color: #1f1813;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(33, 27, 21, 0.12);
}

.premium-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.72);
  opacity: 1;
}

.premium-note {
  margin-top: 14px;
  color: #7c6d5b;
  font-size: 0.92rem;
}

.premium-hero-cover img {
  width: 100%;
  max-width: 300px;
  display: block;
  margin-left: auto;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(44, 36, 28, 0.16);
}

.premium-test {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.premium-test-card,
.premium-product-card {
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(33, 27, 21, 0.08);
  box-shadow: 0 10px 30px rgba(77, 61, 42, 0.06);
}

.premium-test-card h3 {
  font-size: 2rem;
  line-height: 1.05;
  margin-bottom: 10px;
  color: #241d16;
}

.premium-test-card p {
  color: #5a5043;
  line-height: 1.65;
  margin-bottom: 16px;
}

.premium-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.premium-section-head h3 {
  font-size: 2.2rem;
}

.premium-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.premium-product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.premium-product-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.premium-product-meta h4 {
  margin: 0;
  font-size: 1.2rem;
  color: #241d16;
}

.premium-product-meta p {
  margin: 0;
  color: #6d614f;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

.premium-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(33, 27, 21, 0.1);
  color: #6a5e50;
}

.premium-footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.knowledge-body {
  max-width: none;
  margin: 0;
  background: #f3f4f1;
  color: #171917;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

.knowledge-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px 72px;
}

.knowledge-header,
.knowledge-grid,
.knowledge-stack,
.knowledge-store,
.knowledge-footer {
  margin-top: 40px;
}

.knowledge-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.knowledge-kicker,
.knowledge-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.73rem;
  color: #7b8078;
  margin-bottom: 12px;
}

.knowledge-header h1,
.knowledge-card h2,
.knowledge-card h3,
.knowledge-stack h3,
.knowledge-store h3 {
  color: #171917;
  line-height: 1.08;
}

.knowledge-header h1 {
  font-size: clamp(2.9rem, 6vw, 4.8rem);
  max-width: 640px;
}

.knowledge-intro {
  max-width: 560px;
  color: #5e645d;
  font-size: 1.05rem;
  line-height: 1.65;
  margin-top: 14px;
}

.knowledge-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.knowledge-nav a,
.knowledge-link,
.knowledge-footer-links a {
  color: #232722;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.knowledge-nav a:hover,
.knowledge-link:hover,
.knowledge-footer-links a:hover {
  border-color: currentColor;
  opacity: 1;
}

.knowledge-grid {
  display: grid;
  gap: 18px;
}

.knowledge-grid-hero {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.knowledge-grid-core {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.knowledge-grid-stack,
.knowledge-grid-store {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.knowledge-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(23, 25, 23, 0.08);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 24px rgba(26, 31, 26, 0.04);
}

.knowledge-card p {
  color: #5c625b;
  line-height: 1.65;
}

.knowledge-subtitle {
  color: #6e736c;
  margin: 8px 0 16px;
}

.knowledge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.knowledge-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
}

.knowledge-btn-primary {
  background: #171917;
  color: #f3f4f1;
}

.knowledge-btn-primary:hover {
  background: #000;
  opacity: 1;
}

.knowledge-btn-secondary {
  background: #ecefea;
  color: #171917;
}

.knowledge-btn-secondary:hover {
  background: #e4e8e2;
  opacity: 1;
}

.knowledge-card-cover {
  display: flex;
  align-items: center;
  justify-content: center;
}

.knowledge-card-cover img {
  width: 100%;
  max-width: 280px;
  display: block;
  border-radius: 14px;
  box-shadow: 0 20px 44px rgba(20, 24, 20, 0.12);
}

.knowledge-stack-head,
.knowledge-store-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.knowledge-card h4 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  color: #171917;
}

.knowledge-product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
}

.knowledge-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(23, 25, 23, 0.08);
  color: #6d726b;
}

.knowledge-footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .monastery-page {
    padding: 28px 18px 64px;
  }

  .monastery-paths,
  .monastery-feature-strip,
  .monastery-store-grid {
    grid-template-columns: 1fr;
  }

  .monastery-header h1 {
    font-size: 2.8rem;
  }

  .monastery-hero h2 {
    font-size: 2.3rem;
  }

  .monastery-nav {
    gap: 14px;
  }

  .editorial-page {
    padding: 28px 18px 64px;
  }

  .editorial-feature,
  .editorial-columns,
  .editorial-shop-grid {
    grid-template-columns: 1fr;
  }

  .editorial-header h1 {
    font-size: 2.8rem;
  }

  .editorial-feature-cover img {
    margin-left: 0;
    max-width: 220px;
  }

  .editorial-shop-head,
  .editorial-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .premium-page {
    padding: 26px 18px 64px;
  }

  .premium-header,
  .premium-hero,
  .premium-test,
  .premium-product-grid {
    grid-template-columns: 1fr;
  }

  .premium-header {
    display: block;
  }

  .premium-nav {
    justify-content: flex-start;
    margin-top: 24px;
  }

  .premium-header h1 {
    font-size: 2.9rem;
  }

  .premium-hero h2,
  .premium-section-head h3,
  .premium-test-card h3 {
    font-size: 2.3rem;
  }

  .premium-hero-cover img {
    margin-left: 0;
    max-width: 240px;
  }

  .premium-section-head,
  .premium-footer,
  .premium-product-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .home-book-grid {
    grid-template-columns: 1fr;
  }

  .home-book-cover-stage {
    min-height: auto;
    padding: 24px 18px;
  }

  .home-book-cover-image {
    max-width: 190px;
    transform: perspective(1000px) rotateY(-10deg) rotateX(1deg);
  }

  .home-product-grid {
    grid-template-columns: 1fr;
  }

  .home-essay-card {
    grid-template-columns: 1fr;
  }
}

/* Typography Hierarchy */
h1, h2, h3, h4 {
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.022em; /* Kerning da Apple */
  margin: 0;
}

h1, h2, h3 {
  letter-spacing: -0.02em;
}

a { text-decoration: none; transition: all 0.2s ease; }
a:hover { opacity: 0.7; }

/* Homepage Header */
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 18px 28px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.name {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

.tagline {
  font-size: 0.85rem;
  color: #888;
  margin-top: 2px;
  line-height: 1.3;
}

.nav {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.nav a {
  color: #555;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.nav a:hover {
  color: #000;
  opacity: 1;
}

.nav a.active {
  color: #000;
  font-weight: 600;
  border-bottom: 1px solid #000;
  padding-bottom: 3px;
}

/* Sticky Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  margin: 0 auto;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.branding-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.branding-wrap > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.branding-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.branding-subtitle { display: none; } /* Limpeza visual no header */

.site-nav {
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  border: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #444;
  padding: 0;
  min-height: auto;
  border-radius: 0;
  background: transparent;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: #000;
}

/* =========================================
   AUTHOR HUB REFRESH
   ========================================= */

:root {
  --hub-bg: #f3efe6;
  --hub-paper: rgba(255, 251, 244, 0.88);
  --hub-paper-strong: #fffdf8;
  --hub-ink: #201b17;
  --hub-muted: #6e6257;
  --hub-line: rgba(71, 56, 42, 0.14);
  --hub-accent: #315f63;
  --hub-accent-soft: #dfe9e8;
  --hub-warm: #b88b5a;
  --hub-shadow: 0 24px 80px rgba(30, 21, 15, 0.1);
  --hub-max: 1180px;
}

.author-hub-body {
  margin: 0;
  max-width: none;
  color: var(--hub-ink);
  background:
    radial-gradient(circle at top left, rgba(18, 61, 66, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(184, 139, 90, 0.08), transparent 32%),
    linear-gradient(180deg, #f6f1e8 0%, #efe7da 100%);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

.author-hub-body a {
  color: inherit;
}

.author-shell {
  width: min(calc(100% - 40px), var(--hub-max));
  margin: 24px auto;
  padding: 24px;
  background: var(--hub-paper);
  border: 1px solid var(--hub-line);
  border-radius: 28px;
  box-shadow: var(--hub-shadow);
  backdrop-filter: blur(10px);
}

.author-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hub-line);
}

.author-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.author-brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(19, 61, 66, 0.18);
}

.author-brand-name {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.author-brand-line {
  display: block;
  margin-top: 4px;
  color: var(--hub-muted);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.author-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.author-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--hub-muted);
  font-size: 0.94rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.author-nav a:hover,
.author-nav a.is-active {
  color: var(--hub-ink);
  background: rgba(19, 61, 66, 0.08);
  transform: translateY(-1px);
}

.author-main {
  display: grid;
  gap: 28px;
  padding-top: 28px;
}

.author-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: center;
}

.author-hero--compact {
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.72fr);
  gap: 8px;
  align-items: start;
}

.author-kicker {
  margin: 0 0 10px;
  color: var(--hub-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.author-display,
.author-section-title,
.author-page-title,
.author-card-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.02em;
}

.author-display {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
}

.author-hero--compact .author-display {
  max-width: 11ch;
  font-size: clamp(2.45rem, 4.6vw, 4rem);
  line-height: 0.94;
}

.author-tagline {
  margin: 18px 0 0;
  max-width: 14ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.12;
  color: #322921;
}

.author-hero--compact .author-tagline {
  max-width: 24ch;
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  line-height: 1.18;
}

.author-lede,
.author-page-intro,
.author-card-text,
.author-meta-text,
.author-list li,
.author-note {
  color: var(--hub-muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.author-lede {
  max-width: 58ch;
  margin: 16px 0 0;
}

.author-hero--compact .author-lede {
  max-width: 48ch;
  font-size: 0.95rem;
  line-height: 1.52;
}

.author-actions,
.author-social,
.author-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.author-actions {
  margin-top: 22px;
}

.author-hero--compact .author-actions {
  margin-top: 18px;
}

.author-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--hub-accent);
  border-radius: 999px;
  background: var(--hub-accent);
  color: #fcfaf4;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.author-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(49, 95, 99, 0.16);
  color: #ffffff;
}

.author-button--secondary {
  background: transparent;
  color: var(--hub-ink);
  border-color: var(--hub-line);
}

.author-button--secondary:hover {
  background: rgba(255, 255, 255, 0.6);
}

.author-button.amazon-btn,
.author-button.author-button--secondary.amazon-btn,
.author-button.buy-btn,
.author-button.author-button--secondary.buy-btn {
  background: #f7d774;
  color: #2b2112;
  border-color: rgba(181, 136, 36, 0.34);
  box-shadow: 0 6px 16px rgba(181, 136, 36, 0.12);
  border-radius: 999px;
}

.author-button.amazon-btn:hover,
.author-button.author-button--secondary.amazon-btn:hover,
.author-button.buy-btn:hover,
.author-button.author-button--secondary.buy-btn:hover {
  background: #ffdf84;
  color: #21180d;
}

.author-book-actions .author-button:not(.amazon-btn):not(.buy-btn) {
  background: transparent;
  color: var(--hub-accent);
  border-color: rgba(49, 95, 99, 0.26);
  box-shadow: none;
}

.author-book-actions .author-button:not(.amazon-btn):not(.buy-btn):hover {
  background: rgba(49, 95, 99, 0.06);
  border-color: rgba(49, 95, 99, 0.36);
  color: var(--hub-accent);
}

.author-social a {
  text-decoration: none;
  color: var(--hub-muted);
  font-size: 0.92rem;
}

.author-social a:hover {
  color: var(--hub-ink);
}

.author-hero-art {
  display: flex;
  justify-content: flex-end;
}

.author-hero--compact .author-hero-art {
  align-self: start;
  padding-top: 6px;
}

.author-hero-book-cover {
  width: min(100%, 300px);
  border-radius: 20px;
  display: block;
  border: 1px solid rgba(71, 56, 42, 0.12);
  box-shadow: 0 24px 52px rgba(44, 33, 26, 0.14);
}

.author-portrait {
  width: min(100%, 420px);
  border-radius: 28px;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(19, 61, 66, 0.14);
  box-shadow: 0 26px 60px rgba(19, 61, 66, 0.14);
}

.author-hero--compact .author-portrait {
  width: min(100%, 340px);
}

.author-grid,
.author-card-grid,
.author-feature-grid,
.author-two-column,
.author-books-grid,
.author-tools-grid,
.author-stories-grid {
  display: grid;
  gap: 18px;
}

.author-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.author-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.author-feature-grid,
.author-two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.author-feature-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.author-books-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.author-tools-grid,
.author-stories-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.author-tools-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.author-panel,
.author-card,
.author-highlight,
.author-book,
.author-tool,
.author-story,
.author-page-hero,
.author-quote {
  background: rgba(255, 252, 247, 0.82);
  border: 1px solid var(--hub-line);
  border-radius: 24px;
}

.author-panel,
.author-page-hero,
.author-quote {
  padding: 26px;
}

.author-panel--primary {
  border-color: rgba(49, 95, 99, 0.22);
  box-shadow: 0 16px 32px rgba(19, 61, 66, 0.06);
}

.author-card,
.author-highlight,
.author-book,
.author-tool,
.author-story {
  padding: 22px;
}

.author-tool {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.author-illustration-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(88, 70, 51, 0.12);
  background:
    radial-gradient(circle at top right, rgba(184, 171, 142, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 254, 250, 0.98) 0%, rgba(248, 241, 231, 0.92) 100%);
}

.author-illustration-frame img {
  width: min(100%, 440px);
  display: block;
}

.author-section-title,
.author-page-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
}

.author-page-intro {
  margin: 12px 0 0;
  max-width: 62ch;
}

.author-card-title {
  font-size: 1.5rem;
  line-height: 1.08;
}

.author-card-eyebrow,
.author-meta-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--hub-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.author-card-text,
.author-note {
  margin: 12px 0 0;
}

.author-card-meta {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
  line-height: 1.4;
}

.author-card-meta a {
  color: inherit;
  text-decoration: underline;
}

.author-card-meta a:hover {
  color: #000;
}

.author-tool-copy {
  margin-top: 12px;
}

.author-tool-copy .author-card-text {
  margin-top: 10px;
}

.author-tool-copy .author-card-text strong {
  color: var(--hub-ink);
  font-weight: 700;
}

.author-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--hub-ink);
  text-decoration: none;
  font-weight: 600;
}

.author-link:hover {
  color: var(--hub-accent);
}

.author-tool-headline {
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.28;
  color: #2c241d;
}

.author-tool-mark {
  width: min(100%, 180px);
  margin-bottom: 12px;
  display: block;
  object-fit: contain;
}

.author-meta-row {
  margin-top: 14px;
}

.author-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(19, 61, 66, 0.08);
  color: var(--hub-accent);
  font-size: 0.83rem;
  font-weight: 600;
}

.author-book-cover {
  width: 100%;
  aspect-ratio: 4 / 5.6;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(71, 56, 42, 0.12);
  box-shadow: 0 16px 36px rgba(44, 33, 26, 0.1);
}

.author-book-intro {
  padding: 8px 0 2px;
}

.author-book-intro-panel {
  padding: 34px 28px;
  text-align: center;
  background: rgba(255, 252, 247, 0.82);
  border: 1px solid var(--hub-line);
  border-radius: 28px;
}

.author-book-intro-panel .author-card-eyebrow {
  margin-bottom: 14px;
}

.author-book-intro-panel .author-page-title {
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.95;
}

.author-book-intro-tagline {
  margin: 18px auto 0;
  max-width: 20ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.1vw, 2.2rem);
  line-height: 1.12;
  color: #42382d;
}

.author-book-intro-subtitle {
  margin: 24px auto 0;
  max-width: 28ch;
  color: var(--hub-muted);
  font-size: 1.18rem;
  line-height: 1.58;
}

.author-book-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(240px, 0.7fr);
  gap: 20px;
  align-items: center;
  padding: 28px;
  background: rgba(255, 252, 247, 0.82);
  border: 1px solid var(--hub-line);
  border-radius: 24px;
}

.author-book-detail-copy {
  max-width: 34rem;
}

.author-book-detail-tagline {
  margin: 12px 0 0;
  max-width: 24ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.14;
  color: #312821;
}

.author-book-detail-cover {
  display: flex;
  justify-content: center;
}

.author-book-detail-image {
  width: min(100%, 270px);
  border-radius: 18px;
  display: block;
  border: 1px solid rgba(71, 56, 42, 0.12);
  box-shadow: 0 18px 40px rgba(44, 33, 26, 0.12);
}

.author-book-actions,
.author-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.author-book-actions--center {
  justify-content: center;
}

.author-book-chip-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.author-book-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(88, 70, 51, 0.12);
  color: #645748;
  font-size: 0.83rem;
  font-weight: 600;
}

.author-tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  margin-top: auto;
  padding-top: 20px;
}

.author-tool-secondary {
  display: inline-flex;
  margin-top: 14px;
  color: #7c7065;
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.45;
}

.author-tool-secondary:hover {
  color: var(--hub-muted);
}

.author-list {
  margin: 16px 0 0;
  padding-left: 18px;
}

.author-list li + li {
  margin-top: 8px;
}

.author-panel--excerpt {
  display: grid;
  gap: 22px;
}

.author-section-head {
  display: grid;
  gap: 10px;
}

.author-page-intro--compact {
  max-width: 56rem;
}

.author-excerpt {
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.98) 0%, rgba(248, 241, 231, 0.94) 100%);
  border: 1px solid rgba(88, 70, 51, 0.12);
}

.author-excerpt-kicker,
.author-format-label {
  margin: 0;
  color: #7d6e5e;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.author-excerpt-title,
.author-format-title {
  margin: 10px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.04;
  color: #261f19;
}

.author-excerpt-subtitle {
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #54483c;
  font-size: 1.08rem;
}

.author-excerpt-body {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.author-excerpt-body p,
.author-excerpt-note,
.author-format-copy,
.author-section-note {
  margin: 0;
  color: #4d4339;
  line-height: 1.7;
}

.author-excerpt-cta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(88, 70, 51, 0.12);
}

.author-format-stack {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.author-format-card {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(88, 70, 51, 0.12);
  background: rgba(255, 255, 255, 0.6);
}

.author-format-card--primary {
  background:
    radial-gradient(circle at top right, rgba(179, 164, 137, 0.14), transparent 34%),
    rgba(255, 252, 247, 0.88);
}

.author-format-copy {
  margin-top: 10px;
}

.author-section-note {
  margin-top: 16px;
  font-size: 0.95rem;
}

.author-book-page .author-main {
  gap: 18px;
  padding-top: 18px;
}

.author-book-page .author-book-intro {
  padding: 2px 0 0;
}

.author-book-page .author-book-intro-panel {
  padding: 26px 24px;
}

.author-book-page .author-book-intro-tagline {
  margin-top: 14px;
}

.author-book-page .author-book-intro-subtitle {
  margin-top: 18px;
}

.author-book-page .author-book-chip-row,
.author-book-page .author-book-actions,
.author-book-page .author-inline-links {
  margin-top: 14px;
}

.author-book-page .author-book-detail,
.author-book-page .author-panel,
.author-book-page .author-page-hero,
.author-book-page .author-quote {
  padding: 22px;
}

.author-book-page .author-book-detail {
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.author-book-page .author-book-detail-cover {
  justify-content: flex-start;
  align-self: start;
}

.author-book-page .author-book-detail-image {
  width: clamp(230px, 24vw, 300px);
}

.author-book-page .author-two-column,
.author-book-page .author-feature-grid {
  gap: 14px;
}

.author-book-page .author-page-intro {
  margin-top: 10px;
}

.author-book-page .author-card-eyebrow,
.author-book-page .author-meta-label {
  margin-bottom: 8px;
}

.author-book-page .author-list {
  margin-top: 12px;
}

.author-book-page .author-list li + li {
  margin-top: 6px;
}

.author-book-page .author-panel--excerpt {
  gap: 16px;
}

.author-book-page .author-excerpt {
  padding: 22px;
}

.author-book-page .author-excerpt-body {
  margin-top: 16px;
  gap: 10px;
}

.author-book-page .author-excerpt-cta {
  margin-top: 18px;
  padding-top: 16px;
}

.author-book-page .author-format-stack {
  gap: 10px;
  margin-top: 14px;
}

.author-book-page .author-format-card {
  padding: 16px;
}

.author-book-page .author-section-note {
  margin-top: 12px;
}

.author-footer {
  width: min(calc(100% - 40px), var(--hub-max));
  margin: 0 auto 28px;
  padding: 0 8px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #5e554d;
  font-size: 0.92rem;
}

.author-footer a {
  color: inherit;
  text-decoration: none;
}

.author-footer a:hover {
  color: var(--hub-ink);
}

.author-page-stack {
  display: grid;
  gap: 18px;
}

.author-tools-note {
  padding-top: 6px;
  text-align: center;
  color: #7a7067;
  font-size: 0.92rem;
}

.author-tools-note p {
  margin: 0;
}

.author-signal-panel {
  gap: 18px;
}

.author-signal-list {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.author-signal-card {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(210, 210, 215, 0.88);
  background: rgba(255, 255, 255, 0.76);
}

.author-signal-card .author-card-title {
  margin-top: 4px;
}

.author-signal-note {
  margin: 10px 0 0;
  color: #6e645b;
  line-height: 1.55;
  font-size: 0.94rem;
}

.author-home-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
}

.lead-app-hero {
  gap: 14px;
}

.lead-app-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.lead-app-status-card {
  min-width: 180px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(210, 210, 215, 0.9);
}

.lead-app-status-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #81776e;
  margin-bottom: 4px;
}

.lead-app-shell,
.lead-app-form,
.lead-app-results {
  display: grid;
  gap: 18px;
}

.lead-type-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.lead-type-option {
  position: relative;
}

.lead-type-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lead-type-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(49, 95, 99, 0.16);
  background: rgba(255, 255, 255, 0.82);
  color: var(--hub-ink);
  font-weight: 600;
  cursor: pointer;
}

.lead-type-option input:checked + span {
  background: var(--hub-accent);
  color: #fcfaf4;
  border-color: var(--hub-accent);
}

.lead-app-grid,
.lead-app-blockers {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.lead-app-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lead-app-field,
.lead-app-grid label,
.lead-app-blockers label,
.lead-app-extra-notes {
  display: grid;
  gap: 6px;
  color: #4a4139;
  font-size: 0.94rem;
  font-weight: 600;
}

.lead-app-field--full {
  grid-column: 1 / -1;
}

.lead-app-grid input,
.lead-app-grid select,
.lead-app-grid textarea,
.lead-app-extra-notes textarea {
  width: 100%;
  border: 1px solid #d7d1c8;
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: #2f2822;
  background: rgba(255, 255, 255, 0.92);
}

.lead-app-blockers {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lead-app-checkbox {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(210, 210, 215, 0.88);
  font-weight: 500;
}

.lead-app-checkbox input[type="checkbox"] {
  margin-right: 10px;
}

.lead-result-hero .author-section-title {
  font-size: clamp(1.8rem, 2.3vw, 2.4rem);
}

.lead-followup {
  margin-top: 12px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(210, 210, 215, 0.9);
  color: #5b524a;
  line-height: 1.6;
}

.lead-pro-panel {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.92) 0%, rgba(248, 244, 237, 0.94) 100%);
}

.lead-pro-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.lead-lock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(19, 61, 66, 0.08);
  color: var(--hub-accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lead-pro-login-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.lead-pro-login-form label {
  display: grid;
  gap: 6px;
  color: #4a4139;
  font-size: 0.94rem;
  font-weight: 600;
}

.lead-pro-login-form input[type="email"],
.lead-pro-login-form input[type="password"] {
  width: 100%;
  border: 1px solid #d7d1c8;
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: #2f2822;
  background: rgba(255, 255, 255, 0.92);
}

.lead-pro-login-check {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-weight: 500 !important;
}

.lead-auth-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(210, 210, 215, 0.9);
  color: #5b524a;
  line-height: 1.55;
}

.news-app-hero {
  gap: 14px;
}

.news-settings-panel {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.94) 0%, rgba(248, 245, 239, 0.92) 100%);
}

.news-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.news-chip-option {
  position: relative;
}

.news-chip-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.news-chip-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(49, 95, 99, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--hub-ink);
  font-size: 0.94rem;
  cursor: pointer;
}

.news-chip-option input:checked + span {
  background: rgba(19, 61, 66, 0.92);
  color: #fcfaf4;
  border-color: rgba(19, 61, 66, 0.92);
}

.news-custom-topic {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  color: #4a4139;
  font-size: 0.94rem;
  font-weight: 600;
}

.news-custom-topic input {
  width: 100%;
  border: 1px solid #d7d1c8;
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: #2f2822;
  background: rgba(255, 255, 255, 0.92);
}

.news-story-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.news-story-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(210, 210, 215, 0.9);
  background: rgba(255, 255, 255, 0.82);
}

.news-story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
  color: #7d7269;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-story-copy {
  margin: 12px 0 0;
  color: #534a42;
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .author-hero,
  .author-grid,
  .author-card-grid,
  .author-feature-grid,
  .author-home-split,
  .author-book-intro,
  .author-book-detail,
  .author-books-grid,
  .author-tools-grid,
  .author-stories-grid,
  .author-two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .author-feature-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .author-book-page .author-book-detail {
    grid-template-columns: 1fr;
  }

  .author-book-page .author-book-detail-cover {
    order: -1;
  }

  .author-book-page .author-book-detail-copy {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .author-shell {
    width: min(calc(100% - 24px), var(--hub-max));
    padding: 16px;
    border-radius: 22px;
  }

  .author-header,
  .author-hero,
  .author-grid,
  .author-card-grid,
  .author-feature-grid,
  .author-home-split,
  .author-book-intro,
  .author-book-detail,
  .author-books-grid,
  .author-tools-grid,
  .author-stories-grid,
  .author-two-column {
    grid-template-columns: 1fr;
  }

  .author-feature-grid--three {
    grid-template-columns: 1fr;
  }

  .lead-type-toggle {
    flex-direction: column;
  }

  .lead-type-option span {
    width: 100%;
  }

  .lead-app-grid,
  .lead-app-blockers {
    grid-template-columns: 1fr;
  }

  .author-header {
    display: block;
    gap: 0;
    padding-bottom: 18px;
  }

  .author-brand {
    width: 100%;
    align-items: center;
    gap: 10px;
  }

  .author-brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .author-brand-name {
    font-size: 0.92rem;
    line-height: 1.05;
  }

  .author-brand-line {
    display: none;
  }

  .author-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
    justify-content: flex-start;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .author-nav::-webkit-scrollbar {
    display: none;
  }

  .author-nav a {
    flex: 0 0 auto;
    justify-content: center;
    min-height: 40px;
    padding: 9px 14px;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .author-main {
    gap: 22px;
    padding-top: 18px;
  }

  .author-hero {
    gap: 10px;
  }

  .author-hero--compact .author-display {
    max-width: 8ch;
    font-size: clamp(2.2rem, 12vw, 3.2rem);
    line-height: 0.94;
  }

  .author-hero--compact .author-tagline {
    max-width: 22ch;
    font-size: 1rem;
    line-height: 1.16;
  }

  .author-hero--compact .author-lede {
    max-width: 34ch;
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .author-hero--compact .author-actions {
    margin-top: 16px;
  }

  .author-hero-art,
  .author-hero--compact .author-hero-art {
    display: none;
  }

  .author-footer {
    width: min(calc(100% - 24px), var(--hub-max));
    padding: 0 2px;
  }

  .author-book-detail {
    padding: 22px;
    gap: 18px;
  }

  .author-book-page .author-book-detail {
    justify-items: center;
  }

  .author-book-intro-panel {
    padding: 28px 20px;
  }

  .author-book-intro-panel .author-page-title {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }

  .author-book-intro-tagline {
    font-size: 1.25rem;
  }

  .author-book-intro-subtitle {
    font-size: 1rem;
    max-width: 26ch;
  }

  .author-book-detail-copy {
    max-width: none;
    width: 100%;
  }

  .author-book-detail-image {
    width: min(100%, 220px);
  }
}
.site-nav a:focus-visible {
  color: #000;
  background: transparent;
  transform: none;
}

.site-nav a.active {
  color: #000;
  font-weight: 600;
}

/* Social links in header (home only) */
.qp-social { margin-top: 6px; }
.qp-social-label { display: none; }
.qp-social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.qp-social-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #888;
  padding: 0;
  border-radius: 0;
  border: none;
  transition: color 0.2s ease;
}
.qp-social-links a:hover {
  color: #000;
  background: transparent;
  opacity: 1;
}

/* Page Intro / Hero */
.page-intro {
  max-width: var(--max-content);
  margin: 80px auto 40px;
  text-align: center;
  padding: 0 20px;
}

.page-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.page-text {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
}

.cta-main {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.decision-line {
  margin: 14px auto 0;
  font-size: 0.95rem;
  color: #666;
}

.decision-line p {
  margin: 0;
}

.decision-line-lead {
  font-weight: 600;
}

.decision-line-alt {
  margin-top: 6px;
}

.page-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Ideas Page / Cards */
.ideas-page {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 20px 80px;
}

.idea-card {
  background: var(--surface);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  margin-bottom: 40px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.idea-card:hover {
  transform: scale(1.015);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.idea-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.idea-title {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.idea-card p {
  font-size: 1.1rem;
  color: #333336;
  margin-bottom: 1.2em;
}

.ideas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.ideas-grid .idea-card {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 1.4rem;
  box-shadow: none;
  cursor: pointer;
  border: 1px solid rgba(76, 63, 46, 0.08);
  margin-bottom: 0;
}

.ideas-grid .idea-card:hover {
  transform: none;
  box-shadow: none;
}

.idea-summary {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.idea-number {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #6f725c;
  margin-bottom: 0.5rem;
}

.ideas-grid .idea-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #231d17;
  margin: 0 0 0.75rem 0;
}

.idea-preview {
  font-size: 0.95rem;
  color: #4f4338;
  margin: 0 0 1rem 0;
}

.idea-toggle {
  font-size: 0.85rem;
  font-weight: 600;
  color: #3d3329;
}

.idea-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.idea-read-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(111, 114, 92, 0.18);
  background: rgba(255, 255, 255, 0.62);
  color: #4e4337;
  text-decoration: none;
  font: inherit;
  font-size: 0.92rem;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.idea-read-link:hover {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(111, 114, 92, 0.28);
  color: #231d17;
  opacity: 1;
  transform: translateY(-1px);
}

.idea-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(84, 73, 60, 0.22);
  background: rgba(249, 244, 235, 0.94);
  color: #2c241d;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(13, 27, 31, 0.06);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.idea-share-btn:hover {
  background: rgba(255, 250, 243, 1);
  border-color: rgba(84, 73, 60, 0.34);
  color: #1f1914;
  transform: translateY(-1px);
}

.thought-article-shell {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 72px;
}

.thought-article-top {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px;
}

.thought-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.thought-backlink {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(111, 114, 92, 0.18);
  background: rgba(255, 255, 255, 0.54);
  color: #4e4337;
  text-decoration: none;
}

.thought-backlink:hover {
  background: rgba(255, 255, 255, 0.82);
  color: #231d17;
  opacity: 1;
}

.thought-article {
  padding: 30px 32px;
  border-radius: 18px;
  border: 1px solid rgba(76, 63, 46, 0.08);
  background:
    radial-gradient(circle at top right, rgba(205, 190, 160, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.56);
}

.thought-article h3,
.thought-article h4 {
  color: #231d17;
  line-height: 1.2;
}

.thought-article h3 {
  margin: 1.5rem 0 0.8rem;
  font-size: 1.18rem;
}

.thought-article h4 {
  margin: 1.15rem 0 0.65rem;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4d5340;
}

.thought-article p {
  margin: 0 0 1rem;
  color: #4f4338;
  line-height: 1.82;
  font-size: 1rem;
}

.thought-audio-block {
  margin: 2rem 0 0;
  padding: 20px 22px;
  border-radius: 14px;
  border: 1px solid rgba(76, 63, 46, 0.08);
  background: rgba(255, 255, 255, 0.52);
}

.thought-audio-block h3 {
  margin-top: 0;
}

.thought-audio-block p:last-child {
  margin-bottom: 0;
}

.thought-audio-embed {
  margin: 16px 0 18px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(76, 63, 46, 0.08);
}

.thought-audio-embed iframe {
  display: block;
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 14px;
}

.thought-next-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.thought-next-card {
  padding: 20px 22px;
  border-radius: 14px;
  border: 1px solid rgba(76, 63, 46, 0.08);
  background: rgba(255, 255, 255, 0.5);
}

.thought-next-card h3 {
  margin: 0 0 10px;
  color: #231d17;
}

.thought-next-card p {
  color: #5f5448;
  line-height: 1.72;
}

.idea-full {
  margin-top: 1.25rem;
  padding: 1.25rem 1.3rem;
  border-top: 0;
  font-size: 0.95rem;
  color: #4e4338;
  line-height: 1.7;
  background: rgba(255, 255, 255, 0.62);
  border-radius: 10px;
}

.idea-card.is-open .idea-full {
  margin-top: 1rem;
}

.idea-full p {
  font-size: 0.95rem;
  color: #4e4338;
  margin-bottom: 1rem;
}

.idea-section-title,
.idea-subsection-title {
  margin: 1.4rem 0 0.7rem;
  color: #231d17;
  line-height: 1.2;
}

.idea-section-title {
  font-size: 1.05rem;
}

.idea-subsection-title {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4d5340;
}

.idea-card.is-open .idea-toggle {
  opacity: 0.75;
}

.share-inline {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(231, 225, 210, 0.12);
}

.share-inline-label {
  display: block;
  margin-bottom: 10px;
  color: #6f6254;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.share-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(84, 73, 60, 0.2);
  background: rgba(249, 244, 235, 0.94);
  color: #2c241d;
  text-decoration: none;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(13, 27, 31, 0.06);
}

.share-inline-link:hover {
  background: rgba(255, 250, 243, 1);
  border-color: rgba(84, 73, 60, 0.32);
  color: #1f1914;
  opacity: 1;
}

.btn-primary {
  display: inline-block;
  align-self: flex-start;
  background: #111;
  color: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary:hover {
  background: #000;
  opacity: 1;
}

.amazon-btn {
  background: #f7ca5f;
  color: #23180a;
  border: 1px solid rgba(148, 104, 16, 0.34);
  box-shadow: 0 2px 0 rgba(120, 85, 13, 0.12);
}

.amazon-btn:hover {
  background: #ffd874;
  color: #1c1207;
  opacity: 1;
}

.monastery-subpage .btn-primary.amazon-btn,
.home-classic .btn-primary.amazon-btn {
  background: #f7ca5f;
  color: #23180a;
}

.monastery-subpage .btn-primary.amazon-btn:hover,
.home-classic .btn-primary.amazon-btn:hover {
  background: #ffd874;
  color: #1c1207;
}

.about-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.about-text {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  padding: 2.25rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(210, 210, 215, 0.9);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  line-height: 1.8;
  font-size: 1.02rem;
  color: #333;
}

.about-text p {
  margin-bottom: 1.25rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

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

.about-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(210, 210, 215, 0.8);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.about-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.about-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #999;
}

.about-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.about-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  flex-grow: 1;
}

.about-card a {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #111;
  text-decoration: none;
}

.about-closing {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid #eee;
}

.monastery-subpage .about-text.about-shelf {
  max-width: 820px;
  background:
    radial-gradient(circle at left center, rgba(72, 112, 121, 0.2), transparent 34%),
    radial-gradient(circle at right top, rgba(119, 156, 164, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(28, 61, 69, 0.14) 0%, rgba(28, 61, 69, 0.08) 100%);
  border: 0;
  box-shadow: none;
  border-radius: 24px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.monastery-subpage .about-text.about-shelf p {
  margin: 0;
}

.monastery-subpage .about-text.about-shelf p + p {
  margin-top: 1rem;
}

.monastery-subpage .about-text.about-shelf p {
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(246, 241, 231, 0.94) 0%, rgba(241, 235, 224, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 24px rgba(13, 27, 31, 0.08);
}

.monastery-subpage .about-columns.about-shelf {
  border-radius: 24px;
}

.monastery-subpage .about-columns.about-shelf .about-card {
  background: linear-gradient(180deg, rgba(246, 241, 231, 0.94) 0%, rgba(241, 235, 224, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 24px rgba(13, 27, 31, 0.08);
}

.monastery-subpage .about-closing.about-shelf {
  max-width: 760px;
  border-top: 0;
  border-radius: 24px;
  padding: 18px;
}

.monastery-subpage .about-closing-card {
  padding: 24px 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(246, 241, 231, 0.94) 0%, rgba(241, 235, 224, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 24px rgba(13, 27, 31, 0.08);
}

.monastery-subpage .about-closing-card .about-cta {
  margin-top: 18px;
}

.about-closing p {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #111;
}

.about-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.contact-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.contact-copy {
  padding: 2.25rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(210, 210, 215, 0.9);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 0.75rem;
}

.contact-copy h3 {
  font-size: 1.6rem;
  margin: 0 0 1rem;
}

.contact-copy p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 0;
}

.contact-reasons {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.contact-reasons ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #555;
  line-height: 1.9;
}

.contact-form-wrap {
  background: #fff;
  border: 1px solid rgba(210, 210, 215, 0.8);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d2d2d7;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
  background: #fff;
  color: #111;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #999;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.contact-submit {
  margin-top: 0.5rem;
}

.contact-closing {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid #eee;
}

.contact-closing p {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #111;
}

.contact-cta {
  display: flex;
  justify-content: center;
}

.page-header {
  max-width: 700px;
  margin: 80px auto 3rem;
  padding: 0 1.5rem;
  text-align: left;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.page-header p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0;
  line-height: 1.7;
}

.page-hero-intro {
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.page-hero-intro h1 {
  margin-bottom: 0.6rem;
}

.page-hero-intro p {
  font-size: 1rem;
  color: #444;
}

.page-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
}

.books-carousel-shell {
  margin-top: 20px;
  position: relative;
}

.books-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.books-carousel-controls {
  display: flex;
  gap: 10px;
}

.books-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(92, 77, 55, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: #4d4032;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(49, 38, 24, 0.08);
}

.books-carousel-btn:hover {
  background: #fff;
  color: #231a12;
  opacity: 1;
}

.books-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.books-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.books-grid.books-carousel-track {
  display: flex;
  gap: 20px;
  margin-top: 0;
}

.book-card {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  padding: 14px 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(92, 77, 55, 0.08);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 24px rgba(49, 38, 24, 0.04);
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}

.book-object-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 320px;
  padding: 8px 8px 0;
  border-radius: 14px;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-decoration: none;
}

.book-cover-img {
  display: block;
  width: min(100%, 205px);
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  transform: none;
  box-shadow: 0 18px 28px rgba(44, 32, 20, 0.16);
}

.book-card--soon {
  border-style: dashed;
  border-color: rgba(96, 81, 58, 0.18);
}

.book-meta {
  margin: 10px 0 4px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7b6b58;
}

.book-card h2 a {
  color: inherit;
  text-decoration: none;
}

.book-description {
  margin: 0;
  flex-grow: 1;
  color: #3e3428;
  line-height: 1.52;
  font-size: 0.92rem;
  max-width: 22ch;
}

.book-note {
  font-size: 0.84rem;
  color: #6f6252;
  margin: 10px 0 0;
  line-height: 1.5;
}

.book-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.books-page-main .page-intro {
  padding-bottom: 2px;
}

.books-page-main .page-intro .page-title {
  max-width: 620px;
}

.book-card h2 {
  margin: 0 0 8px;
  font-size: 1.3rem;
  line-height: 1.12;
  color: #231a12;
}

@media (max-width: 900px) {
  .book-card {
    flex-basis: 240px;
  }
}

@media (max-width: 720px) {
  .books-carousel-header {
    align-items: center;
  }

  .books-carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.7rem;
  }

  .book-object-stage {
    min-height: auto;
    padding: 8px 4px 4px;
  }

  .book-cover-img {
    width: min(100%, 185px);
  }

  .book-card {
    flex-basis: 220px;
  }

  .book-card h2 {
    font-size: 1.35rem;
  }
}

.badge-soon {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  border: 1px solid #999;
  color: #555;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  vertical-align: middle;
}

.coming-soon-note {
  font-size: 0.85rem;
  color: #a35b00;
}

.book-status {
  font-size: 0.85rem;
  color: #a35b00;
  margin: 0;
  font-weight: 500;
}

.page-footer {
  max-width: 700px;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
  text-align: left;
  font-size: 0.95rem;
  color: #555;
}

.page-footer p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.page-footer p:first-child {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
}

.page-footer-note {
  max-width: 720px;
  margin: 2.5rem auto 0;
  font-size: 0.95rem;
  color: #555;
}

.page-footer-note p + p {
  margin-top: 0.5rem;
}

.books-page-card {
  max-width: 720px;
  margin: 40px auto;
  padding: 24px 28px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.products-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  max-width: 980px;
  margin: 0 auto 3rem;
}

@media (min-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .monastery-subpage .products-grid.shop-shelf {
    grid-template-columns: repeat(2, minmax(0, 420px));
    justify-content: center;
  }
}

.product-card {
  border: 1px solid rgba(76, 63, 46, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  padding: 1.1rem;
}

.product-card-inner {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.product-media img {
  display: block;
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.product-tag {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6f725c;
  margin-bottom: 0.3rem;
}

.product-description {
  margin-bottom: 0.6rem;
  color: #5f5448;
  line-height: 1.7;
}

.monastery-subpage .shop-section-head {
  max-width: 760px;
  margin-bottom: 1.4rem;
}

.monastery-subpage .products-grid--editorial {
  margin-bottom: 4rem;
}

.monastery-subpage .shop-section-head h2 {
  margin-bottom: 0;
}

.monastery-subpage .product-card {
  background: linear-gradient(180deg, rgba(246, 241, 231, 0.94) 0%, rgba(241, 235, 224, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 24px rgba(13, 27, 31, 0.08);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 0.95rem;
  border-radius: 18px;
}

.monastery-subpage .product-card--feature {
  background: linear-gradient(180deg, rgba(246, 241, 231, 0.94) 0%, rgba(241, 235, 224, 0.9) 100%);
}

.monastery-subpage .product-card--feature .product-card-inner {
  gap: 1rem;
}

.monastery-subpage .product-card--feature .product-media img {
  max-width: 260px;
  margin: 0 auto;
  box-shadow: 0 10px 20px rgba(73, 59, 43, 0.08);
}

.monastery-subpage .product-card h2 {
  margin: 0 0 0.5rem;
  color: #231d17;
}

.monastery-subpage .product-card .product-media img {
  border-radius: 12px;
}

@media (max-width: 768px) {
  .monastery-subpage .products-grid.shop-shelf {
    gap: 16px;
    padding: 12px;
  }

  .monastery-subpage .product-card {
    padding: 0.85rem;
  }
}

.qp-question-card {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.qp-question-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #777;
  margin-bottom: 8px;
}

.qp-question-text {
  font-weight: 500;
  margin-bottom: 12px;
}

.qp-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.qp-option {
  border-radius: 999px;
  border: 1px solid #ddd;
  padding: 8px 12px;
  background: #f7f7f7;
  cursor: pointer;
  text-align: left;
}

.qp-option:hover {
  background: #eee;
}

.qp-hint {
  font-size: 0.85rem;
  color: #777;
}

.qp-score {
  margin-bottom: 12px;
}

.qp-result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.qp-notes-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.qp-notes-form input[type="email"] {
  flex: 1 1 220px;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.qp-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.qp-test-page {
  max-width: 800px;
  margin: 0 auto;
}

.qp-hero {
  text-align: left;
}

.qp-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 6px;
}

.qp-hero h1 {
  font-size: 2.1rem;
  margin-bottom: 8px;
}

.qp-hero-text {
  max-width: 520px;
  color: #555;
  margin-bottom: 16px;
}

.qp-start-btn {
  margin-bottom: 16px;
}

.qp-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qp-progress-bar {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: #eee;
  position: relative;
  overflow: hidden;
}

.qp-progress-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--qp-progress-value, 0%);
  background: #111;
  transition: width 0.25s ease-out;
}

.qp-progress-hidden,
.qp-test-hidden,
.qp-intro-hidden,
.qp-result-hidden {
  display: none;
}

.qp-assessment-shell {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.qp-assessment-introband {
  max-width: 760px;
  margin: 48px auto 22px;
  text-align: left;
}

.qp-assessment-kicker {
  margin: 0 0 12px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a89f8f;
}

.qp-assessment-introband h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.qp-assessment-lead {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 1.04rem;
  line-height: 1.7;
  color: #5f5448;
}

.intro {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: left;
  padding: 34px 34px 30px;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
}

.intro::before,
.result::before,
.test-wrap::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 231, 213, 0.45), transparent);
}

.subtitle {
  color: #4d5340;
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.intro-text {
  margin-bottom: 18px;
  line-height: 1.7;
  max-width: 37rem;
  color: #5f5448;
}

.meta {
  list-style: none;
  padding: 0;
  margin: 28px 0 28px;
  color: #5f5448;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.meta li {
  margin-bottom: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(76, 63, 46, 0.08);
}

.meta strong,
.meta span {
  display: block;
}

.meta strong {
  color: #231d17;
  font-size: 1rem;
}

.meta span {
  margin-top: 4px;
  color: #6f725c;
  font-size: 0.85rem;
}

.qp-assessment-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.qp-assessment-note {
  margin: 0;
  color: #85745f;
  font-size: 0.92rem;
}

.start-btn {
  padding: 14px 24px;
  background: #35382c;
  color: #f7f2e8;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

.start-btn:hover {
  background: #424638;
}

.test-wrap {
  max-width: 760px;
  margin: 12px auto 0;
  padding: 32px 34px 30px;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
}

.progress {
  height: 8px;
  background: rgba(76, 63, 46, 0.08);
  margin-bottom: 18px;
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar {
  height: 8px;
  background: linear-gradient(90deg, #8d9473 0%, #d8ccae 100%);
  width: 20%;
  transition: width 0.25s ease;
  border-radius: 999px;
}

.step {
  color: #6f725c;
  font-size: 0.82rem;
  margin-bottom: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.question {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 26px;
  line-height: 1.18;
  max-width: 15ch;
  color: #231d17;
}

.answers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.answer {
  text-align: left;
  padding: 18px 18px;
  margin-bottom: 0;
  border-radius: 12px;
  border: 1px solid rgba(76, 63, 46, 0.08);
  background: rgba(255, 255, 255, 0.5);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  font-size: 1rem;
  color: #3f362d;
  cursor: pointer;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
}

.answer-key {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(111, 114, 92, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6f725c;
}

.answer-copy {
  display: block;
  line-height: 1.45;
}

.answer:hover {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(111, 114, 92, 0.22);
  transform: translateY(-1px);
}

.answer.selected {
  background: rgba(216, 204, 174, 0.3);
  color: #231d17;
  border-color: rgba(111, 114, 92, 0.28);
}

.answer.selected .answer-key {
  background: #4d5340;
  border-color: #4d5340;
  color: #f7f2e8;
}

.result {
  max-width: 760px;
  margin: 18px auto 0;
  padding: 34px 34px 30px;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
}

.result-type {
  font-weight: 600;
  margin: 14px 0 10px;
  font-size: 1.5rem;
  color: #231d17;
}

.result-text {
  line-height: 1.7;
  max-width: 42rem;
  color: #5f5448;
}

.scores {
  margin-top: 26px;
  color: #5f5448;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.scores p {
  margin: 0;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(76, 63, 46, 0.08);
}

.score-label,
.score-value {
  display: block;
}

.score-label {
  color: #6f725c;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.score-value {
  margin-top: 8px;
  color: #231d17;
  font-size: 1.8rem;
  line-height: 1;
}

.result-next,
.result-bridge {
  margin-top: 18px;
}

.result-cta {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.result-cta a {
  display: inline-block;
  padding: 12px 20px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
}

.result-cta a:hover {
  background: #000;
  opacity: 1;
}

.result-cta .secondary {
  background: none;
  color: #000;
  text-decoration: underline;
  padding-left: 0;
  padding-right: 0;
}

.result-cta button.secondary {
  border: 0;
  cursor: pointer;
  font: inherit;
  margin-top: 0;
  padding: 0;
  background: transparent;
}

.result-share {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(76, 63, 46, 0.08);
}

.result-share-title {
  margin: 0 0 8px;
  color: #231d17;
  font-size: 1rem;
}

.result-share-text {
  margin: 0;
  color: #6f725c;
  max-width: 40rem;
}

.result-share-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(84, 73, 60, 0.24);
  background: rgba(249, 244, 235, 0.94);
  color: #2c241d;
  text-decoration: none;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(13, 27, 31, 0.06);
}

.share-link:hover {
  background: rgba(255, 250, 243, 1);
  border-color: rgba(84, 73, 60, 0.34);
  color: #1f1914;
  opacity: 1;
}

.share-copy {
  appearance: none;
}

.fade {
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  .qp-assessment-introband {
    margin-top: 24px;
  }

  .intro,
  .test-wrap,
  .result {
    padding: 24px 20px 22px;
    border-radius: 22px;
  }

  .meta,
  .scores {
    grid-template-columns: 1fr;
  }

  .question {
    max-width: none;
    font-size: 1.55rem;
  }

  .answer {
    grid-template-columns: 38px 1fr;
    padding: 16px;
    gap: 12px;
  }

  .answer-key {
    width: 38px;
    height: 38px;
  }

  .thought-article {
    padding: 24px 20px;
  }

  .thoughts-feature-side,
  .thoughts-bottom-card {
    padding: 18px;
  }

  .thought-next-grid {
    grid-template-columns: 1fr;
  }
}

.qp-email-gate {
  margin: 16px 0;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  background: #fbfbfb;
}

.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
}

.page-hero {
  margin-bottom: 3rem;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.page-hero-text h1 {
  margin-bottom: 0.4rem;
}

.page-hero-text .book-subtitle {
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.page-hero-text .book-description {
  margin-bottom: 1rem;
}

.page-hero-cover img {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  margin-left: auto;
}

.page-section {
  margin-bottom: 2.5rem;
}

.page-section + .page-section {
  margin-top: 80px;
}

section {
  margin-top: 80px;
}

.page-section h2 {
  margin-bottom: 0.7rem;
}

.page-section p,
.page-section li {
  color: #444;
  line-height: 1.8;
}

.page-section ul {
  padding-left: 1.1rem;
}

.page-section li {
  margin-bottom: 0.4rem;
}

.small-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.6rem;
}

.page-section--cta {
  border-top: 1px solid #eee;
  padding-top: 2rem;
}

.qp-assessment-cta {
  border-radius: 16px;
  border: 1px solid #e3e3e3;
  background: #fafafa;
  padding: 18px 20px;
  margin-top: 24px;
}

.qp-assessment-cta p {
  max-width: 520px;
  margin-bottom: 12px;
}

.workbooks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.workbook-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(76, 63, 46, 0.08);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: none;
  text-align: left;
}

.workbook-card img {
  width: 70%;
  max-width: 140px;
  margin: 0 auto 12px;
  border-radius: 6px;
  display: block;
}

.workbook-card h3 {
  font-size: 1rem;
  margin: 0 0 6px;
}

.workbook-card p {
  color: #5f5448;
  line-height: 1.7;
  margin: 0 0 1rem;
}

@media (max-width: 720px) {
  .monastery-subpage .qp-feature-grid,
  .monastery-subpage .qp-overview-grid,
  .workbooks-grid {
    grid-template-columns: 1fr;
  }

  .monastery-subpage .qp-intro-pill {
    padding: 22px 18px 18px;
    border-radius: 22px;
  }

  .intro,
  .test-wrap,
  .result {
    margin: 40px auto;
  }

  .question {
    font-size: 1.2rem;
  }
}

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

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #111;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid #000;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #f5f5f7;
  opacity: 1;
}

.page-intro .btn-primary,
.final-cta .btn-primary,
.qp-assessment-cta .btn-primary {
  background: #000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  margin-right: 12px;
}

.page-intro .btn-primary:hover,
.final-cta .btn-primary:hover,
.qp-assessment-cta .btn-primary:hover {
  background: #111;
  opacity: 1;
}

.page-intro .btn-secondary {
  color: #000;
  text-decoration: underline;
  border: 0;
  background: transparent;
  padding: 12px 0;
}

.page-intro .btn-secondary:hover {
  background: transparent;
}

.monastery-subpage .page-intro .cta-main {
  justify-content: center;
  align-items: center;
}

.monastery-subpage .page-intro .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid rgba(111, 114, 92, 0.18);
  color: #4e4337;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid rgba(111, 114, 92, 0.18);
  white-space: nowrap;
}

.monastery-subpage .page-intro .btn-secondary:hover {
  color: #231d17;
  border-color: rgba(111, 114, 92, 0.28);
  background: rgba(255, 255, 255, 0.94);
}

.monastery-subpage .page-intro .decision-line {
  margin: 18px 0 0;
  max-width: 520px;
  color: #85745f;
}

.monastery-subpage .page-intro .decision-line-lead {
  color: #4d5340;
}

.monastery-subpage .page-intro .decision-line-alt {
  color: #85745f;
}

.monastery-subpage .page-intro--library,
.monastery-subpage .page-intro--thoughts {
  margin-bottom: 2px;
}

.library-label {
  margin: 0 0 10px;
  color: #6f725c;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.library-section-head h2 {
  margin: 0 0 12px;
  color: #231d17;
}

.library-section-head p {
  color: #5f5448;
  line-height: 1.75;
}

.library-section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.thoughts-featured,
.thoughts-section-head,
.thoughts-bottom-grid {
  max-width: 1120px;
  margin: 0 auto 28px;
  padding: 0 24px;
}

.monastery-subpage .thoughts-featured {
  max-width: 920px;
}

.thoughts-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 18px;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.94) 0%, rgba(241, 235, 224, 0.9) 100%);
  box-shadow: 0 10px 24px rgba(13, 27, 31, 0.08);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.thoughts-feature-copy h2,
.thoughts-section-head h2,
.thoughts-bottom-card h3 {
  margin: 0 0 12px;
  color: #231d17;
}

.thoughts-feature-copy p,
.thoughts-section-head p,
.thoughts-bottom-card p,
.thoughts-feature-side p {
  color: #5f5448;
  line-height: 1.75;
}

.thoughts-feature-meta,
.idea-quick-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.thoughts-feature-meta {
  margin: 16px 0 18px;
}

.thoughts-feature-meta span,
.idea-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(111, 114, 92, 0.14);
  color: #5b584d;
  font-size: 0.82rem;
}

.thoughts-feature-side {
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.thoughts-section-head {
  display: flex;
  align-items: end;
  margin-bottom: 18px;
}

.idea-quick-meta {
  margin-top: 14px;
}

.thoughts-bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.thoughts-bottom-card {
  padding: 20px 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(246, 241, 231, 0.94) 0%, rgba(241, 235, 224, 0.9) 100%);
  box-shadow: 0 10px 24px rgba(13, 27, 31, 0.08);
}

.monastery-subpage .books-grid {
  gap: 26px;
  padding-top: 2px;
}

.monastery-subpage .book-card {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(76, 63, 46, 0.08);
  box-shadow: 0 18px 34px rgba(9, 23, 27, 0.18);
}

.monastery-subpage .book-card h2 {
  line-height: 1.15;
  margin: 0 0 10px;
}

.monastery-subpage .book-meta {
  margin-bottom: 8px;
  color: #85745f;
}

.monastery-subpage .book-cover-img {
  margin: 0 auto;
  border-radius: 6px;
  max-width: 154px;
  box-shadow:
    -12px 14px 24px rgba(58, 44, 30, 0.1),
    18px 20px 30px rgba(55, 42, 29, 0.2);
  transform: perspective(1200px) rotateY(-14deg) rotateX(2deg);
  transform-origin: center left;
}

.monastery-subpage .book-actions {
  margin-top: 16px;
}

.monastery-subpage .books-shelf .books-grid {
  gap: 18px;
}

.monastery-subpage .books-shelf .book-card {
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.94) 0%, rgba(241, 235, 224, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 18px rgba(13, 27, 31, 0.07);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.monastery-subpage .books-shelf .book-card:hover {
  box-shadow: 0 10px 22px rgba(13, 27, 31, 0.09);
}

.monastery-subpage .books-shelf .book-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at left top, rgba(107, 145, 154, 0.08), transparent 24%),
    radial-gradient(circle at right bottom, rgba(31, 64, 72, 0.05), transparent 30%);
}

.monastery-subpage .books-shelf .book-card {
  position: relative;
  overflow: hidden;
}

.monastery-subpage .books-shelf .book-card + .book-card {
  margin-top: 4px;
}

.monastery-subpage .idea-card {
  padding: 22px 20px;
}

.thoughts-shelf {
  margin-top: 18px;
  padding: 16px;
  border-radius: 24px;
  background:
    radial-gradient(circle at left center, rgba(72, 112, 121, 0.22), transparent 30%),
    radial-gradient(circle at right top, rgba(119, 156, 164, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(28, 61, 69, 0.18) 0%, rgba(28, 61, 69, 0.08) 100%);
}

.monastery-subpage .thoughts-shelf .idea-card {
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.94) 0%, rgba(241, 235, 224, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 24px rgba(13, 27, 31, 0.08);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: 18px;
}

.monastery-subpage .thoughts-shelf .ideas-grid {
  margin-top: 0;
  max-width: 920px;
  gap: 22px;
}

.monastery-subpage .idea-number {
  margin-bottom: 0.85rem;
  color: #6f725c;
  letter-spacing: 0.16em;
}

.monastery-subpage .idea-card .idea-summary {
  min-height: auto;
}

@media (max-width: 900px) {
  .thoughts-feature-card,
  .thoughts-bottom-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .book-object-stage {
    min-height: auto;
    padding: 10px 6px 6px;
  }

  .monastery-subpage .book-cover-img {
    max-width: 136px;
    transform: perspective(900px) rotateY(-9deg) rotateX(1deg);
  }

  .monastery-subpage .book-card {
    padding: 16px;
  }

  .books-shelf {
    padding: 12px 10px;
  }

  .monastery-subpage .thoughts-shelf {
    padding: 12px;
  }

  .monastery-subpage .thoughts-shelf .ideas-grid {
    gap: 16px;
  }
}

.qp-home-hero {
  max-width: 760px;
  margin: 48px auto 52px;
}

.final-cta {
  margin-top: 56px;
  padding: 32px;
  border-radius: 16px;
  background: #f5f5f7;
  border: 1px solid #e5e5e5;
  text-align: center;
}

.final-cta p {
  max-width: 420px;
  margin: 0 auto 18px;
  color: #333336;
  line-height: 1.6;
}

.qp-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
}

.qp-home-hero h1 {
  font-size: 2.6rem;
  line-height: 1.08;
  margin-bottom: 1.2rem;
}

.qp-hero-text {
  font-size: 1.02rem;
  color: #555;
  margin-bottom: 14px;
  line-height: 1.4;
}

.qp-home-hero .qp-hero-text:first-of-type {
  font-size: 1.2rem;
}

.qp-hero-break {
  margin: 10px 0 6px;
}

.qp-hero-break span {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #ccc;
}

.qp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.qp-hero-micro {
  width: 100%;
  margin: 0 0 14px;
  font-size: 1.02rem;
  color: #1d1d1f;
  line-height: 1.58;
}

.qp-home-hero .btn-primary,
.qp-home-hero .btn-ghost,
.qp-home-assessment .btn-secondary,
.qp-home-ideas .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  margin-top: 20px;
  background: #f5f5f5;
  border: 1px solid rgba(29, 29, 31, 0.12);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.04);
  transition: background-color 0.24s ease, border-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease;
}

.qp-home-hero .btn-primary,
.qp-home-assessment .btn-secondary {
  color: #111;
}

.qp-home-hero .btn-primary:hover,
.qp-home-hero .btn-ghost:hover,
.qp-home-assessment .btn-secondary:hover,
.qp-home-ideas .btn-ghost:hover {
  background: #eaeaea;
  border-color: rgba(29, 29, 31, 0.18);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.06);
  transform: translateY(-1px);
  opacity: 1;
}

.btn-ghost {
  border-radius: 999px;
  border: 1px solid #ddd;
  padding: 8px 18px;
  background: transparent;
  color: #111;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn-ghost:hover {
  border-color: #bbb;
  background: #f7f7f7;
  opacity: 1;
}

.qp-home-assessment {
  max-width: 760px;
  margin: 0 auto 44px;
  border-radius: 18px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  padding: 24px 24px;
}

.qp-home-assessment p {
  max-width: 540px;
  margin-bottom: 12px;
  line-height: 1.58;
}

.qp-home-real-life {
  max-width: 760px;
  margin: 110px auto 56px;
}

.qp-home-real-life h2 {
  margin-bottom: 28px;
}

.qp-home-real-life p {
  margin-bottom: 28px;
  max-width: 540px;
  line-height: 1.58;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid #e8e5df;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.03);
}

.qp-home-real-life strong {
  display: block;
  margin-bottom: 6px;
}

.qp-home-foundation {
  max-width: 760px;
  margin: 120px auto 56px;
}

.risk-section {
  margin-top: 120px;
}

.qp-home-foundation h2 {
  margin-bottom: 18px;
}

.qp-home-foundation h2 + p {
  margin-top: 0;
}

.qp-home-foundation p {
  margin-bottom: 20px;
  max-width: 540px;
  line-height: 1.6;
}

.foundation {
  margin-top: 60px;
}

.qp-home-ideas {
  max-width: 760px;
  margin: 100px auto 56px;
}

.qp-home-ideas h2 {
  font-size: clamp(2rem, 3vw, 2.35rem);
  margin-bottom: 30px;
}

.qp-home-ideas > p {
  margin-bottom: 22px;
  line-height: 1.58;
}

.qp-home-ideas-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 22px;
}

.qp-card {
  border-radius: 20px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  padding: 22px 22px 20px;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.04);
}

.qp-idea-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #777;
  margin-bottom: 4px;
}

.qp-card h3 {
  margin-bottom: 12px;
}

.qp-card p:not(.qp-idea-label) {
  margin-bottom: 16px;
  line-height: 1.58;
}

@media (max-width: 560px) {
  .book-card-inner {
    grid-template-columns: 1fr;
  }

  .monastery-subpage .book-cover-img,
  .book-cover-img {
    max-width: 124px;
    margin: 0 auto 12px;
  }
}

/* Call to Action (Teaser Card) */
.qp-teaser-section { margin-top: 60px; }

.qp-teaser-card {
  background: var(--text); /* Black Background for focus */
  color: #fff;
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.qp-teaser-title {
  color: #fff;
  font-size: 2rem;
}

.qp-teaser-text {
  color: #a1a1a6;
  margin: 20px auto;
}

.btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn:hover {
  background: #f5f5f7;
  transform: translateY(-2px);
  opacity: 1;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.footer {
  margin-top: 120px;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 0.85rem;
  color: #777;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-social {
  margin-bottom: 12px;
}

.footer-links {
  margin-bottom: 12px;
}

.footer-copy {
  color: #777;
}

.footer a {
  color: #888;
  margin-right: 14px;
}

.footer a:hover {
  color: #000;
  opacity: 1;
}

.qp-book-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.landing {
  margin-top: 60px;
}

.landing .tagline {
  color: #888;
  margin-bottom: 20px;
}

.landing .hero-text {
  margin-bottom: 16px;
  color: #333336;
  line-height: 1.6;
}

.landing .cta-main {
  margin-top: 20px;
}

.landing .btn-primary,
.final-cta .btn-primary {
  background: #000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  margin-right: 10px;
}

.landing .btn-primary:hover,
.final-cta .btn-primary:hover {
  background: #111;
  opacity: 1;
}

.landing .btn-secondary {
  text-decoration: underline;
  color: #000;
}

.landing .btn-secondary:hover {
  color: #000;
  opacity: 1;
}

.qp-book-main section {
  margin-top: 80px;
}

.solution ul {
  padding-left: 1.1rem;
  color: #333336;
  line-height: 1.8;
}

.solution li {
  margin-bottom: 0.5rem;
}

.final-cta .small {
  margin-top: 18px;
  font-size: 0.92rem;
  color: #666;
}

/* =========================================
   MOBILE OPTIMIZATION
   ========================================= */
@media (max-width: 768px) {
  .header {
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
  }

  .nav {
    gap: 14px 18px;
    margin-top: 0;
  }

  .site-header {
    width: 100%;
    top: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
  }

  .branding-wrap {
    width: 100%;
    justify-content: flex-start;
  }

  .branding-subtitle { display: none; }
  .qp-social-links { flex-wrap: wrap; gap: 6px; margin-top: 4px; }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 18px;
    justify-content: flex-start;
  }

  .site-nav a {
    font-size: 0.88rem;
  }

  /* Cards */
  .idea-card { padding: 32px 24px; }
  .ideas-grid {
    grid-template-columns: 1fr;
  }
  .about-columns {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .books-grid {
    grid-template-columns: 1fr;
  }
  .workbooks-grid {
    grid-template-columns: 1fr;
  }
  .page-hero-inner {
    grid-template-columns: 1fr;
  }
  .page-hero-cover {
    order: -1;
  }
  .page-hero-cover img {
    width: 180px;
  }
  .two-column-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about-cta {
    flex-direction: column;
    align-items: center;
  }
  .contact-cta {
    flex-direction: column;
    align-items: center;
  }

  /* Titulos */
  .page-title { font-size: 2.2rem; }

  /* Book blocks: coluna em mobile */
  .book-block {
    flex-direction: column !important;
  }
  .book-cover img {
    max-width: 140px !important;
  }
}

@media (max-width: 520px) {
  .book-card-inner {
    grid-template-columns: 1fr;
  }

  .book-cover img,
  .book-cover--placeholder {
    width: 110px;
  }
}
