/* SnapsJo — Baby Portrait Studio landing page */

.baby-page-body { background: var(--porcelain); }

.baby-page {
    overflow-x: clip;
    display: flex;
    flex-direction: column;
}

.baby-section { padding: clamp(40px, 5vw, 64px) 0; }

.baby-section__head {
    max-width: 560px;
    margin-bottom: clamp(24px, 3vw, 32px);
}

.baby-section__head h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(26px, 3.2vw, 34px);
    font-weight: 500;
    line-height: 1.12;
    margin: 0;
}

.baby-section__head p {
    margin-top: 10px;
    font-size: 15.5px;
    color: var(--text-600);
    line-height: 1.6;
}

.baby-section__cta {
    margin-top: 28px;
    text-align: center;
}

.baby-cta { min-height: 48px; }

/* ── Hero ─────────────────────────────────────────────────────────────── */
.baby-hero {
    order: 1;
    padding: clamp(28px, 4vw, 48px) 0 clamp(24px, 3vw, 36px);
    background:
        radial-gradient(ellipse 70% 55% at 8% 0%, rgba(247, 214, 206, 0.45), transparent 58%),
        radial-gradient(ellipse 55% 45% at 92% 8%, rgba(231, 200, 115, 0.22), transparent 52%),
        linear-gradient(180deg, var(--porcelain) 0%, #fffdfb 100%);
}

.baby-hero-shell {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(24px, 4vw, 40px);
    align-items: center;
}

.baby-hero-copy h1 {
    font-size: clamp(32px, 4.6vw, 48px);
    line-height: 1.08;
    margin-top: 12px;
    max-width: 14ch;
}

.baby-hero-copy__lead {
    margin-top: 14px;
    font-size: clamp(15px, 1.5vw, 17px);
    color: var(--text-600);
    max-width: 46ch;
    line-height: 1.65;
}

.baby-hero-copy__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.baby-upload-trust {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line-warm);
    max-width: 46ch;
}

.baby-upload-trust strong {
    display: block;
    font-size: 13px;
    color: var(--ink);
    margin-bottom: 8px;
}

.baby-upload-trust ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 4px;
    font-size: 13px;
    color: var(--text-600);
    line-height: 1.45;
}

.baby-hero-chips {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.baby-hero-chips li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line-warm);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-700);
}

.baby-hero-chips svg {
    width: 14px;
    height: 14px;
    color: var(--clay);
    flex-shrink: 0;
}

.baby-hero-visual { display: flex; justify-content: center; }

.baby-studio-board {
    width: min(100%, 420px);
    padding: 20px 18px 18px;
    border-radius: 24px;
    background: linear-gradient(165deg, #fff 0%, var(--canvas) 55%, var(--oat) 100%);
    border: 1px solid var(--line-warm);
    box-shadow: 0 24px 56px var(--shadow);
}

.baby-studio-board__note {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: var(--r-pill);
    background: var(--mint);
    color: var(--olive);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.baby-studio-board__flow {
    margin-top: 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-500);
}

.baby-studio-board__cards {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.baby-studio-board__card { flex: 1; min-width: 0; }

.baby-studio-board__label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-500);
    margin-bottom: 6px;
}

.baby-studio-board__frame {
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line-warm);
    background: var(--paper);
    padding: 6px;
    position: relative;
}

.baby-studio-board__frame .protected-demo-wrap {
    position: absolute;
    inset: 6px;
    border-radius: 10px;
}

.baby-studio-board__frame > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: inherit;
}

.baby-studio-board__frame--arch {
    border-radius: 50% 50% 18px 18px / 22% 22% 14px 14px;
}

.baby-studio-board__arrow {
    flex-shrink: 0;
    color: var(--clay);
    font-size: 18px;
    font-weight: 600;
}

.baby-studio-board__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.baby-studio-board__chips span,
.baby-studio-board__chips a {
    padding: 4px 9px;
    border-radius: var(--r-pill);
    font-size: 10px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    color: var(--text-700);
    text-decoration: none;
}

.baby-studio-board__chips a:hover {
    color: var(--clay);
    border-color: var(--clay);
}

