/* ============================================================
   SIBLING GET ALONG KIT
   Order follows content.html from top to bottom.
   ============================================================ */

:root {
    --navy: #223759;
    --navy-light: #2c4a75;
    --teal: #49AFC1;
    --teal-soft: #e8f5f8;
    --pink: #B80077;
    --pink-hover: #9a0064;
    --cream: #F4F5F7;
    --cream-warm: #ECEEF1;
    --amber: #FDBD0D;
    --charcoal: #3a3a3a;
    --text-mid: #5a6577;
    --text-light: #8a93a3;
    --white: #ffffff;
    --border: rgba(34,55,89,0.08);
    --shadow: 0 4px 30px rgba(34,55,89,0.08);
    --shadow-lg: 0 12px 50px rgba(34,55,89,0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --page-gutter: clamp(20px, 4vw, 28px);
    --container-narrow: 700px;
    --container-wide: 1080px;
    --section-space: clamp(64px, 9vw, 80px);
    --section-space-tight: clamp(48px, 7vw, 60px);
    --hero-space-top: clamp(72px, 10vw, 100px);
    --hero-space-bottom: clamp(64px, 9vw, 88px);
    --sticky-nav-offset: 96px;
}

/* ============================================================
   PAGE FOUNDATION
   ============================================================ */
.sibling-kit-page,
.sibling-kit-page *,
.sibling-kit-page *::before,
.sibling-kit-page *::after {
    box-sizing: border-box;
}

.sibling-kit-page {
    display: block;
    font-family: europa, "Europa", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: var(--charcoal);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

.sibling-kit-page :where(h1, h2, h3, h4, h5, h6, p, ul, ol, li) {
    margin: 0;
}

.sibling-kit-page :where(ul, ol) {
    padding: 0;
}

.sibling-kit-page img {
    display: block;
    max-width: 100%;
    height: auto;
}

.sibling-kit-page strong {
    color: var(--navy);
}

.sibling-kit-page section[id] {
    scroll-margin-top: calc(var(--sticky-nav-offset) + 24px);
}

.sibling-kit-page .narrow-container,
.sibling-kit-page .wide-container,
.sibling-kit-page .story-container,
.sibling-kit-page .nav-inner {
    margin: 0 auto;
    padding: 0 var(--page-gutter);
}

.sibling-kit-page .narrow-container,
.sibling-kit-page .story-container {
    max-width: var(--container-narrow);
}

.sibling-kit-page .wide-container,
.sibling-kit-page .nav-inner {
    max-width: var(--container-wide);
}

/* ============================================================
   SHARED CTA ELEMENTS
   ============================================================ */
.sibling-kit-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 22px 48px;
    background: var(--pink);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 15px;
    box-shadow: 0 6px 24px rgba(184,0,119,0.3);
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: "sweet-sans-pro", europa, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.sibling-kit-page .btn:hover {
    background: var(--pink-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(184,0,119,0.4);
}

.sibling-kit-page .btn:focus-visible,
.sibling-kit-page .nav-links a:focus-visible {
    outline: 3px solid rgba(73, 175, 193, 0.45);
    outline-offset: 4px;
}

.btn-wrap {
    display: flex;
    justify-content: center;
    margin: 28px 0 10px;
}

.btn-hero {
    padding: 24px 52px;
    font-size: 1.15rem;
}

/* ============================================================
   STICKY NAV
   ============================================================ */
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    min-height: var(--sticky-nav-offset);
}

.nav-brand {
    flex: 0 1 240px;
    color: var(--navy);
    font-family: "sweet-sans-pro", europa, sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

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

.nav-links a {
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-cta {
    padding: 10px 24px !important;
    background: var(--pink) !important;
    color: var(--white) !important;
    border-radius: 10px !important;
    transition: background 0.2s !important;
    font-size: 0.85rem !important;
}

.nav-cta:hover {
    background: var(--pink-hover) !important;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: var(--hero-space-top) var(--page-gutter) var(--hero-space-bottom);
    background: var(--navy);
    text-align: center;
}

.hero-content {
    max-width: 740px;
    margin: 0 auto;
}

.hero-label {
    margin-bottom: 20px;
    color: var(--teal);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.hero h1 {
    margin-bottom: 20px;
    color: var(--white);
    font-family: "ivypresto-display", "Playfair Display", Georgia, serif;
    font-weight: 400;
    font-size: 3rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.hero-promise {
    margin-bottom: 28px;
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    line-height: 1.5;
}

.hero-anchor {
    margin-top: 16px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.hero-anchor strong {
    color: var(--amber);
    font-weight: 700;
}

/* ============================================================
   FULL-WIDTH IMAGE BREAKS
   ============================================================ */
.full-image {
    position: relative;
    overflow: hidden;
}

.full-image img {
    width: 100%;
    height: 50vh;
    min-height: 300px;
    max-height: 500px;
    object-fit: cover;
}

.full-image .image-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(34,55,89,0.7), transparent);
    color: var(--white);
    text-align: center;
    font-family: "ivypresto-display", Georgia, serif;
    font-style: italic;
    font-size: 1.3rem;
}

/* ============================================================
   INTRO
   ============================================================ */
.intro {
    padding: var(--section-space) 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(36px, 5vw, 56px);
    align-items: center;
}

.intro-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.intro-text h2 {
    margin-bottom: 16px;
    color: var(--navy);
    font-family: "sweet-sans-pro", europa, sans-serif;
    font-size: 1.8rem;
    line-height: 1.3;
}

.intro-text p {
    margin-bottom: 20px;
    color: var(--text-mid);
    font-size: 1.1rem;
}

.intro-action {
    margin-bottom: 20px;
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: 600;
}

.check-list {
    margin: 0 0 32px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 12px 0 12px 40px;
    border-bottom: 1px solid var(--border);
    color: var(--charcoal);
    font-size: 1.05rem;
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list li::before {
    content: "\2713";
    position: absolute;
    top: 12px;
    left: 0;
    display: flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
}

.intro-text .btn {
    display: inline-block;
    width: auto;
}

.micro-guarantee {
    margin-top: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================================
   STORY HOOK
   ============================================================ */
.story-hook {
    padding: var(--section-space-tight) 0;
    background: var(--navy);
    text-align: center;
}

.story-hook h2 {
    margin: 0 0 8px;
    opacity: 0.9;
    color: var(--white);
    font-family: "ivypresto-display", "Playfair Display", Georgia, serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.5;
}

.hook-sub {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
}

/* ============================================================
   STORY
   ============================================================ */
.story {
    padding: var(--section-space) 0;
    background: var(--cream);
}

.story-container {
    max-width: var(--container-narrow);
}

.story-lead {
    margin-bottom: 16px;
    color: var(--navy);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.7;
}

.story p {
    margin-bottom: 16px;
}

.story em {
    color: var(--pink);
    font-weight: 600;
}

.shout-list {
    margin: 12px 0 16px;
    list-style: none;
}

.shout-list li {
    padding: 5px 0;
    color: var(--pink);
    font-size: 1.1rem;
    font-weight: 700;
    font-style: italic;
}

.problem-list {
    margin: 12px 0 20px;
    list-style: none;
}

.problem-list li {
    position: relative;
    padding: 8px 0 8px 28px;
    color: var(--text-mid);
    line-height: 1.65;
}

.problem-list li::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pink);
    opacity: 0.35;
}

/* ============================================================
   FOR YOU
   ============================================================ */
.for-you {
    padding: var(--section-space) 0;
    background: var(--white);
}

.for-you h2 {
    margin-bottom: 40px;
    color: var(--navy);
    text-align: center;
    font-family: "sweet-sans-pro", europa, sans-serif;
    font-size: 1.8rem;
}

.for-you-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.for-you-item {
    position: relative;
    padding: 20px 24px 20px 56px;
    border-radius: var(--radius-sm);
    background: var(--cream);
    font-size: 1.05rem;
    line-height: 1.5;
    transition: transform 0.2s ease;
}

.for-you-item:hover {
    transform: translateX(4px);
}

.for-you-item::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 20px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--navy);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 13px;
}

/* ============================================================
   BIO
   ============================================================ */
.bio {
    padding: var(--section-space) 0;
    background: var(--cream-warm);
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: start;
}

.bio-photo {
    text-align: center;
}

.bio-photo img {
    max-width: 300px;
    margin: 0 auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.bio-lead {
    margin-bottom: 16px;
    color: var(--navy);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.7;
}

.bio-text p {
    margin-bottom: 16px;
    color: var(--text-mid);
}

/* ============================================================
   PLAN
   ============================================================ */
.plan {
    padding: var(--section-space) 0;
    background: var(--cream);
}

.plan h2 {
    margin-bottom: 40px;
    color: var(--navy);
    text-align: center;
    font-family: "sweet-sans-pro", europa, sans-serif;
    font-size: 1.8rem;
}

.plan-steps {
    display: flex;
    max-width: 600px;
    margin: 0 auto 32px;
    flex-direction: column;
    gap: 24px;
}

.plan-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    display: flex;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    font-family: "sweet-sans-pro", europa, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.step-content h3 {
    margin-bottom: 4px;
    color: var(--navy);
    font-family: "sweet-sans-pro", europa, sans-serif;
    font-size: 1.15rem;
}

.step-content p {
    margin: 0;
    color: var(--text-mid);
    font-size: 1rem;
}

.plan .btn-wrap {
    text-align: center;
}

.plan .btn {
    display: inline-block;
    width: auto;
}

/* ============================================================
   DIFFERENT
   ============================================================ */
.different {
    padding: var(--section-space-tight) 0;
    background: var(--white);
}

.different h2 {
    margin-bottom: 16px;
    color: var(--navy);
    font-family: "sweet-sans-pro", europa, sans-serif;
    font-size: 1.5rem;
}

.different p {
    margin-bottom: 16px;
    color: var(--text-mid);
}

/* ============================================================
   WHAT'S INSIDE
   ============================================================ */
.whats-inside {
    padding: var(--section-space) 0;
    background: var(--white);
}

.whats-inside h2 {
    margin-bottom: 8px;
    color: var(--navy);
    text-align: center;
    font-family: "sweet-sans-pro", europa, sans-serif;
    font-size: 2rem;
}

.pack-card {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 24px;
    align-items: stretch;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--cream);
    box-shadow: var(--shadow);
}

.pack-card-image {
    padding: 16px 0 0;
    flex: 1;
    display: flex;
    align-items: center;
}

.pack-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

.pack-card-bonus {
    border-left: 5px solid var(--amber);
}

.pack-card-header {
    padding: 28px 32px 20px;
    border-bottom: 1px solid var(--border);
}

.pack-card-header h3 {
    margin-bottom: 4px;
    color: var(--navy);
    font-family: "sweet-sans-pro", europa, sans-serif;
    font-size: 1.3rem;
}

.pack-tagline {
    margin: 0;
    color: var(--text-mid);
    font-size: 0.95rem;
    font-style: italic;
}

.bonus-badge {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 14px;
    border-radius: 20px;
    background: var(--amber);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.coming-soon-badge {
    display: inline-block;
    margin-left: 4px;
    color: var(--teal);
    font-size: 0.75rem;
    font-weight: 600;
}

.pack-card-body {
    padding: 0 32px 28px;
}

.pack-detail-list {
    margin: 0;
    list-style: none;
}

.pack-detail-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.7;
}

.pack-detail-list li:last-child {
    border-bottom: none;
}

.pack-detail-list li strong {
    color: var(--navy);
    font-weight: 700;
}

.value-tag {
    margin-left: 6px;
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 600;
}

/* ============================================================
   SUCCESS MONTAGE
   ============================================================ */
.success-montage {
    padding: 0;
    background: var(--navy);
}

.montage-grid {
    display: grid;
    grid-template-columns: 1fr;
}

.montage-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.montage-caption {
    padding: 28px;
    color: rgba(255,255,255,0.8);
    text-align: center;
    font-family: "ivypresto-display", Georgia, serif;
    font-size: 1.2rem;
    font-style: italic;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    padding: var(--section-space) 0;
    background: var(--cream);
}

.testimonials h2 {
    margin-bottom: 40px;
    color: var(--navy);
    text-align: center;
    font-family: "sweet-sans-pro", europa, sans-serif;
    font-size: 1.8rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.testimonial-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
    padding: var(--section-space) 0;
    background: var(--white);
    text-align: center;
}

.price-anchor {
    margin-bottom: 12px;
    color: var(--text-light);
    text-decoration: line-through;
    font-family: europa, sans-serif;
    font-size: 1.1rem;
    font-style: normal;
}

.price-anchor strong {
    color: var(--text-light);
}

.price-main {
    margin-bottom: 16px;
    color: var(--navy);
    font-family: "sweet-sans-pro", europa, sans-serif;
    font-size: 1.6rem;
    line-height: 1.3;
}

.price-amount {
    display: block;
    margin-top: 8px;
    color: var(--pink);
    font-size: 2.8rem;
}

.price-value {
    margin-bottom: 8px;
    color: var(--text-mid);
    font-size: 1rem;
}

.price-note {
    max-width: 500px;
    margin: 0 auto;
    color: var(--text-mid);
    font-size: 1rem;
}

.pricing .btn-wrap {
    text-align: center;
}

.pricing .btn {
    display: inline-block;
    width: auto;
}

/* ============================================================
   COST OF INACTION
   ============================================================ */
.cost-of-inaction {
    padding: var(--section-space-tight) 0;
    background: var(--navy);
    text-align: center;
}

.inaction-lead {
    margin-bottom: 12px;
    color: var(--white);
    font-family: "ivypresto-display", Georgia, serif;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.5;
}

.cost-of-inaction p {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
}

.inaction-close {
    color: var(--teal) !important;
    font-weight: 600;
}

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee {
    padding: var(--section-space-tight) 0 var(--section-space);
    background: var(--white);
}

.guarantee-card {
    padding: 40px 32px;
    border: 2px solid rgba(39,174,96,0.15);
    border-radius: var(--radius);
    background: linear-gradient(135deg, #f0faf4, #e8f8ee);
    box-shadow: var(--shadow);
    text-align: center;
}

.guarantee-img {
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    object-fit: cover;
}

.guarantee-card h3 {
    margin-bottom: 16px;
    color: #1e7a45;
    font-family: "sweet-sans-pro", europa, sans-serif;
    font-size: 1.4rem;
}

.guarantee-card p {
    margin-bottom: 12px;
    color: var(--text-mid);
    font-size: 1.05rem;
}

.guarantee-card p strong {
    color: #1e7a45;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
    padding: var(--section-space) 0;
    background: var(--cream);
}

.faq h2 {
    margin-bottom: 40px;
    color: var(--navy);
    font-family: "sweet-sans-pro", europa, sans-serif;
    font-size: 1.8rem;
}

.faq-item {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h4 {
    margin-bottom: 12px;
    color: var(--navy);
    font-family: "sweet-sans-pro", europa, sans-serif;
    font-size: 1.1rem;
    line-height: 1.4;
}

.faq-item p {
    margin-bottom: 10px;
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.7;
}

.faq-item p:last-child {
    margin-bottom: 0;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
    position: relative;
    display: flex;
    min-height: 50vh;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.final-cta-image-bg {
    position: absolute;
    inset: 0;
}

.final-cta-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-cta-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    min-height: 50vh;
    align-items: center;
    justify-content: center;
    padding: 60px 28px;
    background: linear-gradient(to top, rgba(34,55,89,0.85), rgba(34,55,89,0.5));
}

.final-cta-content {
    max-width: 650px;
    text-align: center;
}

.final-caption {
    margin-bottom: 32px;
    color: var(--white);
    font-family: "ivypresto-display", Georgia, serif;
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.5;
}

.final-guarantee {
    margin-top: 16px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    padding: 28px var(--page-gutter);
    background: var(--navy);
    text-align: center;
}

.site-footer p {
    margin: 0;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 600px) {
    .hero h1 {
        font-size: 3.4rem;
    }

    .hero-promise {
        font-size: 1.4rem;
    }

    .intro-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    }

    .for-you-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bio-grid {
        grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
    }

    .montage-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .montage-grid img {
        height: 320px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 960px) {
    .hero h1 {
        font-size: 3.8rem;
    }

    .intro-text h2 {
        font-size: 2rem;
    }

    .for-you-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .bio-grid {
        grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
        gap: 56px;
    }

    .pack-card {
        grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    }

    .pack-card-header {
        padding: 32px;
        border-right: 1px solid var(--border);
        border-bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .pack-card-body {
        padding: 32px;
    }

    .montage-grid img {
        height: 380px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .final-caption {
        font-size: 1.9rem;
    }
}

@media (min-width: 1200px) {
    .hero h1 {
        font-size: 4.2rem;
    }
}

@media (max-width: 840px) {
    .nav-inner {
        flex-direction: column;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .nav-brand {
        flex: none;
        text-align: center;
    }

    .nav-links {
        justify-content: center;
        gap: 14px 18px;
    }
}

@media (max-width: 599px) {
    .nav-inner {
        flex-direction: row;
        min-height: 56px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .nav-brand {
        flex: 1;
        text-align: left;
        font-size: 0.85rem;
    }

    .nav-links {
        flex: 0 0 auto;
        gap: 0;
        margin-left: auto;
    }

    .nav-links a:not(.nav-cta) {
        display: none;
    }

    .sibling-kit-page .btn:not(.nav-cta) {
        display: flex;
        width: 100%;
        padding-inline: 24px;
    }

    .sibling-kit-page .intro-text .btn {
        display: flex;
    }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
    .btn,
    .final-cta-overlay,
    .site-footer {
        display: none;
    }

    body {
        font-size: 12pt;
    }
}
