body {
  overflow-x: visible !important;
  width: 100% !important;
}
.nexo-landing.ast-separate-container,
.nexo-landing.ast-separate-container .ast-article-single,
.nexo-landing .ast-container {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}
.nexo-landing .site-content .ast-container {
  max-width: 100% !important;
  padding: 0 !important;
}
.nexo-landing .entry-content {
  margin: 0 !important;
  padding: 0 !important;
}
.nexo-landing .entry-header {
  display: none;
}
.nexo-landing .ast-row,
.nexo-landing .site-main {
  margin: 0 !important;
  padding: 0 !important;
}
.nexo-landing .ast-article-single {
  border: none !important;
  box-shadow: none !important;
}

.nl {
  --bg: #F2EDE4;
  --surface: rgba(255,255,255,0.55);
  --surface-solid: #FFFFFF;
  --surface-elev: rgba(255,255,255,0.75);
  --text: #1A1714;
  --text-soft: #7A756E;
  --text-muted: #A8A29E;
  --accent: #2B6B7B;
  --accent-hover: #3A8B9B;
  --accent-glow: rgba(43,107,123,0.12);
  --warm: #D4804A;
  --warm-glow: rgba(212,128,74,0.12);
  --border: rgba(58,53,48,0.08);
  --border-strong: rgba(58,53,48,0.15);
  --ff-serif: 'Fraunces', Georgia, serif;
  --ff-sans: 'Manrope', system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow-card: 0 4px 24px rgba(58,53,48,0.06);
  --shadow-elev: 0 8px 40px rgba(58,53,48,0.08);
}
.nl,
.nl * { box-sizing: border-box; }

.nl {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
  width: 100%;
}
.nl-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 40% at 10% 15%, rgba(43,107,123,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 35% 25% at 90% 85%, rgba(212,128,74,0.03) 0%, transparent 55%);
}

.nl-glass {
  background: var(--surface);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card), inset 0 1px 1px rgba(255,255,255,0.6);
  position: relative;
  overflow: hidden;
}
.nl-glass::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg,
    rgba(43,107,123,0.18) 0%,
    rgba(43,107,123,0.06) 20%,
    rgba(255,255,255,0.4) 40%,
    transparent 55%,
    rgba(43,107,123,0.03) 75%,
    rgba(255,255,255,0.2) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.nl-glass-strong {
  background: var(--surface-elev);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-elev), inset 0 1px 1px rgba(255,255,255,0.7);
  position: relative;
  overflow: hidden;
}
.nl-glass-strong::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg,
    rgba(43,107,123,0.25) 0%,
    rgba(43,107,123,0.10) 20%,
    rgba(255,255,255,0.5) 40%,
    transparent 55%,
    rgba(43,107,123,0.05) 75%,
    rgba(255,255,255,0.3) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.nl-header {
  position: fixed;
  top: 1.25rem;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
}
.nl-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 1.5rem;
  position: relative;
  background: rgba(242,237,228,0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border-strong);
  border-radius: 9999px;
  box-shadow: 0 8px 32px rgba(58,53,48,0.10), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nl-header-inner.scrolled {
  border-color: rgba(43,107,123,0.20);
  box-shadow: 0 8px 40px rgba(58,53,48,0.12), 0 0 40px rgba(43,107,123,0.06);
}
.nl-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nl-logo img {
  height: 28px;
  width: auto;
  display: block;
}
.nl-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  background: var(--accent);
  color: white !important;
  padding: 7px 18px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(43,107,123,0.18);
}
.nl-header-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(43,107,123,0.28);
  color: white !important;
}

.nl-nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 16px;
}
.nl-nav-links a {
  font-size: 12px;
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 6px;
  position: relative;
  transition: color 0.3s;
}
.nl-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 6px;
  right: 6px;
  height: 1.5px;
  background: var(--warm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 2px;
}
.nl-nav-links a:hover {
  color: var(--text);
}
.nl-nav-links a:hover::after {
  transform: scaleX(1);
}
.nl-nav-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.3;
  margin: 0 4px;
}