.baby-photo-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.baby-photo-placeholder--original {
    object-fit: cover;
    object-position: center top;
}
img.baby-photo-placeholder--original {
    object-fit: cover;
    object-position: center top;
}
.baby-photo-placeholder--portrait { background: linear-gradient(168deg, #3a4358 0%, #5c6880 42%, #c4b59a 100%); }
.baby-photo-placeholder--good { background: linear-gradient(160deg, var(--blush) 0%, var(--canvas) 100%); }
.baby-photo-placeholder--avoid { background: linear-gradient(160deg, #4a4038 0%, #2a211c 100%); opacity: 0.85; }
.baby-photo-placeholder--style { background: linear-gradient(168deg, var(--canvas) 0%, var(--clay) 100%); }

.baby-style-card__preview--moonlight-dream { background: linear-gradient(168deg, #3a4358 0%, #5c6880 42%, #c4b59a 100%); }
.baby-style-card__preview--royal-baby-portrait { background: linear-gradient(168deg, #3d2a24 0%, #8a5a3a 48%, #e7c873 100%); }
.baby-style-card__preview--angel-soft-portrait { background: linear-gradient(168deg, #faf6f0 0%, #f2e6d6 50%, #f7d6ce 100%); }
.baby-style-card__preview--fairy-tale-baby { background: linear-gradient(168deg, #dde8d5 0%, #c5d4b8 45%, #f4b860 100%); }
.baby-style-card__preview--birthday-studio { background: linear-gradient(168deg, #f7d6ce 0%, #f4b860 52%, #d9a6a0 100%); }
.baby-style-card__preview--classic-newborn-studio { background: linear-gradient(168deg, #e8dcc8 0%, #f3e7d3 50%, #b87952 100%); }

/* ── Support strip ────────────────────────────────────────────────────── */
.baby-support-strip {
    order: 2;
    padding: clamp(16px, 2.5vw, 24px) 0;
    background: var(--canvas);
    border-top: 1px solid var(--line-warm);
    border-bottom: 1px solid var(--line-warm);
}

.baby-support-strip__grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.baby-support-strip__item {
    display: flex;
    gap: 10px;
    padding: 14px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--line-warm);
    min-width: 0;
}

.baby-support-strip__icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--oat);
    color: var(--clay);
}

.baby-support-strip__icon svg { width: 17px; height: 17px; }

.baby-support-strip__item strong {
    display: block;
    font-size: 13px;
    color: var(--ink);
    margin-bottom: 2px;
}

.baby-support-strip__item p {
    margin: 0;
    font-size: 12px;
    color: var(--text-600);
    line-height: 1.45;
}

/* ── Steps ────────────────────────────────────────────────────────────── */
.baby-steps { order: 3; background: var(--porcelain); }

.baby-steps__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.baby-steps__card {
    padding: 22px 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--line-warm);
    box-shadow: 0 10px 28px rgba(42, 33, 28, 0.06);
}

.baby-steps__num {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--amber));
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
}

.baby-steps__card h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 17px;
    font-weight: 500;
    margin: 0 0 8px;
}

.baby-steps__card p {
    margin: 0;
    font-size: 14px;
    color: var(--text-600);
    line-height: 1.55;
}

/* ── Style preview ────────────────────────────────────────────────────── */
.baby-style-preview {
    order: 5;
    background: linear-gradient(180deg, #fffdfb 0%, var(--porcelain) 100%);
}

.baby-style-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.baby-style-card {
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--line-warm);
    box-shadow: 0 12px 32px rgba(42, 33, 28, 0.07);
    overflow: hidden;
    transition: transform var(--t), box-shadow var(--t);
}

.baby-style-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(42, 33, 28, 0.1);
}

.baby-style-card__preview {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
}

.baby-style-card__preview .protected-demo-wrap {
    position: absolute;
    inset: 0;
}

.baby-style-card__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.baby-style-card__body { padding: 16px; }

.baby-style-card__body h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 17px;
    font-weight: 500;
    margin: 0 0 6px;
}

.baby-style-card__body h3 a {
    color: inherit;
    text-decoration: none;
}

.baby-style-card__body h3 a:hover {
    color: var(--clay);
}

.baby-style-card__body p {
    margin: 0;
    font-size: 13px;
    color: var(--text-600);
    line-height: 1.5;
}

.baby-style-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.baby-style-card__tags span {
    padding: 3px 8px;
    border-radius: var(--r-pill);
    font-size: 10px;
    font-weight: 600;
    background: var(--oat);
    color: var(--text-700);
}

.baby-style-card__link {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--clay);
    text-decoration: none;
    min-height: 44px;
}

/* ── Parent value ─────────────────────────────────────────────────────── */
.baby-parent-value { order: 6; background: var(--canvas); }

.baby-parent-value__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto auto;
    gap: 14px;
}

.baby-value-card {
    padding: 20px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line-warm);
}

.baby-value-card--lead {
    grid-column: 1 / span 2;
    padding: 26px 22px;
    background: linear-gradient(165deg, #fff 0%, var(--porcelain) 100%);
    box-shadow: 0 16px 40px rgba(42, 33, 28, 0.08);
}

.baby-value-card h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 8px;
}

.baby-value-card--lead h3 { font-size: 22px; }

.baby-value-card p {
    margin: 0;
    font-size: 14px;
    color: var(--text-600);
    line-height: 1.55;
}

/* ── Photo tips ───────────────────────────────────────────────────────── */
.baby-photo-tips { order: 7; background: var(--porcelain); }

.baby-photo-tips__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.baby-photo-tips__card {
    padding: 22px 20px;
    border-radius: 20px;
    border: 1px solid var(--line-warm);
    background: #fff;
}

.baby-photo-tips__card h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 18px;
    margin: 0 0 12px;
}

.baby-photo-tips__card ul {
    margin: 0;
    padding-left: 18px;
    font-size: 14px;
    color: var(--text-600);
    line-height: 1.6;
}

.baby-photo-tips__frame {
    margin-top: 16px;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line-warm);
    padding: 8px;
    background: var(--paper);
}

/* ── Edit & save ──────────────────────────────────────────────────────── */
.baby-edit-save {
    order: 8;
    background: linear-gradient(180deg, var(--canvas) 0%, var(--porcelain) 100%);
}

.baby-edit-save__shell {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 340px);
    gap: clamp(24px, 4vw, 40px);
    align-items: center;
}

.baby-edit-save__copy h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 500;
    margin: 0;
}

