:root {
  --container-width: 1200px;

  --bg-main: #fcf8f6;
  --bg-soft: #f6efec;
  --bg-soft-alt: #f3ebe7;
  --bg-section: #f5eeeb;
  --bg-card: #ffffff;

  --text-main: #4d3a33;
  --text-body: #6b5b56;
  --text-light: #8b7b75;

  --accent: #d48363;
  --accent-dark: #bb6c4f;
  --accent-soft: #f3d5ca;

  --gold: #d9b46a;
  --gold-soft: #f3ead2;

  --border: #eadfda;
  --border-strong: #dfd2cb;

  --shadow-sm: 0 6px 18px rgba(93, 58, 43, 0.05);
  --shadow-md: 0 14px 34px rgba(93, 58, 43, 0.08);

  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --transition: all 0.28s ease;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--guide-bg);
  color: var(--guide-text);
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.24);
}

/* =========================================================
HERO
========================================================= */
.guide-hero {
  padding: 46px 0 34px;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.16), transparent 36%),
    linear-gradient(180deg, #fff7ed 0%, #fbfaf8 100%);
}

.guide-hero-container {
  display: grid;
  gap: 22px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--guide-muted);
}

.breadcrumb a {
  text-decoration: none;
  color: var(--guide-primary-dark);
  font-weight: 700;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.guide-hero-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(234, 223, 247, 0.9);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--guide-shadow);
  backdrop-filter: blur(10px);
}

.guide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--guide-lavender);
  color: var(--guide-primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-hero h1 {
  margin: 0;
  max-width: 820px;
  color: #211335;
  font-size: clamp(2.15rem, 5vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.guide-hero-text {
  max-width: 760px;
  margin: 20px 0 0;
  color: #4b5563;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.guide-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.guide-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid var(--guide-border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--guide-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.guide-hero-meta i {
  color: var(--guide-primary);
}


/* =========================================================
LAYOUT
========================================================= */
.guide-article-section {
  padding: 34px 0 72px;
}

.guide-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.guide-sidebar {
  position: sticky;
  top: 96px;
}

.guide-toc-card {
  padding: 22px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
}

.guide-toc-card h2 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  color: #211335;
}

.guide-toc-card ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.guide-toc-card a {
  color: var(--guide-muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.guide-toc-card a:hover {
  color: var(--guide-primary-dark);
  text-decoration: underline;
}

.guide-article {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.guide-content-card,
.guide-final-cta {
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--guide-border);
  border-radius: var(--guide-radius);
  background: var(--guide-white);
  box-shadow: var(--guide-shadow-soft);
}

.guide-content-card h2,
.guide-final-cta h2 {
  margin: 0 0 14px;
  color: #211335;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.guide-content-card h3 {
  margin: 24px 0 8px;
  color: #2f1b46;
  font-size: 1.15rem;
  line-height: 1.3;
}

.guide-content-card p,
.guide-final-cta p {
  margin: 0 0 16px;
  color: #4b5563;
  font-size: 1rem;
}

.guide-content-card p:last-child,
.guide-final-cta p:last-child {
  margin-bottom: 0;
}

.lead {
  color: #374151 !important;
  font-size: clamp(1.08rem, 2vw, 1.22rem) !important;
}

.intro-card {
  border-color: rgba(245, 158, 11, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #fffbeb 100%);
}

.gentle-note {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: var(--guide-radius-sm);
  background: var(--guide-lavender);
}

.gentle-note i {
  color: var(--guide-primary);
  font-size: 1.25rem;
  line-height: 1.7;
}

.gentle-note p {
  margin: 0;
}

/* =========================================================
CONTENT COMPONENTS
========================================================= */
.benefit-grid,
.option-grid,
.sample-routine-grid,
.related-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.benefit-card,
.option-card,
.sample-routine-card,
.related-guide-link,
.day-card {
  border: 1px solid var(--guide-border);
  border-radius: var(--guide-radius-sm);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(88, 28, 135, 0.05);
}

.benefit-card,
.option-card,
.sample-routine-card,
.day-card {
  padding: 20px;
}

.benefit-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: var(--guide-lavender);
  color: var(--guide-primary);
}

.benefit-card h3,
.option-card h3,
.sample-routine-card h3,
.day-card h3 {
  margin-top: 0;
}

.benefit-card p,
.option-card p,
.sample-routine-card p,
.day-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.routine-steps {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.routine-step {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--guide-border);
  border-radius: var(--guide-radius-sm);
  background: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--guide-primary), var(--guide-primary-dark));
  color: #ffffff;
  font-weight: 800;
}

.routine-step h3 {
  margin-top: 0;
}

.prayer-box {
  margin: 24px 0;
  padding: 24px;
  border-left: 5px solid var(--guide-primary);
  border-radius: var(--guide-radius-sm);
  background: var(--guide-lavender);
}

.prayer-box h3 {
  margin-top: 0;
}

.prayer-box p {
  color: #3b2a55;
  font-size: 1.05rem;
  font-weight: 600;
}

.guide-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
  color: #4b5563;
}

.guide-list li::marker {
  color: var(--guide-primary);
}

.two-column-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
}