@media (max-width: 720px) {
  .nl-nav-links {
    display: none;
  }
}

.nl-hero {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  min-height: auto;
  height: min(100vh, 750px);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.nl-hero-content {
  padding: 120px 2rem 72px max(5rem, 6vw);
  max-width: 560px;
  justify-self: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.nl-hero-visual {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100%;
}

.nl-hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(242, 237, 228) 10%, rgba(0, 0, 0, 0) 25%);
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 1400px) {
  .nl-hero-visual::before {
    background: linear-gradient(90deg, rgb(242, 237, 228) 10%, rgba(0, 0, 0, 0) 25%);
  }
}

.nl-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(43,107,123,0.15);
  background: rgba(43,107,123,0.05);
  margin-bottom: 24px;
  align-self: flex-start;
}
.nl-hero h1 {
  font-family: var(--ff-serif);
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 500;
  line-height: 1.04;
  color: var(--text);
  font-variation-settings: 'SOFT' 65;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  max-width: 520px;
}
.nl-hero h1 em {
  font-style: normal;
  color: var(--warm);
  font-weight: 600;
}
.nl-hero-line {
  width: 44px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 16px 0 20px;
}
.nl-hero-sub {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.85;
  font-weight: 300;
  max-width: 460px;
  margin: 0 0 26px;
}
.nl-hero-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.nl-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 500;
}
.nl-hero-meta-item svg { color: var(--accent); flex-shrink: 0; }
.nl-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.nl-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white !important;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(43,107,123,0.20);
}
.nl-btn-primary:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(43,107,123,0.30);
  color: white !important;
}
.nl-btn-ghost {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.nl-btn-ghost:hover { color: var(--accent); }

.nl-section {
  padding: 80px 2rem;
  position: relative;
  z-index: 1;
}
#nl-capitulos {
  padding-bottom: 48px;
}
.nl-wrap { max-width: 1200px; margin: 0 auto; }
.nl-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
  display: block;
}
.nl-label-warm { color: var(--warm); }
.nl-h2 {
  font-family: var(--ff-serif);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.12;
  font-variation-settings: 'SOFT' 65;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}
.nl-h2 em {
  font-style: normal;
  color: var(--warm);
  font-weight: 600;
}
.nl-sub {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
  font-weight: 300;
  max-width: 540px;
  margin: 0 0 36px;
}