.baby-edit-save__copy > p {
    margin-top: 10px;
    font-size: 15px;
    color: var(--text-600);
    line-height: 1.6;
    max-width: 48ch;
}

.baby-edit-save__list {
    list-style: none;
    padding: 0;
    margin: 20px 0 22px;
    display: grid;
    gap: 12px;
}

.baby-edit-save__list li {
    font-size: 14px;
    color: var(--text-600);
    line-height: 1.5;
    padding-left: 14px;
    border-left: 3px solid var(--gold);
}

.baby-edit-save__list strong {
    display: block;
    color: var(--ink);
    font-size: 13px;
    margin-bottom: 2px;
}

.baby-dashboard-card {
    padding: 18px 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fff 0%, var(--canvas) 100%);
    border: 1px solid var(--line-warm);
    box-shadow: 0 20px 48px var(--shadow);
}

.baby-dashboard-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.baby-dashboard-card__badge {
    padding: 3px 8px;
    border-radius: var(--r-pill);
    background: var(--mint);
    color: var(--olive);
    font-size: 10px;
}

.baby-dashboard-card__preview {
    margin-top: 14px;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    background: linear-gradient(168deg, #3a4358 0%, #5c6880 42%, #c4b59a 100%);
    border: 1px solid var(--line-warm);
}

.baby-dashboard-card__chips {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.baby-dashboard-card__chips span {
    padding: 5px 10px;
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 600;
    background: var(--oat);
    color: var(--text-700);
}

/* ── Pricing ──────────────────────────────────────────────────────────── */
.baby-pricing { order: 11; background: var(--porcelain); }

.baby-pricing__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.baby-pricing-card {
    padding: clamp(22px, 3vw, 28px);
    border-radius: 22px;
    border: 1px solid var(--line-warm);
    background: linear-gradient(180deg, #fffcf6 0%, var(--porcelain) 100%);
    box-shadow: 0 14px 36px rgba(42, 33, 28, 0.07);
    display: flex;
    flex-direction: column;
}

.baby-pricing-card--free { background: linear-gradient(180deg, #fff 0%, var(--canvas) 100%); }

.baby-pricing-card__badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: var(--r-pill);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--mint);
    color: var(--olive);
    margin-bottom: 10px;
}

.baby-pricing-card h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 22px;
    margin: 0;
}

.baby-pricing-card__price {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 36px;
    font-weight: 500;
    margin: 8px 0;
}

.baby-pricing-card > p {
    font-size: 14px;
    color: var(--text-600);
    margin: 0 0 16px;
}

.baby-pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
    display: grid;
    gap: 8px;
}

.baby-pricing-card li {
    font-size: 14px;
    color: var(--text-700);
    padding-left: 20px;
    position: relative;
}

.baby-pricing-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clay);
}

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.baby-faq { order: 12; background: #fffdfb; }

.baby-faq__panel {
    max-width: 720px;
    margin: 0 auto;
    border-radius: var(--r-xl);
    border: 1px solid var(--line-warm);
    background: rgba(255, 255, 255, 0.88);
    overflow: hidden;
}

.baby-faq .faq__item { border-bottom: 1px solid var(--line); }
.baby-faq .faq__item:last-child { border-bottom: 0; }
.baby-faq .faq__item.is-open {
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.96) 0%, rgba(243, 231, 211, 0.42) 100%);
    box-shadow: inset 3px 0 0 var(--clay);
}

