.lr-guide {
  --lr-navy: var(--theme-brand-navy-deep);
  --lr-navy-strong: var(--secondary-darker);
  --lr-gold: var(--theme-brand-gold);
  --lr-gold-soft: var(--theme-brand-gold-soft);
  --lr-cream: var(--theme-brand-cream);
  --lr-cream-strong: var(--theme-brand-cream-strong);
  --lr-text: var(--theme-text-strong);
  --lr-muted: var(--theme-text-muted);
  --lr-border: var(--theme-border-strong);
  --lr-shadow: var(--theme-shadow-brand-lg);
  --lr-shadow-soft: var(--theme-shadow-brand-soft);
  --lr-radius-xl: 32px;
  --lr-radius-lg: 24px;
  --lr-radius-md: 18px;
  background:
    radial-gradient(
      circle at top left,
      rgba(212, 175, 55, 0.14),
      transparent 24%
    ),
    radial-gradient(
      circle at right 10% top 18%,
      rgba(15, 33, 56, 0.05),
      transparent 28%
    ),
    linear-gradient(180deg, #f7f1e7 0%, #fcfaf6 44%, #f5eee3 100%);
  color: var(--lr-text);
  padding-bottom: 5rem;
}

.lr-guide h1,
.lr-guide h2,
.lr-guide h3,
.lr-guide strong {
  font-family: "Playfair Display", Georgia, serif;
}

.lr-guide p,
.lr-guide li,
.lr-guide small,
.lr-guide span,
.lr-guide a {
  font-family: "Lato", sans-serif;
}

.lr-guide__breadcrumb {
  padding-top: 1.25rem;
}

.lr-guide__breadcrumb .breadcrumb {
  margin-bottom: 0;
  padding: 0.95rem 1.2rem;
  border: 1px solid rgba(15, 33, 56, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lr-guide__breadcrumb a,
.lr-guide__breadcrumb .breadcrumb-item,
.lr-guide__breadcrumb .active {
  color: var(--lr-text);
}

.lr-guide__hero {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 1.75rem;
}

.lr-guide__hero::before,
.lr-guide__hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.lr-guide__hero::before {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -100px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.28),
    transparent 72%
  );
}

.lr-guide__hero::after {
  width: 280px;
  height: 280px;
  left: -80px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(15, 33, 56, 0.12), transparent 70%);
}

.lr-guide__hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 2rem;
  align-items: stretch;
}

.lr-guide__hero-copy,
.lr-guide__hero-panel,
.lr-guide__notice-card,
.lr-guide__toc-item,
.lr-snapshot-card,
.lr-panel,
.lr-compliance-card,
.lr-operation-card,
.lr-resource-card,
.lr-guide__final-cta-box {
  border: 1px solid var(--lr-border);
  border-radius: var(--lr-radius-xl);
  box-shadow: var(--lr-shadow-soft);
}

.lr-guide__hero-copy {
  padding: 3rem;
  background: linear-gradient(
    135deg,
    rgba(9, 19, 33, 0.98),
    rgba(15, 33, 56, 0.9)
  );
  color: #f8f3e8;
}