.nl-visual-section {
  width: 100%;
  height: min(60vh, 520px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.nl-benefits-bg {
  background: rgba(224,216,204,0.3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.nl-benefits-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.nl-benefit-card {
  flex: 1;
  padding: 32px 26px;
  cursor: default;
  transition: transform 0.3s, box-shadow 0.3s;
}
.nl-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(58,53,48,0.10);
}
.nl-benefit-card-number {
  font-family: var(--ff-serif);
  font-size: 42px;
  font-weight: 300;
  color: rgba(43,107,123,0.08);
  line-height: 1;
  margin-bottom: -8px;
  font-variation-settings: 'SOFT' 65;
  letter-spacing: -0.03em;
}
.nl-benefit-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(43,107,123,0.06);
  border: 1px solid rgba(43,107,123,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.nl-benefit-card h3 {
  font-family: var(--ff-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px;
  font-variation-settings: 'SOFT' 65;
}
.nl-benefit-card p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

.nl-chapters-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}
.nl-chapters-sidebar {
  position: sticky;
  top: 88px;
}
.nl-chapters-sidebar .nl-glass { padding: 28px 22px; }
.nl-sidebar-title {
  font-family: var(--ff-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  font-variation-settings: 'SOFT' 65;
  margin-bottom: 4px;
}
.nl-sidebar-author {
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 400;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.nl-sidebar-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 10px;
}
.nl-sidebar-stat:last-of-type { margin-bottom: 0; }
.nl-sidebar-stat svg { color: var(--accent); flex-shrink: 0; }
.nl-sidebar-cta {
  display: block;
  text-align: center;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
.nl-sidebar-cta:hover { opacity: 0.75; }

.nl-accordion { max-width: 100%; }
.nl-acc-item {
  border-bottom: 1px solid var(--border);
  border-radius: 8px;
  transition: background 0.2s;
}
.nl-acc-item:first-child { border-top: 1px solid var(--border); }
.nl-acc-item:hover,
.nl-acc-trigger:hover,
.nl-acc-trigger:focus,
.nl-acc-trigger:active,
.nl-acc-trigger:focus-visible,
.nl-acc-trigger[aria-expanded="true"],
.nl-acc-item.open,
.nl-acc-item.open .nl-acc-trigger,
.nl-acc-item.open .nl-acc-trigger[aria-expanded="true"] {
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}
.nl-acc-item:hover .nl-acc-title {
  color: var(--warm);
}
.nl-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 4px;
  background: none !important;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--text);
}
.nl-acc-num {
  font-family: var(--ff-serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--warm);
  min-width: 28px;
}
.nl-acc-title {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.nl-acc-chevron {
  color: var(--text-muted);
  transition: transform 0.3s;
}
.nl-acc-item.open .nl-acc-chevron { transform: rotate(180deg); }
.nl-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s;
  padding: 0 4px 0 42px;
}
.nl-acc-item.open .nl-acc-body {
  max-height: 200px;
  padding-bottom: 18px;
}
.nl-acc-body p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.75;
  font-weight: 300;
  margin: 0;
}
.nl-acc-section-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 4px 6px;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
}

.nl-vets-bg {
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(43,107,123,0.03) 25%,
    rgba(43,107,123,0.03) 75%,
    transparent 100%
  );
}
.nl-vets-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.nl-vet-card {
  padding: 32px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.nl-vet-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(58,53,48,0.10);
}
.nl-vet-quote-mark {
  font-family: var(--ff-serif);
  font-size: 64px;
  font-weight: 700;
  line-height: 0.6;
  color: rgba(43,107,123,0.12);
  margin-bottom: 4px;
  user-select: none;
}
.nl-vet-quote {
  font-family: var(--ff-serif);
  font-size: 15px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-variation-settings: 'SOFT' 60;
}
.nl-vet-profile { display: flex; align-items: center; gap: 14px; }
.nl-vet-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 16px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.6);
  box-shadow: 0 2px 8px rgba(58,53,48,0.08);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.nl-vet-name { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 1px; }
.nl-vet-role { font-size: 11px; color: var(--accent); font-weight: 500; }

.nl-clinicas-row {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(43,107,123,0.10);
}
.nl-clinicas-label {
  font-size: 10px;
  color: var(--text-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  text-align: center;
}
.nl-clinicas-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  width: 100%;
}
.nl-clinica-pill {
  font-size: 11px;
  color: var(--text);
  font-weight: 500;
  background: var(--surface-solid);
  border: 1px solid rgba(43,107,123,0.10);
  padding: 5px 12px;
  border-radius: 100px;
  transition: border-color 0.2s;
}
.nl-clinica-pill:hover { border-color: rgba(43,107,123,0.25); }

.nl-download-bg {
  background: linear-gradient(165deg, rgba(224,216,204,0.4) 0%, transparent 100%);
  border-top: 1px solid var(--border);
}
.nl-download-card {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  padding: 36px 40px;
}
.nl-download-h2 {
  font-family: var(--ff-serif);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.15;
  margin: 0 0 8px;
  font-variation-settings: 'SOFT' 65;
}
.nl-download-h2 em { color: var(--warm); font-style: normal; font-weight: 600; }
.nl-download-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
}
.nl-btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white !important;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 6px 28px rgba(43,107,123,0.22);
  margin-bottom: 6px;
}
.nl-btn-download:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(43,107,123,0.32);
  color: white !important;
}
.nl-download-note {
  display: block;
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 400;
  margin-bottom: 16px;
}
.nl-download-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.nl-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 500;
}
.nl-trust-item svg { color: var(--accent); flex-shrink: 0; }