.baby-faq .faq__q {
    width: 100%;
    min-height: 52px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    text-align: left;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    font-size: 15.5px;
    color: var(--ink);
    background: transparent;
    border: 0;
    cursor: pointer;
}

.baby-faq .faq__q-text { flex: 1; min-width: 0; }

.baby-faq .faq__q-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--oat);
    color: var(--clay);
}

.baby-faq .faq__q-icon svg { width: 15px; height: 15px; transition: transform var(--t); }
.baby-faq .faq__item.is-open .faq__q-icon svg { transform: rotate(180deg); }
.baby-faq .faq__a { padding: 0 20px 16px; }
.baby-faq .faq__a p { margin: 0; font-size: 14px; color: var(--text-600); line-height: 1.6; }

/* ── Final CTA ────────────────────────────────────────────────────────── */
.baby-final-cta {
    order: 13;
    padding: clamp(36px, 5vw, 56px) 0 clamp(48px, 6vw, 72px);
    background: var(--porcelain);
}

.baby-final-cta__card {
    max-width: 680px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 36px);
    text-align: center;
    border-radius: var(--r-xl);
    background:
        radial-gradient(ellipse 80% 70% at 50% 0%, rgba(231, 200, 115, 0.22), transparent 60%),
        linear-gradient(180deg, #fff 0%, var(--canvas) 100%);
    border: 1px solid var(--line-warm);
    box-shadow: 0 20px 48px rgba(42, 33, 28, 0.1);
}

.baby-final-cta__card h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(26px, 3.5vw, 32px);
    font-weight: 500;
    margin: 0 0 10px;
}

.baby-final-cta__card > p {
    margin: 0 auto 20px;
    max-width: 44ch;
    font-size: 15px;
    color: var(--text-600);
    line-height: 1.6;
}

.baby-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.baby-final-cta__note {
    margin: 14px 0 0;
    font-size: 12.5px;
    color: var(--text-500);
}

.baby-final-cta__chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

.baby-final-cta__chips span,
.baby-final-cta__chips a {
    padding: 4px 10px;
    border-radius: var(--r-pill);
    font-size: 10px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--line-warm);
    color: var(--text-600);
    text-decoration: none;
}