.lr-guide__eyebrow,
.lr-guide__section-kicker {
  display: inline-block;
  margin: 0 0 1rem;
  color: rgba(212, 175, 55, 0.96);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lr-guide__eyebrow--soft {
  color: var(--lr-gold);
}

.lr-guide__hero h1 {
  margin: 0;
  color: #fff8ea;
  font-size: clamp(2.75rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.lr-guide__lead {
  max-width: 62ch;
  margin: 1.4rem 0 0;
  color: rgba(248, 243, 232, 0.86);
  font-size: 1.08rem;
  line-height: 1.85;
}

.lr-guide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.lr-guide__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background-color 0.24s ease,
    color 0.24s ease;
}

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

.lr-guide__btn--primary {
  color: #1b2b40;
  background: linear-gradient(135deg, var(--lr-gold), #ebd183);
  box-shadow: 0 18px 34px rgba(212, 175, 55, 0.24);
}

.lr-guide__btn--primary:hover {
  color: #1b2b40;
  box-shadow: 0 22px 40px rgba(212, 175, 55, 0.3);
}

.lr-guide__btn--secondary {
  color: #fff8ea;
  border: 1px solid rgba(255, 248, 234, 0.26);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lr-guide__btn--secondary:hover {
  color: #fff8ea;
  border-color: rgba(255, 248, 234, 0.42);
  background: rgba(255, 255, 255, 0.13);
}

.lr-guide__hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
}

.lr-stat-card {
  padding: 1.05rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--lr-radius-lg);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lr-stat-card strong {
  display: block;
  color: #fff7e6;
  font-size: 1rem;
}

.lr-stat-card span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(248, 243, 232, 0.76);
  line-height: 1.65;
  font-size: 0.92rem;
}

.lr-guide__hero-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 251, 242, 0.98),
    rgba(250, 244, 232, 0.95)
  );
  box-shadow: var(--lr-shadow);
}

.lr-guide__hero-media {
  position: relative;
  min-height: 290px;
}

.lr-guide__hero-media img,
.lr-panel__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lr-guide__hero-note {
  padding: 1.6rem;
}

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

.lr-guide__bullet-list li {
  position: relative;
  padding: 0 0 0 1.75rem;
  margin-bottom: 0.95rem;
  line-height: 1.72;
  color: var(--lr-text);
}

.lr-guide__bullet-list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lr-gold), #f1d98b);
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.12);
}

.lr-guide__bullet-list--tight li {
  margin-bottom: 0.8rem;
}

.lr-guide__mini-alert,
.lr-callout {
  margin-top: 1.3rem;
  padding: 1rem 1.1rem;
  border-radius: var(--lr-radius-md);
}

.lr-guide__mini-alert {
  background: rgba(15, 33, 56, 0.05);
  border: 1px solid rgba(15, 33, 56, 0.08);
}

.lr-guide__mini-alert strong,
.lr-callout strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--lr-navy);
}

.lr-guide__mini-alert p,
.lr-callout p,
.lr-section__head p,
.lr-panel p,
.lr-compliance-card p,
.lr-operation-card p,
.lr-resource-card span,
.lr-guide__notice-card p,
.lr-snapshot-card p {
  margin: 0;
  color: var(--lr-muted);
  line-height: 1.8;
}

.lr-guide__intro-band {
  padding: 0.5rem 0 0.75rem;
}

.lr-guide__intro-grid,
.lr-guide__snapshot-grid,
.lr-guide__compliance-grid,
.lr-guide__operations-grid,
.lr-guide__resource-grid {
  display: grid;
  gap: 1.25rem;
}

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

.lr-guide__notice-card {
  padding: 1.65rem 1.7rem;
  background: rgba(255, 255, 255, 0.78);
}

.lr-guide__notice-card--accent {
  background: linear-gradient(
    135deg,
    rgba(15, 33, 56, 0.95),
    rgba(29, 49, 76, 0.92)
  );
}

.lr-guide__notice-card--accent h2,
.lr-guide__notice-card--accent p {
  color: #f6f1e6;
}

.lr-guide__notice-card h2,
.lr-guide__snapshot-head h2,
.lr-section__head h2,
.lr-guide__final-cta-box h2 {
  margin: 0 0 0.7rem;
  color: var(--lr-navy);
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: 1.06;
}

.lr-guide__notice-card--accent .lr-guide__section-kicker {
  color: rgba(212, 175, 55, 0.94);
}

.lr-guide__toc-wrap {
  padding-top: 1rem;
}

.lr-guide__toc {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.lr-guide__toc-item {
  display: block;
  min-height: 148px;
  padding: 1.25rem 1.25rem 1.15rem;
  background: rgba(255, 255, 255, 0.84);
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.lr-guide__toc-item:hover,
.lr-snapshot-card:hover,
.lr-panel:hover,
.lr-compliance-card:hover,
.lr-operation-card:hover,
.lr-resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lr-shadow);
}