.struggle-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.struggle-item {
  padding: 20px;
  border: 1px solid var(--guide-border);
  border-radius: var(--guide-radius-sm);
  background: #fff;
}

.struggle-item h3 {
  margin-top: 0;
}

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

.day-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--guide-primary-dark);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.full-width {
  grid-column: 1 / -1;
}

.sample-routine-card ol {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
  color: #4b5563;
}

.related-guides-card {
  background: linear-gradient(180deg, #ffffff 0%, #fdf2f8 100%);
}

.related-guide-link {
  display: flex;
  gap: 14px;
  padding: 18px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.related-guide-link:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: var(--guide-shadow-soft);
}

.related-guide-link span {
  display: inline-flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--guide-lavender);
  color: var(--guide-primary);
}

.related-guide-link h3 {
  margin: 0 0 5px;
  font-size: 1rem;
}

.related-guide-link p {
  margin: 0;
  font-size: 0.92rem;
}

/* =========================================================
FAQ
========================================================= */
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.faq-list details {
  border: 1px solid var(--guide-border);
  border-radius: var(--guide-radius-sm);
  background: #ffffff;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: #2f1b46;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  float: right;
  color: var(--guide-primary);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list details p {
  padding: 0 20px 20px;
  margin: 0;
}

/* =========================================================
FINAL CTA
========================================================= */
.guide-final-cta {
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 34%),
    linear-gradient(135deg, #faf5ff 0%, #ffffff 52%, #fff7ed 100%);
}

.guide-final-cta p {
  max-width: 720px;
  margin: 0 auto 22px;
}

/* =========================================================
RESPONSIVE
========================================================= */
@media (max-width: 980px) {
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .guide-sidebar {
    position: static;
  }

  .guide-toc-card ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .guide-hero {
    padding-top: 30px;
  }

  .guide-hero-card,
  .guide-content-card,
  .guide-final-cta {
    border-radius: 20px;
  }

  .guide-hero-meta,
  .breadcrumb {
    align-items: flex-start;
  }

  .benefit-grid,
  .option-grid,
  .sample-routine-grid,
  .related-guide-grid,
  .day-plan-grid,
  .two-column-list,
  .guide-toc-card ol {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: auto;
  }

  .routine-step {
    grid-template-columns: 1fr;
  }

  .step-number {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .guide-hero-card,
  .guide-content-card,
  .guide-final-cta,
  .guide-toc-card {
    padding: 22px;
  }

  .guide-hero h1 {
    font-size: 2rem;
  }

  .guide-hero-meta span {
    width: 100%;
  }

  .related-guide-link {
    flex-direction: column;
  }
}