.baby-final-cta__chips a:hover {
    color: var(--clay);
    border-color: var(--clay);
}

/* ── Sticky mobile CTA ───────────────────────────────────────────────── */
.baby-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(250, 247, 242, 0.98);
    border-top: 1px solid var(--line-warm);
    backdrop-filter: blur(8px);
    transform: translateY(110%);
    transition: transform 0.28s ease;
}

.baby-sticky-cta.is-visible { transform: translateY(0); }

.baby-sticky-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 640px;
    margin: 0 auto;
}

.baby-sticky-cta__text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-700);
}

.baby-sticky-cta__btn {
    flex-shrink: 0;
    min-height: 48px;
    min-width: 130px;
}

.baby-sticky-cta__link {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--clay);
    text-decoration: none;
}

@media (max-width: 640px) {
    .baby-page-body.has-baby-sticky #main {
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0));
    }
    .baby-page-body.has-baby-sticky .site-footer {
        padding-bottom: calc(28px + 72px + env(safe-area-inset-bottom, 0));
    }
}

@media (max-width: 768px) {
    .baby-hero-shell { grid-template-columns: 1fr; }
    .baby-hero-copy h1 { max-width: none; }
    .baby-hero-copy__actions { flex-direction: column; }
    .baby-hero-copy__actions .btn { width: 100%; }
    .baby-support-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .baby-style-preview { order: 3; }
    .baby-steps { order: 4; }
    .baby-social-proof { order: 5; }
    .baby-steps__list { grid-template-columns: 1fr; }
    .baby-style-preview__grid { grid-template-columns: 1fr; }
    .baby-parent-value__grid { grid-template-columns: 1fr; }
    .baby-value-card--lead { grid-column: auto; }
    .baby-photo-tips__grid { grid-template-columns: 1fr; }
    .baby-edit-save__shell { grid-template-columns: 1fr; }
    .baby-edit-save__mock { order: -1; max-width: 280px; margin: 0 auto; }
    .baby-pricing__cards { grid-template-columns: 1fr; }
    .baby-final-cta__actions { flex-direction: column; }
    .baby-final-cta__actions .btn { width: 100%; }
}

@media (min-width: 769px) {
    .baby-sticky-cta { display: none !important; }
}

@media (max-width: 400px) {
    .baby-support-strip__grid { grid-template-columns: 1fr; }
    .baby-studio-board__cards { flex-direction: column; }
    .baby-studio-board__arrow { transform: rotate(90deg); }
}

@media (prefers-reduced-motion: reduce) {
    .baby-style-card,
    .baby-sticky-cta { transition: none !important; }
    .baby-style-card:hover { transform: none; }
}

/* ── Audit additions: Most Popular ribbon, social proof, cost & privacy narratives ── */

.baby-style-card { position: relative; }
.baby-style-card--popular {
    box-shadow: 0 18px 38px -22px rgba(184, 121, 82, 0.55);
    border: 1px solid rgba(244, 184, 96, 0.55);
}
.baby-style-card__ribbon {
    position: absolute; top: 14px; right: -8px; z-index: 2;
    display: inline-flex; align-items: center; gap: 4px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #c9922a 0%, #b87a18 100%);
    color: #fff; font-weight: 700; font-size: 11.5px; letter-spacing: 0.04em;
    text-transform: uppercase; border-radius: 6px 0 6px 6px;
    box-shadow: 0 6px 14px -6px rgba(184, 122, 24, 0.6);
}
.baby-style-card__ribbon::after {
    content: ''; position: absolute; top: 100%; right: 0;
    border-top: 6px solid #8a5a12; border-right: 8px solid transparent;
}