.nl-quote-wrap {
  max-width: 600px;
  margin: 64px auto 0;
  text-align: center;
  position: relative;
  padding-top: 28px;
}
.nl-quote-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background: var(--warm);
  border-radius: 2px;
  opacity: 0.5;
}
.nl-quote-wrap blockquote {
  font-family: var(--ff-serif);
  font-size: clamp(17px, 2.2vw, 22px);
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  font-variation-settings: 'SOFT' 60;
  font-weight: 500;
  margin: 0 0 10px;
  border-left: none !important;
}
.nl-quote-wrap figcaption {
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nl-footer {
  background: var(--text);
  color: rgba(242,237,228,0.45);
  padding: 28px 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.nl-footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-serif);
  font-size: 13px;
  font-weight: 500;
  color: rgba(242,237,228,0.75);
  text-decoration: none;
  font-variation-settings: 'SOFT' 70;
}
.nl-footer-logo img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.nl-footer small { font-size: 11px; }
.nl-footer a {
  color: rgba(242,237,228,0.35);
  text-decoration: none;
  font-size: 11px;
  transition: color 0.2s;
}
.nl-footer a:hover { color: var(--warm); }

.nl-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.nl-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.nl-reveal-d1 { transition-delay: 0.08s; }
.nl-reveal-d2 { transition-delay: 0.16s; }
.nl-reveal-d3 { transition-delay: 0.24s; }

.nl-content-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.nl-content-stack h2, .nl-content-stack h3 {
  font-family: var(--ff-serif);
  font-variation-settings: 'SOFT' 65;
}
.nl-content-stack p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.85;
  font-weight: 300;
}
.nl-content-stack iframe.wp-block-embed__wrapper,
.nl-content-stack .wp-block-image img,
.nl-content-stack .wp-block-cover {
  border-radius: var(--radius-sm);
}

@media (max-width: 960px) {
  .nl-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .nl-hero-content {
    padding: 100px 1.5rem 32px;
    max-width: 100%;
    justify-self: auto;
    order: 1;
  }
  .nl-hero-visual {
    min-height: 300px;
    order: 0;
  }
  .nl-hero-visual::before {
    background: linear-gradient(180deg, rgb(242, 237, 228) 10%, rgba(0, 0, 0, 0) 30%);
  }
  .nl-hero h1 { max-width: 100%; }
  .nl-hero-tag { align-self: center; }
  .nl-hero-sub { max-width: 100%; }
  .nl-cta-row { justify-content: center; }
  .nl-hero-meta { justify-content: center; }
  .nl-hero-line { margin: 16px auto 20px; }
  .nl-benefits-row { grid-template-columns: 1fr; }
  .nl-chapters-layout { grid-template-columns: 1fr; }
  .nl-chapters-sidebar { position: static; }
  .nl-visual-section { height: min(40vh, 300px); }
}
@media (max-width: 768px) {
  .nl-header { padding: 0 1rem; top: 0.75rem; }
  .nl-header-inner { height: 50px; padding: 0 1.25rem; }
  .nl-section { padding: 56px 1.25rem; }
  .nl-hero-content { padding: 88px 1.25rem 32px; }
  .nl-hero-visual { min-height: 240px; }
  .nl-sub { max-width: 100%; }
  .nl-vets-grid { grid-template-columns: 1fr; }
  .nl-download-card { padding: 28px 20px; }
  .nl-vet-card { padding: 28px 22px; }
  .nl-quote-wrap blockquote { font-size: 15px; }
  .nl-footer { flex-direction: column; text-align: center; padding: 24px 1.25rem; }
}
@media (max-width: 480px) {
  .nl-hero h1 { font-size: 30px; }
  .nl-hero-meta { gap: 12px; }
  .nl-download-trust { gap: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .nl-reveal { opacity: 1; transform: none; }
}