.lr-guide__toc-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.18),
    rgba(212, 175, 55, 0.36)
  );
  color: var(--lr-navy);
  font-weight: 800;
}

.lr-guide__toc-item strong,
.lr-snapshot-card strong,
.lr-resource-card strong {
  display: block;
  color: var(--lr-navy);
  font-size: 1.12rem;
}

.lr-guide__toc-item small {
  display: block;
  margin-top: 0.5rem;
  color: var(--lr-muted);
  line-height: 1.6;
}

.lr-guide__snapshot {
  padding-top: 1.3rem;
}

.lr-guide__snapshot-head {
  max-width: 760px;
  margin-bottom: 1.35rem;
}

.lr-guide__snapshot-grid,
.lr-guide__compliance-grid,
.lr-guide__operations-grid,
.lr-guide__resource-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lr-snapshot-card,
.lr-compliance-card,
.lr-operation-card,
.lr-resource-card {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.lr-section {
  padding-top: 4rem;
}

.lr-section__head {
  max-width: 860px;
  margin-bottom: 1.5rem;
}

.lr-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.lr-panel {
  overflow: hidden;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.82);
}

.lr-panel h3,
.lr-compliance-card h3,
.lr-operation-card h3 {
  margin: 0 0 0.85rem;
  color: var(--lr-navy);
  font-size: 1.45rem;
}

.lr-panel__media {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 1.2rem;
  min-height: 220px;
}

.lr-panel__media--large {
  min-height: 280px;
}

.lr-panel--accent {
  background: linear-gradient(
    180deg,
    rgba(255, 251, 243, 0.98),
    rgba(247, 239, 224, 0.94)
  );
}

.lr-panel--soft {
  background: rgba(241, 246, 250, 0.88);
}

.lr-panel--media {
  display: grid;
  align-content: start;
}

.lr-callout {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.24);
}

.lr-callout--dark {
  background: linear-gradient(
    135deg,
    rgba(9, 19, 33, 0.96),
    rgba(18, 31, 48, 0.92)
  );
  border-color: rgba(255, 255, 255, 0.08);
}

.lr-callout--dark strong,
.lr-callout--dark p {
  color: #f7f1e6;
}

.lr-callout--plain {
  background: rgba(15, 33, 56, 0.05);
  border-color: rgba(15, 33, 56, 0.08);
}

.lr-guide__compliance-grid,
.lr-guide__operations-grid {
  margin-bottom: 1.3rem;
}

.lr-compliance-card,
.lr-operation-card {
  min-height: 100%;
}

.lr-section--resources {
  padding-bottom: 1rem;
}

.lr-resource-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.lr-guide__final-cta {
  padding-top: 4rem;
}

.lr-guide__final-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(9, 19, 33, 0.98),
    rgba(15, 33, 56, 0.92)
  );
}

.lr-guide__final-cta-box h2,
.lr-guide__final-cta-box p {
  color: #f7f1e6;
}

.lr-guide__actions--final {
  justify-content: flex-end;
  margin-top: 0;
}

.lr-guide__hero-copy,
.lr-guide__hero-panel,
.lr-guide__notice-card,
.lr-guide__toc-item,
.lr-snapshot-card,
.lr-panel,
.lr-compliance-card,
.lr-operation-card,
.lr-resource-card,
.lr-guide__final-cta-box {
  animation: lrFadeUp 0.7s ease both;
}

.lr-guide__hero-panel {
  animation-delay: 0.08s;
}

.lr-guide__notice-card:nth-child(2),
.lr-guide__toc-item:nth-child(2),
.lr-snapshot-card:nth-child(2),
.lr-panel:nth-child(2),
.lr-compliance-card:nth-child(2),
.lr-operation-card:nth-child(2),
.lr-resource-card:nth-child(2) {
  animation-delay: 0.08s;
}