/* Social proof marquee */
.baby-social-proof {
    order: 4;
    padding: clamp(36px, 5vw, 56px) 0;
    background: linear-gradient(180deg, var(--porcelain) 0%, #fff7ea 100%);
    border-top: 1px solid var(--line-warm);
    border-bottom: 1px solid var(--line-warm);
}
.baby-social-proof__title {
    text-align: center;
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 500;
    margin: 0 0 28px;
    color: var(--ink);
}
.baby-social-proof__marquee {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.baby-quote {
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--line-warm);
    border-radius: 16px;
    box-shadow: 0 10px 24px -18px rgba(42, 33, 28, 0.35);
    display: flex; flex-direction: column; gap: 8px;
}
.baby-quote__stars { color: #d4a52a; font-size: 16px; letter-spacing: 1px; }
.baby-quote p {
    margin: 0;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 15.5px;
    line-height: 1.5;
    color: var(--ink);
    font-style: italic;
}
.baby-quote__by {
    color: var(--text-500);
    font-size: 12.5px;
    font-weight: 600;
}

/* Cost disparity narrative */
.baby-narrative {
    order: 9;
    padding: clamp(40px, 5vw, 64px) 0;
}
.baby-narrative--cost {
    background: linear-gradient(180deg, #fff7ea 0%, var(--porcelain) 100%);
}
.baby-narrative__grid {
    display: grid;
    gap: 32px;
    align-items: center;
}
@media (min-width: 880px) {
    .baby-narrative__grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        gap: 48px;
    }
}
.baby-narrative__copy .eyebrow {
    display: inline-block;
    color: var(--clay);
    font-weight: 700;
    margin-bottom: 12px;
}
.baby-narrative__copy h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(28px, 3.4vw, 38px);
    font-weight: 500;
    line-height: 1.1;
    margin: 0 0 16px;
    color: var(--ink);
}
.baby-narrative__copy > p {
    margin: 0 0 18px;
    color: var(--text-600);
    font-size: 16px;
    line-height: 1.65;
}
.baby-narrative__list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
}
.baby-narrative__list li {
    font-size: 14.5px;
    color: var(--text-700);
}
.baby-narrative__list li strong {
    display: inline-block;
    min-width: 70px;
    color: var(--clay);
    font-family: 'Fraunces', Georgia, serif;
    font-size: 17px;
    margin-right: 8px;
}
.baby-narrative__compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.baby-compare-card {
    padding: 18px 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--line-warm);
    text-align: center;
}
.baby-compare-card--studio { opacity: 0.85; }
.baby-compare-card--snapsjo {
    background: linear-gradient(160deg, #fff7ea, #fff);
    border: 1px solid rgba(244, 184, 96, 0.55);
    box-shadow: 0 18px 32px -22px rgba(244, 184, 96, 0.5);
}
.baby-compare-card__tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--canvas);
    color: var(--text-600);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}
.baby-compare-card__tag--gold {
    background: linear-gradient(135deg, #c9922a, #b87a18);
    color: #fff;
}
.baby-compare-card__price {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 10px;
}
.baby-compare-card__price small {
    display: block;
    font-size: 12px;
    color: var(--text-500);
    font-weight: 500;
    margin-top: 2px;
}
.baby-compare-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.baby-compare-card ul li {
    font-size: 13px;
    color: var(--text-600);
}

/* Privacy narrative */
.baby-narrative--privacy {
    order: 10;
    background: #f8f3eb;
}
.baby-narrative__card {
    max-width: 760px;
    margin: 0 auto;
    padding: 32px 28px;
    background: #fff;
    border-radius: 22px;
    border: 1px solid var(--line-warm);
    text-align: center;
    box-shadow: 0 18px 40px -28px rgba(42, 33, 28, 0.4);
}
.baby-narrative__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2A211C, #3a2d23);
    color: #f4b860;
    margin-bottom: 14px;
}
.baby-narrative__icon svg { width: 26px; height: 26px; }
.baby-narrative__card .eyebrow {
    display: inline-block;
    color: var(--clay);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.08em;
}
.baby-narrative__card h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 14px;
    color: var(--ink);
}
.baby-narrative__card > p {
    margin: 0 0 18px;
    color: var(--text-600);
    font-size: 15.5px;
    line-height: 1.65;
}
.baby-privacy-pills {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.baby-privacy-pills li {
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--canvas);
    color: var(--text-700);
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 680px) {
    .baby-narrative__compare { grid-template-columns: 1fr; }
    .baby-narrative__card { padding: 26px 20px; }
}
