

.l-shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

.l-band {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1rem;
}


.l-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--rule);
}

.l-header-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
  min-height: 4rem;
}

.l-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.375rem;
  font-style: italic;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.l-brand-tail {
  font-style: italic;
  font-weight: 400;
  color: var(--brand-ember);
}

.l-nav {
  gap: 0;
}

.l-nav-list {
  display: flex;
  flex-direction: column;
}

.l-nav-item {
  list-style: none;
}

.l-nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-secondary);
}

.l-header-veil {
  border: none;
}

.l-theme-switch {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--rule);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: border-color var(--tempo), color var(--tempo);
}

.l-theme-switch:hover {
  border-color: var(--brand-ember);
  color: var(--brand-ember);
}

.l-header-toggle {
  margin-left: 0.25rem;
}

.l-header-close {
  color: var(--text-primary);
}


.l-main {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
  align-content: flex-start;
}

.l-section {
  flex: 1 1 100%;
  min-width: 18.75rem;
  padding: 1.5rem 1rem;
}

.l-section-alt {
  background: var(--bg-secondary);
}

.l-divider {
  flex: 1 1 100%;
  height: 5rem;
  background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
}

.l-divider-flip {
  background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary));
}

.l-head {
  max-width: 44rem;
  margin-bottom: 1.5rem;
}


.the-upside,
.features-list,
.reader-services {
  background: var(--bg-primary);
}

.editorial-band,
.behind-scenes,
.correspondence {
  background: var(--bg-secondary);
}

.reader-questions {
  background: var(--bg-primary);
  padding-bottom: 3rem;
}

.footer-col {
  min-width: 0;
}

.form-order {
  display: block;
}

.qanswer {
  display: block;
}


.l-masthead {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 80vh;
  overflow: hidden;
  color: #ffffff;
  padding: 3rem 1rem;
}

.l-masthead::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11, 18, 32, 0.9) 0%, rgba(11, 18, 32, 0.66) 52%, rgba(217, 72, 15, 0.36) 100%);
  z-index: 1;
}

.l-masthead h1,
.l-masthead h2,
.l-masthead h3 {
  color: #ffffff;
}

.l-masthead p {
  color: #dde5f0;
}

.l-masthead .u-eyebrow {
  color: var(--brand-lemon);
}

.l-masthead .u-muted {
  color: #b6c2d4;
}

.l-masthead .btn-ghost {
  color: #ffffff;
}

.masthead-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.masthead-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
  max-width: 72rem;
}

.masthead-copy {
  padding-right: 0;
}

.masthead-figure {
  position: relative;
}

.masthead-shot {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.4);
}

.masthead-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}


.l-footer {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 58%, #7c2d12 100%);
  color: #e2e8f0;
  padding: 3rem 1rem 1.5rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 2rem;
  max-width: 72rem;
  margin-inline: auto;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-lemon);
  margin-bottom: 1rem;
}

.footer-list li {
  margin-bottom: 0.5rem;
}

.footer-list a {
  font-size: 0.9375rem;
  color: #cbd5e1;
  transition: color var(--tempo);
}

.footer-list a:hover {
  color: var(--brand-lemon);
}

.footer-brand {
  font-style: italic;
  font-weight: 600;
  font-size: 1.375rem;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-note {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #b6c2d4;
  margin-bottom: 0.5rem;
}

.footer-base {
  max-width: 72rem;
  margin: 2rem auto 0;
  border-top: 1px solid rgba(226, 232, 240, 0.22);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: #b6c2d4;
}


.l-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1300;
  background: rgba(15, 23, 42, 0.96);
  border-top: 1px solid rgba(245, 189, 18, 0.4);
  padding: 0.625rem 1rem;
}

.sticky-bar-inner {
  max-width: 72rem;
  margin-inline: auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
}

.sticky-bar-text {
  color: #e2e8f0;
  font-size: 0.8125rem;
  line-height: 1.3;
  margin-bottom: 0;
}

.sticky-bar-price {
  display: block;
  color: var(--brand-lemon);
  font-size: 1.0625rem;
  font-weight: 600;
}


.l-order-dock {
  position: fixed;
  right: 0;
  bottom: 4.5rem;
  left: 0;
  z-index: 1350;
  max-width: 24rem;
  margin-inline: auto;
  background: var(--surface-raised);
  border: 1px solid var(--rule);
  border-radius: 0.875rem;
  box-shadow: var(--shade-dock);
  padding: 1.25rem;
  max-height: 78vh;
  overflow-y: auto;
}

.dock-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.dock-close {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--rule);
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1;
  flex: 0 0 auto;
}

.dock-close:hover {
  border-color: var(--brand-ember);
  color: var(--brand-ember);
}


.l-paper {
  max-width: 48rem;
  margin-inline: auto;
  padding: 2rem 1rem 3rem;
}

.l-paper h2 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.l-paper h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.l-paper p {
  margin-bottom: 1rem;
}

.l-paper li {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}

.l-paper li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 50%;
  background: var(--brand-lemon);
}

.paper-lede {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--text-primary);
  border-left: 3px solid var(--brand-lemon);
  padding-left: 1rem;
}

.paper-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
  margin-top: 2rem;
}


@media (min-width: 48rem) {
  .l-band { padding-inline: 2rem; }
  .l-section { padding: 3rem 2rem; }
  .l-masthead { padding: 4rem 2rem; }
  .masthead-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .masthead-copy { padding-right: 2rem; }
  .l-order-dock { left: auto; right: 1.5rem; margin-inline: 0; }
  .sticky-bar-text { font-size: 0.9375rem; }
  .l-paper { padding: 3rem 2rem 4rem; }
}

@media (min-width: 64rem) {
  .footer-cols { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .l-head { margin-bottom: 2rem; }
}



@media (max-width: 47.9375rem) {
  .l-nav-item {
    transform: translateX(-100%);
    transition: transform 0.3s;
  }
  .mm-open .l-nav-item {
    transform: translateX(0);
  }
  .l-nav-item:nth-child(2) { transition-delay: 0.04s; }
  .l-nav-item:nth-child(3) { transition-delay: 0.08s; }
  .l-nav-item:nth-child(4) { transition-delay: 0.12s; }
}