.lr-guide__toc-item:nth-child(3),
.lr-snapshot-card:nth-child(3),
.lr-compliance-card:nth-child(3),
.lr-operation-card:nth-child(3),
.lr-resource-card:nth-child(3) {
  animation-delay: 0.14s;
}

.lr-guide__toc-item:nth-child(4),
.lr-snapshot-card:nth-child(4),
.lr-compliance-card:nth-child(4),
.lr-operation-card:nth-child(4),
.lr-resource-card:nth-child(4) {
  animation-delay: 0.2s;
}

.lr-guide__toc-item:nth-child(5),
.lr-resource-card:nth-child(5) {
  animation-delay: 0.26s;
}

.lr-guide__toc-item:nth-child(6),
.lr-resource-card:nth-child(6) {
  animation-delay: 0.32s;
}

@keyframes lrFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1199px) {
  .lr-guide__hero-grid,
  .lr-guide__final-cta-box,
  .lr-section__grid,
  .lr-guide__intro-grid,
  .lr-guide__snapshot-grid,
  .lr-guide__compliance-grid,
  .lr-guide__operations-grid,
  .lr-guide__resource-grid,
  .lr-guide__toc {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lr-guide__hero-copy {
    padding: 2.25rem;
  }

  .lr-guide__hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .lr-guide {
    padding-bottom: 4rem;
  }

  .lr-guide__breadcrumb {
    padding-top: 1rem;
  }

  .lr-guide__hero {
    padding-top: 1.2rem;
  }

  .lr-guide__hero-grid,
  .lr-guide__intro-grid,
  .lr-guide__toc,
  .lr-guide__snapshot-grid,
  .lr-section__grid,
  .lr-guide__compliance-grid,
  .lr-guide__operations-grid,
  .lr-guide__resource-grid,
  .lr-guide__final-cta-box,
  .lr-guide__hero-stats {
    grid-template-columns: 1fr;
  }

  .lr-guide__hero-copy,
  .lr-guide__hero-note,
  .lr-guide__notice-card,
  .lr-panel,
  .lr-guide__final-cta-box,
  .lr-snapshot-card,
  .lr-compliance-card,
  .lr-operation-card,
  .lr-resource-card {
    padding: 1.35rem;
  }

  .lr-guide__hero h1,
  .lr-guide__notice-card h2,
  .lr-guide__snapshot-head h2,
  .lr-section__head h2,
  .lr-guide__final-cta-box h2 {
    font-size: clamp(2rem, 9vw, 2.85rem);
  }

  .lr-guide__hero-media,
  .lr-panel__media,
  .lr-panel__media--large {
    min-height: 220px;
  }

  .lr-guide__actions,
  .lr-guide__actions--final {
    justify-content: stretch;
  }

  .lr-guide__btn {
    width: 100%;
  }

  .lr-section {
    padding-top: 3rem;
  }

  .lr-guide__final-cta {
    padding-top: 3rem;
  }
}

@media (max-width: 480px) {
  .lr-guide__breadcrumb .breadcrumb {
    padding: 0.8rem 1rem;
    border-radius: 22px;
  }

  .lr-guide__hero-copy,
  .lr-guide__hero-note,
  .lr-guide__notice-card,
  .lr-panel,
  .lr-guide__final-cta-box,
  .lr-snapshot-card,
  .lr-compliance-card,
  .lr-operation-card,
  .lr-resource-card,
  .lr-guide__toc-item {
    border-radius: 24px;
  }

  .lr-guide__hero h1 {
    letter-spacing: -0.02em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lr-guide__hero-copy,
  .lr-guide__hero-panel,
  .lr-guide__notice-card,
  .lr-guide__toc-item,
  .lr-snapshot-card,
  .lr-panel,
  .lr-compliance-card,
  .lr-operation-card,
  .lr-resource-card,
  .lr-guide__final-cta-box {
    animation: none;
  }

  .lr-guide__btn,
  .lr-guide__toc-item,
  .lr-snapshot-card,
  .lr-panel,
  .lr-compliance-card,
  .lr-operation-card,
  .lr-resource-card {
    transition: none;
  }
}
