/* ════════════════════════════════════════
   GLOBAL
════════════════════════════════════════ */

html { scroll-behavior: smooth; }

/* ════════════════════════════════════════
   BUTTON HOVER
════════════════════════════════════════ */

.wp-block-button__link {
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,107,0.25);
}

/* ════════════════════════════════════════
   CARD HOVER — class-based
════════════════════════════════════════ */

.velluto-card {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 1px 3px rgba(26,46,34,0.06), 0 1px 2px rgba(26,46,34,0.04);
}
.velluto-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(85,122,104,0.12), 0 4px 10px rgba(85,122,104,0.06);
}

.velluto-card-dark {
    transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.velluto-card-dark:hover {
    background-color: rgba(255,255,255,0.12);
    border-color: rgba(255,107,107,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* ════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════ */

h1 em {
    font-style: italic;
    font-weight: 500;
}

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */

.wp-block-navigation a {
    color: var(--wp--preset--color--text-mid, #3d5249);
    text-decoration: none;
    transition: color 0.15s ease;
}
.wp-block-navigation a:hover {
    color: var(--wp--preset--color--sage-dark, #395848);
}

.wp-block-list.is-style-plain {
    list-style: none;
    padding-left: 0;
}
.wp-block-list.is-style-plain li {
    padding-left: 0;
}

/* ════════════════════════════════════════
   STICKY NAVIGATION
════════════════════════════════════════ */

.wp-site-blocks > header,
.wp-site-blocks > .wp-block-template-part:first-child {
    position: sticky;
    top: 0;
    z-index: 100;
    /* backdrop-filter and transition removed — both create containing blocks
       that break position:fixed on the mobile nav overlay in WebKit/Blink */
}

/* ════════════════════════════════════════
   SCROLL-TRIGGERED ENTRANCE ANIMATIONS
════════════════════════════════════════ */

@keyframes vellutoReveal {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.velluto-js .v-reveal {
    opacity: 0;
    transform: translateY(18px);
}
.v-reveal.v-visible {
    animation: vellutoReveal 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.v-reveal.v-visible .wp-block-column:nth-child(1),
.v-reveal.v-visible > .wp-block-group:nth-child(1) { animation-delay: 0ms; }
.v-reveal.v-visible .wp-block-column:nth-child(2),
.v-reveal.v-visible > .wp-block-group:nth-child(2) { animation-delay: 80ms; }
.v-reveal.v-visible .wp-block-column:nth-child(3),
.v-reveal.v-visible > .wp-block-group:nth-child(3) { animation-delay: 140ms; }

@media (prefers-reduced-motion: reduce) {
    .v-reveal, .v-reveal.v-visible,
    .wp-block-button__link, .velluto-card, .velluto-card-dark {
        animation: none;
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ════════════════════════════════════════
   GRAIN OVERLAYS
════════════════════════════════════════ */

.velluto-hero {
    position: relative;
    overflow: hidden;
}
.velluto-hero > * { position: relative; z-index: 2; }

.velluto-grain-dark {
    position: relative;
    overflow: hidden;
}
.velluto-grain-dark > * { position: relative; z-index: 2; }
.velluto-grain-dark::after {
    content: '';
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.04;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
    background-size: 250px 250px;
}

.velluto-grain-cream {
    position: relative;
    overflow: hidden;
}
.velluto-grain-cream > * { position: relative; z-index: 2; }
.velluto-grain-cream::after {
    content: '';
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.05;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
    background-size: 250px 250px;
}

/* ════════════════════════════════════════
   EYEBROW LABEL
════════════════════════════════════════ */

.velluto-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* ════════════════════════════════════════
   STEP NUMBER CIRCLE
════════════════════════════════════════ */

.velluto-step-num {
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--wp--preset--color--coral);
    color: var(--wp--preset--color--white);
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

/* ════════════════════════════════════════
   STATUS BADGE
════════════════════════════════════════ */

.velluto-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 99px;
    margin-bottom: 14px;
}
.velluto-badge-live {
    background: var(--wp--preset--color--success-pale);
    color: var(--wp--preset--color--success);
}
.velluto-badge-soon {
    background: var(--wp--preset--color--amber-pale);
    color: var(--wp--preset--color--amber);
}
.velluto-badge-planned {
    background: var(--wp--preset--color--sage-pale);
    color: var(--wp--preset--color--muted);
    border: 1px solid var(--wp--preset--color--border-light);
}

/* ════════════════════════════════════════
   SPECIALTY PILLS
════════════════════════════════════════ */

.velluto-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.velluto-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 99px;
    background: var(--wp--preset--color--sage-pale);
    color: var(--wp--preset--color--sage);
}

/* ════════════════════════════════════════
   PILLAR CARD ICON
════════════════════════════════════════ */

.pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--wp--preset--color--sage-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--wp--preset--color--sage);
}

/* ════════════════════════════════════════
   COMING SOON CARD
════════════════════════════════════════ */

.velluto-coming-soon {
    opacity: 0.7;
}

/* ════════════════════════════════════════
   DOCTOR CARD IMAGE
════════════════════════════════════════ */

.wp-block-columns.is-stacked-on-mobile > .wp-block-column:first-child .wp-block-image {
    height: 100%;
    margin: 0;
}
.wp-block-columns.is-stacked-on-mobile > .wp-block-column:first-child .wp-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ════════════════════════════════════════
   HOMEPAGE IMAGES
════════════════════════════════════════ */

figure.wp-block-image.alignfull img {
    max-height: 460px;
    height: 460px;
    width: 100%;
    object-fit: cover;
    object-position: center top;
}
.velluto-hero .wp-block-image img {    max-height: 420px;    width: auto;    max-width: 100%;    object-fit: contain;    border-radius: 14px;    box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 4px 20px rgba(0,0,0,0.15);    transform: perspective(1400px) rotateY(-3deg) rotateX(1.5deg);    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);}.velluto-hero .wp-block-image img:hover {    transform: perspective(1400px) rotateY(-0.5deg) rotateX(0.5deg);}

/* How It Works screenshots */
#how-it-works .wp-block-image.size-full:has(img[src*='intake-home']) {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}
#how-it-works .wp-block-image img {
    max-height: 400px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* Featured image on blog single */
.wp-block-post-featured-image img {
    max-height: 440px;
    width: 100%;
    object-fit: cover;
    object-position: center top;
}

/* ════════════════════════════════════════
   BLOG TABLE OF CONTENTS
════════════════════════════════════════ */

.velluto-toc-wrapper { padding-top: 8px; }
.velluto-toc-links,
.velluto-toc-links nav { display: flex; flex-direction: column; gap: 0; }

.velluto-toc-link {
    display: block;
    padding: 8px 0 8px 16px;
    border-left: 2px solid var(--wp--preset--color--border-pale);
    color: var(--wp--preset--color--muted);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.15s ease, border-color 0.15s ease;
}
.velluto-toc-link:hover {
    color: var(--wp--preset--color--sage-dark);
    border-left-color: var(--wp--preset--color--sage);
}
.velluto-toc-link.is-active {
    color: var(--wp--preset--color--sage-dark);
    border-left-color: var(--wp--preset--color--sage);
    font-weight: 500;
}

/* ════════════════════════════════════════
   BLOG ARCHIVE
════════════════════════════════════════ */

.blog-filter-bar {
    position: sticky;
    top: 68px;
    z-index: 50;
    background: rgba(252,250,247,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.blog-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.blog-filters::-webkit-scrollbar { display: none; }
.blog-filter-pill {
    display: flex;
    width: fit-content;
    align-items: center;
    white-space: nowrap;
    font-family: var(--wp--preset--font-family--dm-sans, 'DM Sans', system-ui, sans-serif);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 99px;
    border: 1px solid var(--wp--preset--color--border-light, #d8e4de);
    color: var(--wp--preset--color--text-mid, #3d5249);
    background: var(--wp--preset--color--white, #ffffff);
    text-decoration: none;
    transition: all 0.15s ease;
    min-height: 36px;
}
.blog-filter-pill:hover {
    border-color: var(--wp--preset--color--sage, #557a68);
    color: var(--wp--preset--color--sage-dark, #395848);
}
.blog-filter-pill.active,
.blog-filter-pill.is-active {
    background: var(--wp--preset--color--sage-dark, #395848);
    color: var(--wp--preset--color--white);
    border-color: var(--wp--preset--color--sage-dark, #395848);
}


/* Native block bridge: wp:buttons renders <div class="wp-block-button blog-filter-pill"><a class="wp-block-button__link">
   Move pill styles from wrapper div to inner link, reset WP button defaults */
.blog-filters.wp-block-buttons {
    flex-wrap: nowrap;
}
.blog-filters .wp-block-button {
    margin: 0; /* Reset WP default button margins */
}
.blog-filters .wp-block-button__link {
    display: flex;
    width: fit-content;
    align-items: center;
    white-space: nowrap;
    font-family: var(--wp--preset--font-family--dm-sans, 'DM Sans', system-ui, sans-serif);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 99px;
    border: 1px solid var(--wp--preset--color--border-light, #d8e4de);
    color: var(--wp--preset--color--text-mid, #3d5249);
    background: var(--wp--preset--color--white, #ffffff);
    text-decoration: none;
    transition: all 0.15s ease;
    min-height: 36px;
    line-height: 1.4;
}
.blog-filters .wp-block-button__link:hover {
    border-color: var(--wp--preset--color--sage, #557a68);
    color: var(--wp--preset--color--sage-dark, #395848);
}
.blog-filters .wp-block-button.is-active .wp-block-button__link,
.blog-filters .wp-block-button.active .wp-block-button__link {
    background: var(--wp--preset--color--sage-dark, #395848);
    color: var(--wp--preset--color--white);
    border-color: var(--wp--preset--color--sage-dark, #395848);
}

/* article-meta-sep: was <span>, now <div class="wp-block-group"> — keep same visual */
.wp-block-group.article-meta-sep {
    width: 1px;
    height: 20px;
    background: var(--wp--preset--color--border-light, #d8e4de);
    display: inline-block;
    vertical-align: middle;
    min-height: 0;
    padding: 0;
}

/* velluto-pills: was <div><span>, now wp:group > wp:paragraph — keep same visual */
.wp-block-group.velluto-pills .velluto-pill {
    display: inline-block;
    border-radius: 99px;
    background: var(--wp--preset--color--sage-pale);
    color: var(--wp--preset--color--sage);
    margin: 0;
}

/* pillar-icon: was <div> with SVG, now wp:group — keep same visual */
.wp-block-group.pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--wp--preset--color--sage-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--wp--preset--color--sage);
    min-height: 0;
    padding: 0;
}

.blog-featured-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}
.blog-featured-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26,46,34,0.12), 0 4px 12px rgba(26,46,34,0.06);
}
/* Featured card two-column layout */
.blog-featured-card .wp-block-columns { min-height: 320px; }
.blog-featured-img-col { align-self: stretch; }
.blog-featured-img-col .wp-block-post-featured-image { height: 100%; min-height: 280px; }
.blog-featured-img-col .wp-block-post-featured-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px 0 0 16px; }
.blog-featured-text-col { display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 781px) {
    .blog-featured-img-col .wp-block-post-featured-image img { border-radius: 16px 16px 0 0; }
    .blog-featured-card .wp-block-columns { min-height: auto; }
}

.blog-post-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}
.blog-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26,46,34,0.12), 0 4px 12px rgba(26,46,34,0.06);
}
.blog-card-img img { transition: transform 0.3s ease; }
.blog-post-card:hover .blog-card-img img { transform: scale(1.02); }

.blog-cat-pill-wrapper a {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 99px;
    background: var(--wp--preset--color--sage-pale, #f0f5f2);
    color: var(--wp--preset--color--sage, #557a68);
    text-decoration: none;
    transition: background 0.15s ease;
}
.blog-cat-pill-wrapper a:hover {
    background: var(--wp--preset--color--border-light, #e8f0ec);
}

/* Pagination */
.blog-pagination .wp-block-query-pagination-numbers .page-numbers {
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--wp--preset--color--text-mid, #3d5249);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.15s;
}
.blog-pagination .wp-block-query-pagination-numbers .page-numbers:hover {
    background: var(--wp--preset--color--sage-pale, #f0f5f2);
    color: var(--wp--preset--color--sage-dark, #395848);
}
.blog-pagination .wp-block-query-pagination-numbers .page-numbers.current {
    background: var(--wp--preset--color--sage-dark, #395848);
    color: var(--wp--preset--color--white);
}
.blog-pagination a {
    text-decoration: none;
    color: var(--wp--preset--color--text-mid, #3d5249);
    transition: color 0.15s;
}
.blog-pagination a:hover { color: var(--wp--preset--color--sage-dark, #395848); }

/* ════════════════════════════════════════
   BLOG SINGLE
════════════════════════════════════════ */

.velluto-progress-bar {
    position: fixed;
    top: 68px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--wp--preset--color--coral);
    z-index: 99;
    transition: width 0.1s linear;
    pointer-events: none;
}

.article-meta-sep {
    width: 1px;
    height: 20px;
    background: var(--wp--preset--color--border-light, #d8e4de);
    display: inline-block;
    vertical-align: middle;
}

/* Column layout: stretch so sticky sidebar has room to scroll within */
.article-layout-cols { align-items: stretch; }
.article-sidebar-col { align-self: stretch; }

.velluto-sidebar-sticky {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}
/* Hide scrollbar but keep scrollability */
.velluto-sidebar-sticky::-webkit-scrollbar { display: none; }
.velluto-sidebar-sticky { -ms-overflow-style: none; scrollbar-width: none; }

.velluto-article-content h2 {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-top: 48px;
    margin-bottom: 16px;
    scroll-margin-top: 100px;
}
.velluto-article-content h3 {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 500;
    line-height: 1.25;
    margin-top: 36px;
    margin-bottom: 12px;
}
.velluto-article-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--wp--preset--color--text-mid, #3d5249);
    margin-bottom: 20px;
}
.velluto-article-content > p:first-child { font-size: 18px; line-height: 1.75; }
.velluto-article-content a {
    color: var(--wp--preset--color--coral);
    text-decoration: underline;
    text-decoration-color: rgba(255,107,107,0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.15s;
}
.velluto-article-content a:hover { text-decoration-color: var(--wp--preset--color--coral); }
.velluto-article-content strong { color: var(--wp--preset--color--forest, #1a2e22); font-weight: 600; }

.velluto-article-content blockquote,
.velluto-article-content .wp-block-quote {
    background: var(--wp--preset--color--sage-pale, #f0f5f2);
    border-left: 3px solid var(--wp--preset--color--coral);
    border-radius: 0 10px 10px 0;
    padding: 24px 28px;
    margin: 32px 0;
}
.velluto-article-content blockquote p,
.velluto-article-content .wp-block-quote p {
    font-family: var(--wp--preset--font-family--cormorant);
    font-size: 19px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--wp--preset--color--text-mid, #3d5249);
    margin: 0;
}
.velluto-article-content blockquote cite,
.velluto-article-content .wp-block-quote cite {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    font-style: normal;
    color: var(--wp--preset--color--muted, #7a8f84);
}

.velluto-article-content ul,
.velluto-article-content ol { margin: 0 0 24px 0; padding-left: 24px; }
.velluto-article-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--wp--preset--color--text-mid, #3d5249);
    margin-bottom: 8px;
}
.velluto-article-content li::marker { color: var(--wp--preset--color--coral); }

.velluto-article-content hr,
.velluto-article-content .wp-block-separator {
    border: none;
    height: 1px;
    background: var(--wp--preset--color--border-pale, #e8f0ec);
    margin: 40px 0;
}

.velluto-article-content .wp-block-image { margin: 36px 0; }
.velluto-article-content .wp-block-image img { border-radius: 10px; }
.velluto-article-content .wp-block-image figcaption {
    margin-top: 10px;
    font-size: 13px;
    color: var(--wp--preset--color--muted, #7a8f84);
    text-align: center;
}

/* Share bar */
.velluto-share-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 0;
    border-top: 1px solid var(--wp--preset--color--border-pale, #e8f0ec);
    border-bottom: 1px solid var(--wp--preset--color--border-pale, #e8f0ec);
    margin: 40px 0;
}
.velluto-share-label { font-size: 13px; font-weight: 500; color: var(--wp--preset--color--muted, #7a8f84); margin-right: 4px; }
.velluto-share-btn {
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--wp--preset--color--border-pale, #d8e4de);
    background: var(--wp--preset--color--white, #ffffff);
    color: var(--wp--preset--color--muted, #7a8f84);
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
}
.velluto-share-btn:hover {
    border-color: var(--wp--preset--color--sage, #557a68);
    color: var(--wp--preset--color--sage-dark, #395848);
    background: var(--wp--preset--color--sage-pale, #f0f5f2);
}

/* Author bio */
.velluto-author-bio {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--wp--preset--color--white, #ffffff);
    border: 1px solid var(--wp--preset--color--border-light, #d8e4de);
    border-radius: 14px;
    padding: 28px;
    margin: 0 0 32px;
}
.velluto-author-bio:empty { display: none; }
.velluto-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--wp--preset--color--sage-pale, #f0f5f2);
    border: 1px solid var(--wp--preset--color--border-pale, #e8f0ec);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--wp--preset--color--sage, #557a68);
    flex-shrink: 0;
}
.velluto-author-bio h4 {
    font-family: var(--wp--preset--font-family--cormorant);
    font-size: 18px;
    font-weight: 500;
    color: var(--wp--preset--color--sage-dark, #395848);
    margin-bottom: 2px;
}
.velluto-author-bio .author-role { font-size: 13px; color: var(--wp--preset--color--muted, #7a8f84); margin-bottom: 10px; }
.velluto-author-bio p { font-size: 14px; color: var(--wp--preset--color--text-mid, #3d5249); line-height: 1.65; margin: 0; }
@media (max-width: 500px) { .velluto-author-bio { flex-direction: column; } }

.sidebar-related-item { transition: all 0.15s; }

/* Category archive title */
.velluto-grain-dark .wp-block-query-title {
    color: rgba(255,255,255,0.93);
    font-family: var(--wp--preset--font-family--cormorant);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

/* ════════════════════════════════════════
   FLUENT FORMS
════════════════════════════════════════ */

.fluentform .ff-btn-submit {
    background-color: var(--wp--preset--color--coral);
    border-color: var(--wp--preset--color--coral);
    color: var(--wp--preset--color--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 8px;
    transition: background-color 0.15s ease, transform 0.15s ease;
    box-shadow: none;
}
.fluentform .ff-btn-submit:hover {
    background-color: var(--wp--preset--color--coral-soft);
    border-color: var(--wp--preset--color--coral-soft);
    transform: translateY(-2px);
}
.fluentform .ff-el-form-control {
    border-color: var(--wp--preset--color--border-light);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--wp--preset--color--text-mid);
    padding: 10px 14px;
}
.fluentform .ff-el-form-control:focus {
    border-color: var(--wp--preset--color--sage);
    box-shadow: 0 0 0 3px rgba(85,122,104,0.12);
    outline: none;
}
.fluentform .ff-el-group label {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--wp--preset--color--forest);
    margin-bottom: 6px;
}

:root {
    --fluentform-primary: var(--wp--preset--color--coral);
    --fluentform-primary-darker: var(--wp--preset--color--coral-soft);
}

/* ════════════════════════════════════════
   MOBILE NAV
════════════════════════════════════════ */

/* Hamburger icon colour */
.wp-block-navigation__responsive-container-open svg {
    color: var(--wp--preset--color--sage-dark, #395848);
}

/* ── Force hamburger menu at tablet widths (<=1024px) ── */
@media (max-width: 1024px) {
    .velluto-header .wp-block-navigation__responsive-container:not(.is-menu-open) {
        display: none !important;
    }
    .velluto-header .wp-block-navigation__responsive-container-open {
        display: flex !important;
    }
}

/* ── Kill containing block on ancestors when nav overlay is open ── */
/* position:sticky + transition on the header creates a containing block
   in WebKit/Blink, which makes position:fixed on the overlay resolve
   relative to the header instead of the viewport. Removing sticky and
   transition while the menu is open lets the overlay escape. */
html.has-modal-open .wp-site-blocks > header,
html.has-modal-open .wp-site-blocks > .wp-block-template-part:first-child {
    position: static !important;
    transition: none !important;
    z-index: auto !important;
}

/* ── Mobile menu overlay: full viewport ── */
/* WP core already sets position:fixed + inset:0 on the container.
   We only override what core doesn't: height, z-index, background, overflow.
   DO NOT set width:100vw — it overflows on mobile. Core's left:0;right:0 is correct. */
.wp-block-navigation__responsive-container.is-menu-open {
    height: 100vh !important;
    height: 100dvh !important;
    max-height: none !important;
    max-width: none !important;
    overflow-y: auto !important;
    z-index: 99999 !important;
    background: var(--wp--preset--color--cream, #fcfaf7) !important;
}

/* ── Override WP core max-width on the inner close wrapper ── */
/* WP core sets: .has-modal-open .wp-block-navigation__responsive-close {
   max-width: var(--wp--style--global--wide-size, 100%); }
   which constrains the menu content to 1160px. Remove it. */
html.has-modal-open .wp-block-navigation__responsive-close {
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* ── Mobile menu overlay colours (scoped) ── */
.velluto-header .wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open {
    background-color: var(--wp--preset--color--cream, #fcfaf7) !important;
    color: var(--wp--preset--color--sage-dark, #395848);
}

/* ── Mobile menu link styles ── */
.velluto-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
    color: var(--wp--preset--color--sage-dark, #395848) !important;
    font-size: 20px;
    text-decoration: none;
    font-weight: 500;
}
.velluto-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:hover {
    color: var(--wp--preset--color--coral, #FF6B6B) !important;
}

/* ── Mobile menu content layout ── */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    padding: 20px !important;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: none !important;
    align-items: flex-start !important;
}

/* ── Close button ── */
.velluto-header .wp-block-navigation__responsive-container-close {
    color: var(--wp--preset--color--sage-dark, #395848) !important;
    z-index: 10;
}

/* ── Ensure header buttons stay visible beside hamburger ── */
.velluto-header-buttons {
    flex-shrink: 0;
}
.velluto-header-buttons .wp-block-button__link {
    white-space: nowrap;
}
@media (max-width: 400px) {
    .velluto-header-buttons .wp-block-button__link {
        padding-left: 12px !important;
        padding-right: 12px !important;
        font-size: 12px !important;
    }
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */

@media (max-width: 781px) {
    .wp-block-columns { flex-direction: column; }
    .wp-block-column { flex-basis: 100%; }
    .velluto-header-buttons .is-style-outline { display: none; }
    .velluto-logo-link { display: inline-flex; visibility: visible; opacity: 1; }
    .velluto-toc-wrapper { display: none; }
    .article-sidebar-col { display: none; }
    .article-content-col { flex-basis: 100%; }
}

/* ════════════════════════════════════════
   HERO WARM BLOB
════════════════════════════════════════ */

.velluto-hero::after {    content: "";    position: absolute;    inset: 0;    pointer-events: none;    z-index: 1;    background:        radial-gradient(ellipse at 40% 70%, rgba(255,107,107,0.12) 0%, transparent 55%),        radial-gradient(ellipse at 55% 35%, rgba(156,179,160,0.18) 0%, transparent 60%);}

/* ════════════════════════════════════════
   PILLAR CARD BORDER-TOP
════════════════════════════════════════ */

.velluto-pillar-card {
    border-top: 3px solid var(--wp--preset--color--coral);
}
.velluto-pillar-card .wp-block-group[style*="background-color:var(--wp--preset--color--coral)"] {
    display: none;
}

/* ════════════════════════════════════════
   HERO HEADING
════════════════════════════════════════ */

.velluto-hero-heading {
  font-family: var(--wp--preset--font-family--cormorant);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 400;
  color: rgba(255,255,255,0.93);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
}
.velluto-hero-heading em {
  color: rgba(255,107,107,0.92);
  font-weight: 300;
  font-style: italic;
}

/* ════════════════════════════════════════
   SECTION HEADING
════════════════════════════════════════ */

.velluto-section-heading {
  font-family: var(--wp--preset--font-family--cormorant);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--wp--preset--color--sage-dark);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.velluto-section-heading em {
  color: var(--wp--preset--color--coral);
  font-weight: 300;
  font-style: italic;
}
.velluto-section-heading.text-center {
  text-align: center;
}

/* ════════════════════════════════════════
   PRICING TABLE
════════════════════════════════════════ */

.velluto-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--wp--preset--color--border-light, #e8f0ec);
}
.velluto-price-row:last-child {
  border-bottom: none;
}
.velluto-price-label {
  font-size: 14px;
  color: var(--wp--preset--color--text-mid, #3d5249);
}
.velluto-price-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--wp--preset--color--sage-dark, #395848);
}
.velluto-price-value--free {
  color: var(--wp--preset--color--green, #3d9e6a);
}
.velluto-price-amount {
  font-family: var(--wp--preset--font-family--cormorant);
  font-size: 52px;
  font-weight: 400;
  color: var(--wp--preset--color--sage-dark, #395848);
}
.velluto-price-period {
  font-size: 16px;
  color: var(--wp--preset--color--muted, #7a8f84);
}

/* ════════════════════════════════════════
   LOGO LINK
════════════════════════════════════════ */

.velluto-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.velluto-logo-link svg {
  width: auto;
  display: block;
}

/* ════════════════════════════════════════
   PRIVACY CARD ICONS
════════════════════════════════════════ */

.priv-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,107,107,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: rgba(255,107,107,0.85);
}

/* ════════════════════════════════════════
   HERO STAGGERED ENTRY ANIMATIONS
════════════════════════════════════════ */

@keyframes velluto-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.v-animate {
  opacity: 0;
  animation: velluto-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.v-d1 { animation-delay: 0.08s; }
.v-d2 { animation-delay: 0.16s; }
.v-d3 { animation-delay: 0.24s; }
.v-d4 { animation-delay: 0.32s; }
.v-d5 { animation-delay: 0.42s; }
.v-d6 { animation-delay: 0.54s; }

@media (prefers-reduced-motion: reduce) {
  .v-animate {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ════════════════════════════════════════
   HERO SAGE BLOB
════════════════════════════════════════ */

.velluto-hero::before {    content: '';    position: absolute;    bottom: -8%;    right: 2%;    width: clamp(200px, 22vw, 340px);    height: clamp(200px, 22vw, 340px);    pointer-events: none;    z-index: 1;    opacity: 0.035;    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='200 25 900 975'%3E%3Cpath fill='%23ffffff' d='M606.39,736.18c-106.56-73.72-105.89-202.4-105.89-249.31,0,0-2.68-95.84,57.64-191.68,15.93-25.31,33.67-48.88,52.61-70.64-.11-.13-.23-.27-.34-.4,0,0-144.09-170.23-287.51-170.23-65.01,0-91.15,34.85-107.23,154.82-16.08,119.97-26.14,361.24,29.49,507.34,55.63,146.1,145.43,243.28,259.37,271.43,113.93,28.15,229.21-13.4,270.09-93.16,20.63-40.24,35.1-89.19,39.39-146.65-67.68,23.58-145.31,31.59-207.61-11.51Z'/%3E%3Cpath fill='rgba(255,255,255,0.5)' d='M1007.16,38.51c-34.85-32.17-139.4,14.07-221.16,51.61-60.17,27.62-122.48,73.8-175.25,134.44,59.63,69.73,143.83,182.84,182.63,329.34,19.26,72.72,24.85,137.37,20.63,193.81,48.09-16.75,91.16-41.34,120.11-61.11,69.7-47.58,140.07-154.82,142.75-310.97,2.68-156.16-34.85-304.94-69.7-337.11Z'/%3E%3Cpath fill='rgba(255,255,255,0.7)' d='M793.37,553.89c-38.8-146.5-123-259.61-182.63-329.34-18.94,21.76-36.68,45.33-52.61,70.64-60.32,95.84-57.64,191.68-57.64,191.68,0,46.91-.67,175.59,105.89,249.31,62.3,43.1,139.93,35.09,207.61,11.51,4.22-56.44-1.37-121.08-20.63-193.81Z'/%3E%3C/svg%3E");    background-size: contain;    background-repeat: no-repeat;}

/* ════════════════════════════════════════
   HOW IT WORKS — STEP CONNECTORS
════════════════════════════════════════ */

.velluto-step-num {
    position: relative;
    z-index: 1;
}

/* Animated connector line from step number down to next step */
.velluto-step-connector {
    position: relative;
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.velluto-step-connector::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 2px;
    height: 0;
    background: linear-gradient(
        180deg,
        var(--wp--preset--color--coral) 0%,
        rgba(255,107,107,0.15) 100%
    );
    border-radius: 1px;
    transition: height 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* When section becomes visible, draw the line */
.v-visible .velluto-step-connector::after,
.v-reveal.v-visible .velluto-step-connector::after {
    height: 56px;
}

/* Dot at the end of the line */
.velluto-step-connector::before {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(100% + 56px);
    transform: translate(-50%, -50%) scale(0);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,107,107,0.25);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0.7s;
}

.v-visible .velluto-step-connector::before,
.v-reveal.v-visible .velluto-step-connector::before {
    transform: translate(-50%, -50%) scale(1);
}

/* No connector on the last step (step 3) */
.velluto-step-connector.no-line::after,
.velluto-step-connector.no-line::before {
    display: none;
}

/* Hide connectors on mobile — they overlap in stacked layout */
@media (max-width: 781px) {
    .velluto-step-connector::after,
    .velluto-step-connector::before {
        display: none;
    }
}



/* ════════════════════════════════════════
   HOMEPAGE V3 — SECTIONS
════════════════════════════════════════ */

/* Coral blush background */
.v3-bg-coral-blush {
    background: linear-gradient(170deg, #f8ddd3 0%, #f2c4b0 40%, #e8a890 100%);
}

/* Deep coral background */
.v3-bg-deep-coral {
    background: linear-gradient(160deg, #FF6B6B 0%, #f05555 30%, #d94444 60%, #c23838 100%);
}

/* Warm cream background */
.v3-bg-warm-cream {
    background: linear-gradient(170deg, #fcfaf7 0%, #f5ede6 50%, #efe3d8 100%);
}

/* ── Shared pill badge — homepage hero and How It Works ── */
.velluto-pill-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wp--preset--color--coral, #FF6B6B);
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,107,107,0.2);
    background: rgba(255,107,107,0.06);
}
/* Centring modifier — works regardless of base display */
.velluto-pill-badge.has-text-align-center,
.velluto-pill-badge.is-centered {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Modifier: animated dot (homepage hero only) */
.velluto-pill-badge.has-dot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

/* Dot + centred: promote to block-level flex so auto margins centre it */
.velluto-pill-badge.has-dot.has-text-align-center,
.velluto-pill-badge.has-dot.is-centered {
    display: flex;
}
.velluto-pill-badge .v3-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--wp--preset--color--coral);
    animation: v3pulse 2s infinite;
}
@keyframes v3pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ── Hero H1 italic gradient treatment ── */
.v3-hero-heading em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, var(--wp--preset--color--coral), var(--wp--preset--color--coral-soft), var(--wp--preset--color--coral-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Hero quote block ── */
.v3-hero-quote {
    max-width: 540px;
    margin: 0 auto 36px;
    padding: 20px 24px;
    border-left: 3px solid var(--wp--preset--color--coral);
    background: rgba(255,255,255,0.5);
    border-radius: 0 12px 12px 0;
}
.v3-hero-quote-inner {
    display: flex;
    align-items: center;
    gap: 18px;
}
.v3-hero-quote-inner img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,107,107,0.2);
    flex-shrink: 0;
}
.v3-hero-quote-text p {
    font-family: var(--wp--preset--font-family--cormorant);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 500;
    font-style: italic;
    color: var(--wp--preset--color--sage-dark);
    margin-bottom: 6px;
}
.v3-hero-quote-text span {
    font-size: 13px;
    color: var(--wp--preset--color--muted);
}

/* ── Hero screenshot with float cards ── */
.v3-hero-product {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    perspective: 1200px;
}
.v3-hero-product img {
    border-radius: 16px;
    box-shadow: 0 40px 100px -20px rgba(26,46,34,0.18), 0 0 0 1px rgba(0,0,0,0.04);
    max-width: 100%;
    height: auto;
}
.v3-float-card {
    position: absolute;
    z-index: 2;
    background: var(--wp--preset--color--white);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 12px 40px rgba(26,46,34,0.1), 0 0 0 1px rgba(0,0,0,0.03);
}
.v3-float-card-1 {
    top: 12%;
    right: -40px;
    animation: float 5s ease-in-out infinite 0.5s;
}
.v3-float-card-2 {
    bottom: 18%;
    left: -36px;
    animation: float2 6s ease-in-out infinite 1s;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
@keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.v3-float-label {
    font-size: 11px;
    color: var(--wp--preset--color--muted);
    margin-bottom: 5px;
}
.v3-float-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--wp--preset--color--sage-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
.v3-float-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wp--preset--color--success);
}
.v3-float-bar {
    display: flex;
    gap: 3px;
    margin-top: 8px;
}
.v3-float-bar span {
    height: 4px;
    flex: 1;
    border-radius: 2px;
    background: var(--wp--preset--color--coral);
}

@media (max-width: 900px) {
    .v3-float-card { display: none; }
}

/* ── Proof strip ── */
.v3-proof-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(24px, 5vw, 56px);
    flex-wrap: wrap;
}
.v3-proof-stat { text-align: center; }
.v3-proof-num {
    font-family: var(--wp--preset--font-family--cormorant);
    font-size: 32px;
    font-weight: 500;
    color: var(--wp--preset--color--white);
}
.v3-proof-label {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}
.v3-proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}
@media (max-width: 640px) {
    .v3-proof-divider { display: none; }
}

/* ── Gap section line ── */
.v3-gap-line {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--wp--preset--color--coral), var(--wp--preset--color--coral-soft));
    border-radius: 1px;
    margin: 0 auto 32px;
}

/* ── Pillars grid ── */
.v3-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,107,107,0.1);
}
.v3-pillar {
    background: rgba(255,255,255,0.85);
    padding: clamp(28px, 3vw, 44px);
    transition: background 0.3s;
}
.v3-pillar:hover { background: var(--wp--preset--color--white); }
.v3-pillar-num {
    font-family: var(--wp--preset--font-family--cormorant);
    font-size: 48px;
    font-weight: 500;
    color: var(--wp--preset--color--coral);
    margin-bottom: 20px;
    line-height: 1;
}
@media (max-width: 768px) {
    .v3-pillars-grid { grid-template-columns: 1fr; border-radius: 16px; }
}

/* ── Origin grid ── */
.v3-origin-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}
@media (max-width: 768px) {
    .v3-origin-grid { grid-template-columns: 1fr; }
}

/* ── Steps / How it works ── */
.v3-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    margin-bottom: clamp(64px, 10vw, 120px);
}
.v3-step:last-child { margin-bottom: 0; }
.v3-step.v3-step-reverse .v3-step-content { order: 2; }
.v3-step.v3-step-reverse .v3-step-media { order: 1; }
.v3-step-num-badge {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}
.v3-step-num-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--wp--preset--color--coral);
    color: var(--wp--preset--color--white);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255,107,107,0.3);
}
.v3-step-num-line {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wp--preset--color--muted);
}
.v3-step-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 2;
    color: var(--wp--preset--color--muted);
}
.v3-step-details span::before {
    content: '';
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17 8C8 10 5.9 16.17 3.82 21.34L5.71 22l1-2.3A4.49 4.49 0 0 0 8 20c4 0 8.5-3 10-8 1.5-5-1-8-1-8z' fill='%23FF6B6B' opacity='0.7'/%3E%3C/svg%3E") no-repeat center/contain;
}
.v3-step-media img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(26,46,34,0.1);
    max-width: 100%;
    height: auto;
}
.v3-step-placeholder {
    background: linear-gradient(160deg, #f5ede6, #efe3d8);
    border-radius: 16px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--wp--preset--color--muted);
    font-style: italic;
}
@media (max-width: 768px) {
    .v3-step { grid-template-columns: 1fr; }
    .v3-step .v3-step-media { order: -1; margin-bottom: 32px; }
    .v3-step.v3-step-reverse .v3-step-content { order: unset; }
    .v3-step.v3-step-reverse .v3-step-media { order: -1; }
}

/* ── Assessment cards on deep coral ── */
.v3-assessment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.v3-assessment-card {
    border-radius: 20px;
    padding: clamp(24px, 3vw, 36px);
    transition: transform 0.3s, box-shadow 0.3s;
}
.v3-assessment-card:hover { transform: translateY(-4px); }
.v3-assessment-card.v3-card-live {
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.v3-assessment-card.v3-card-live:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.15); }
.v3-assessment-card.v3-card-soon,
.v3-assessment-card.v3-card-planned {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.v3-assessment-card.v3-card-soon:hover,
.v3-assessment-card.v3-card-planned:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.v3-card-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}
.v3-badge-live { background: rgba(255,255,255,0.18); color: var(--wp--preset--color--white); }
.v3-badge-soon { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }
.v3-badge-planned { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); }

@media (max-width: 768px) {
    .v3-assessment-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .v3-assessment-grid { grid-template-columns: 1fr; }
}

/* ── Pricing card ── */
.v3-pricing-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--wp--preset--color--white);
    border-radius: 24px;
    padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 48px);
    box-shadow: 0 20px 60px rgba(26,46,34,0.06);
    border: 1px solid var(--wp--preset--color--border-light);
    position: relative;
    overflow: hidden;
}
.v3-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--wp--preset--color--coral), var(--wp--preset--color--coral-soft), var(--wp--preset--color--coral-light));
}
.v3-price-amount {
    font-family: var(--wp--preset--font-family--cormorant);
    font-size: clamp(48px, 6vw, 64px);
    font-weight: 400;
    color: var(--wp--preset--color--sage-dark);
    line-height: 1;
    text-align: center;
}
.v3-price-amount span {
    font-size: 18px;
    font-weight: 400;
    color: var(--wp--preset--color--muted);
}
.v3-price-rows {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.v3-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: var(--wp--preset--color--text-mid);
}
.v3-price-row .v3-val { font-weight: 600; color: var(--wp--preset--color--sage-dark); }
.v3-price-row .v3-free { color: var(--wp--preset--color--success); font-weight: 600; }

/* ── Privacy grid ── */
.v3-privacy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,107,107,0.1);
    border-radius: 20px;
    overflow: hidden;
}
.v3-privacy-item {
    background: rgba(255,255,255,0.85);
    padding: clamp(24px, 3vw, 36px);
    transition: background 0.3s;
}
.v3-privacy-item:hover { background: var(--wp--preset--color--white); }
.v3-privacy-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,107,107,0.08), rgba(255,107,107,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wp--preset--color--coral);
    margin-bottom: 18px;
}
@media (max-width: 768px) {
    .v3-privacy-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .v3-privacy-grid { grid-template-columns: 1fr; }
}

/* ── Final CTA ── */
.v3-final-cta h2 em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, #ffdcc8, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── V3 reveals ── */
.v3-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
}
.v3-reveal.v3-visible { opacity: 1; transform: translateY(0); }
.v3-reveal-d1 { transition-delay: .12s; }
.v3-reveal-d2 { transition-delay: .24s; }
.v3-reveal-d3 { transition-delay: .36s; }
.v3-reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
}
.v3-reveal-scale.v3-visible { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
    .v3-reveal, .v3-reveal-scale { opacity: 1; transform: none; transition: none; }
}

/* ── Kill TT5 default block gap between full-width sections ── */
.wp-site-blocks > * + * {
    margin-block-start: 0 !important;
}
.is-layout-flow > * + * {
    margin-block-start: 0 !important;
}
.alignfull + .alignfull {
    margin-top: 0 !important;
    margin-block-start: 0 !important;
}

/* ════════════════════════════════════════
   V3 PRIVACY ICONS (SVG via CSS — replaces wp:html)
════════════════════════════════════════ */

.v3-privacy-icon::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
}
.v3-privacy-icon-lock::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6B6B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E") no-repeat center/contain;
}
.v3-privacy-icon-shield::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6B6B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E") no-repeat center/contain;
}
.v3-privacy-icon-document::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6B6B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3C/svg%3E") no-repeat center/contain;
}
.v3-privacy-icon-clock::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6B6B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E") no-repeat center/contain;
}

/* ════════════════════════════════════════
   V3 STEP DETAILS — paragraph blocks (replaces raw spans)
════════════════════════════════════════ */

.v3-step-details .wp-block-group > .wp-block-paragraph,
.v3-step-details > .wp-block-paragraph {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 2;
    color: var(--wp--preset--color--muted);
    margin-bottom: 0;
}
.v3-step-details .wp-block-group > .wp-block-paragraph::before,
.v3-step-details > .wp-block-paragraph::before {
    content: '';
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17 8C8 10 5.9 16.17 3.82 21.34L5.71 22l1-2.3A4.49 4.49 0 0 0 8 20c4 0 8.5-3 10-8 1.5-5-1-8-1-8z' fill='%23FF6B6B' opacity='0.7'/%3E%3C/svg%3E") no-repeat center/contain;
}

/* ════════════════════════════════════════
   V3 PROOF STRIP — native block adjustments
════════════════════════════════════════ */

.v3-proof-inner.wp-block-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(24px, 5vw, 56px);
    flex-wrap: wrap;
}
.v3-proof-stat.wp-block-group { text-align: center; }
.v3-proof-divider.wp-block-group {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    padding: 0;
    min-height: 40px;
}
@media (max-width: 640px) {
    .v3-proof-divider.wp-block-group { display: none; }
}

/* ─── Editor overrides ───────────────────────────────────────────────────────
   v3-reveal animations use opacity:0 + JS intersection observer to trigger.
   The editor doesn't run the JS, so blocks are invisible. Force visible in editor. */
.editor-styles-wrapper .v3-reveal,
.editor-styles-wrapper .v3-reveal-scale {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ════════════════════════════════════════
   VIDEO EMBED — click-to-play
════════════════════════════════════════ */

.v-video-poster:hover .v-video-play-btn {
    transform: scale(1.1);
}

/* Editor visibility override */
.editor-styles-wrapper .v-video-embed {
    pointer-events: none;
}

/* ════════════════════════════════════════
   TRUST BADGES STRIP
════════════════════════════════════════ */

.v3-trust-strip {
    background: var(--wp--preset--color--cream, #fcfaf7);
    border-top: 1px solid rgba(57, 88, 72, 0.08);
    border-bottom: 1px solid rgba(57, 88, 72, 0.08);
}

.v3-trust-badges-wrap {
    gap: 8px 16px !important;
}

.v3-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid rgba(57, 88, 72, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    font-family: var(--wp--preset--font-family--dm-sans, 'DM Sans', sans-serif);
    line-height: 1.4;
    white-space: nowrap;
    margin: 0;
}

.v3-trust-badge::before {
    flex-shrink: 0;
    font-size: 14px;
    line-height: 1;
    opacity: 0.7;
}

.v3-trust-badge--pin::before    { content: "\25C9"; }  /* ◉ filled circle — location */
.v3-trust-badge--shield::before { content: "\25C6"; }  /* ◆ diamond — privacy */
.v3-trust-badge--check::before  { content: "\2713"; }  /* ✓ check mark — PI insured */
.v3-trust-badge--lock::before   { content: "\25A0"; }  /* ■ square — cyber */
.v3-trust-badge--star::before   { content: "\2605"; }  /* ★ star — A+ rating */
.v3-trust-badge--tests::before  { content: "\25CF"; }  /* ● bullet — tests */

@media (max-width: 781px) {
    .v3-trust-badges-wrap {
        gap: 6px 8px !important;
    }
    .v3-trust-badge {
        font-size: 12px !important;
        padding: 5px 10px;
    }
}


/* ================================================
   TRUST TICKER BAR — Option D scrolling badges
   ================================================ */
.velluto-ticker {
    background: #f2eeea;
    border-top: 1px solid #d8e4de;
    border-bottom: 1px solid #d8e4de;
    padding: 14px 0 !important;
    overflow: hidden;
    position: relative;
}

/* Fade edges */
.velluto-ticker::before,
.velluto-ticker::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.velluto-ticker::before {
    left: 0;
    background: linear-gradient(to right, #f2eeea, transparent);
}
.velluto-ticker::after {
    right: 0;
    background: linear-gradient(to left, #f2eeea, transparent);
}

/* Track — the flex row that scrolls */
.velluto-ticker-track {
    display: flex !important;
    width: max-content;
    animation: velluto-ticker-scroll 35s linear infinite;
    gap: 0 !important;
    flex-wrap: nowrap !important;
}
.velluto-ticker-track:hover {
    animation-play-state: paused;
}

@keyframes velluto-ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Individual badge items */
.velluto-ticker-track .ticker-item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 20px;
    font-size: 11.5px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #395848;
    margin: 0;
}

/* Diamond separator via ::after */
.velluto-ticker-track .ticker-item::after {
    content: "\25C7";
    color: #d4e3da;
    font-size: 8px;
    padding-left: 20px;
    flex-shrink: 0;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .velluto-ticker {
        padding: 12px 0 !important;
    }
    .velluto-ticker-track .ticker-item {
        font-size: 10px;
        padding: 0 14px;
    }
    .velluto-ticker-track .ticker-item::after {
        padding-left: 14px;
    }
}

/* ════════════════════════════════════════
   IMAGE CAROUSEL — crossfade
════════════════════════════════════════ */

.velluto-carousel {
    position: relative;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.velluto-carousel-slides {
    position: relative;
    overflow: hidden;
}

.velluto-carousel-slides .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.velluto-carousel-slides .carousel-slide.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.velluto-carousel-slides .carousel-slide img {
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(26,46,34,0.12), 0 2px 8px rgba(26,46,34,0.06);
    width: 100%;
    height: auto;
    display: block;
}

/* Dot indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.carousel-dots .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d8e4de;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-height: 0;
    padding: 0;
    margin: 0;
    line-height: 0;
    font-size: 0;
}

.carousel-dots .carousel-dot.active {
    background-color: #FF6B6B;
}

/* Mobile — full width with padding */
@media (max-width: 600px) {
    .velluto-carousel {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ════════════════════════════════════════
   FOOTER LINKS
   theme.json sets global link colour to coral,
   which overrides the footer block link-color.
   Force white links in the footer.
════════════════════════════════════════ */

footer.wp-block-template-part a:where(:not(.wp-element-button)),
footer.wp-block-template-part a:where(:not(.wp-element-button)):visited {
    color: rgba(255,255,255,0.7);
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.2);
    text-underline-offset: 3px;
    transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

footer.wp-block-template-part a:where(:not(.wp-element-button)):hover,
footer.wp-block-template-part a:where(:not(.wp-element-button)):focus {
    color: #ffffff;
    text-decoration-color: rgba(255,255,255,0.6);
}

/* ── FAQ Page ────────────────────────────────────────── */

.velluto-faq-group .velluto-faq-item {
  border-bottom: 1px solid var(--wp--preset--color--border-light);
}

.velluto-faq-group .velluto-faq-item:first-child {
  border-top: 1px solid var(--wp--preset--color--border-light);
}

.velluto-faq-group .velluto-faq-item summary {
  padding: 20px 40px 20px 0;
  font-family: var(--wp--preset--font-family--cormorant);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: var(--wp--preset--color--forest);
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.3;
}

.velluto-faq-group .velluto-faq-item summary::-webkit-details-marker {
  display: none;
}

.velluto-faq-group .velluto-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--wp--preset--font-family--dm-sans);
  font-size: 22px;
  font-weight: 300;
  color: var(--wp--preset--color--muted);
  transition: transform 0.2s ease;
}

.velluto-faq-group .velluto-faq-item[open] summary::after {
  content: "\2212";
}

.velluto-faq-group .velluto-faq-item > :not(summary) {
  padding: 0 0 20px 0;
}

.velluto-faq-group .velluto-faq-item p,
.velluto-faq-group .velluto-faq-item li {
  font-size: clamp(15px, 1.4vw, 16px);
  line-height: 1.7;
  color: var(--wp--preset--color--text-mid);
}

.velluto-faq-group .velluto-faq-item .wp-block-list {
  padding-left: 20px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.velluto-faq-group .velluto-faq-item .wp-block-list li {
  margin-bottom: 4px;
}

.velluto-faq-group .velluto-faq-item p + p {
  margin-top: 12px;
}

.velluto-faq-divider {
  opacity: 0;
  height: 0;
  border: none;
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

@media (max-width: 600px) {
  .velluto-faq-group .velluto-faq-item summary {
    padding: 16px 36px 16px 0;
    font-size: 18px;
  }
}

.velluto-faq-group .velluto-faq-item summary:focus {
  outline: none;
}

.velluto-faq-group .velluto-faq-item summary:focus-visible {
  outline: 2px solid var(--wp--preset--color--forest);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ════════════════════════════════════════
   TEAM HEADSHOTS
════════════════════════════════════════ */

.velluto-team-headshot img {
    border-radius: 0 0 50% 50%;
    object-fit: cover;
    object-position: top;
    width: 280px;
    max-height: 360px;
}

.velluto-team-row .velluto-team-photo-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.velluto-team-row .velluto-team-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 781px) {
    .velluto-team-headshot img {
        width: 200px;
        max-height: 260px;
    }

    .velluto-team-row {
        flex-direction: column !important;
        flex-wrap: wrap !important;
    }

    .velluto-team-row .velluto-team-photo-col,
    .velluto-team-row .velluto-team-text-col {
        flex-basis: 100% !important;
        width: 100% !important;
    }

    .velluto-team-row .velluto-team-photo-col {
        order: -1;
        margin-bottom: 24px;
    }

    .velluto-team-row .velluto-team-text-col {
        order: 1;
    }
}
/* ════════════════════════════════════════
   SIDEBAR — left column layout + widget spacing
════════════════════════════════════════ */

.velluto-sidebar-sticky > .wp-block-group + .wp-block-group {
    margin-top: 32px;
}

/* ════════════════════════════════════════
   FIX: double border on blog filter pills
   The .blog-filter-pill class styles the wrapper div,
   but after wp:buttons conversion the inner __link also
   gets border. Strip visual styles from the wrapper.
════════════════════════════════════════ */
.wp-block-button.blog-filter-pill {
  border: none !important;
  padding: 0 !important;
  background: none !important;
  min-height: auto !important;
  border-radius: 0 !important;
  display: inline-flex !important;
}
.wp-block-button.blog-filter-pill:hover {
  border: none !important;
  background: none !important;
}
.wp-block-button.blog-filter-pill.active,
.wp-block-button.blog-filter-pill.is-active {
  border: none !important;
  background: none !important;
}



/* ════════════════════════════════════════
   HEADER PHONE NUMBER
════════════════════════════════════════ */

.velluto-header-phone {
    white-space: nowrap;
    flex-shrink: 0;
}
.velluto-header-phone a {
    color: var(--wp--preset--color--sage-dark, #395848) !important;
    text-decoration: none !important;
    transition: color 0.15s ease;
}
.velluto-header-phone a:hover {
    color: var(--wp--preset--color--coral, #FF6B6B) !important;
}

/* Hide phone number on tablet/mobile where header space is tight */
@media (max-width: 1024px) {
    .velluto-header-phone {
        display: none;
    }
}

/* ════════════════════════════════════════
   HERO IMAGE SECTION — warm cream + leaf watermark
════════════════════════════════════════ */

.v3-hero-image-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #fcfaf7 0%, #f5ede6 55%, #efe3d8 100%);
    padding-top: clamp(80px, 12vw, 120px);
    padding-bottom: clamp(80px, 12vw, 120px);
}

/* Single large leaf watermark — bottom-left, original leaf colours */
.v3-hero-image-section::before {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 360px;
    height: 360px;
    pointer-events: none;
    opacity: 0.055;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='200 25 900 975'%3E%3Cpath fill='%231f3b2b' d='M606.39,736.18c-106.56-73.72-105.89-202.4-105.89-249.31,0,0-2.68-95.84,57.64-191.68,15.93-25.31,33.67-48.88,52.61-70.64-.11-.13-.23-.27-.34-.4,0,0-144.09-170.23-287.51-170.23-65.01,0-91.15,34.85-107.23,154.82-16.08,119.97-26.14,361.24,29.49,507.34,55.63,146.1,145.43,243.28,259.37,271.43,113.93,28.15,229.21-13.4,270.09-93.16,20.63-40.24,35.1-89.19,39.39-146.65-67.68,23.58-145.31,31.59-207.61-11.51Z'/%3E%3Cpath fill='%237f9185' d='M1007.16,38.51c-34.85-32.17-139.4,14.07-221.16,51.61-60.17,27.62-122.48,73.8-175.25,134.44,59.63,69.73,143.83,182.84,182.63,329.34,19.26,72.72,24.85,137.37,20.63,193.81,48.09-16.75,91.16-41.34,120.11-61.11,69.7-47.58,140.07-154.82,142.75-310.97,2.68-156.16-34.85-304.94-69.7-337.11Z'/%3E%3Cpath fill='%239cb3a0' d='M793.37,553.89c-38.8-146.5-123-259.61-182.63-329.34-18.94,21.76-36.68,45.33-52.61,70.64-60.32,95.84-57.64,191.68-57.64,191.68,0,46.91-.67,175.59,105.89,249.31,62.3,43.1,139.93,35.09,207.61,11.51,4.22-56.44-1.37-121.08-20.63-193.81Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Subtle coral glow — centred on right half where image sits */
.v3-hero-image-section::after {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    background: radial-gradient(ellipse, rgba(255,107,107,0.12) 0%, transparent 70%);
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

/* All children above pseudo-elements */
.v3-hero-image-section > * {
    position: relative;
    z-index: 2;
}

/* Two-column layout inner — override wp-block-columns defaults */
.v3-hero-columns,
.wp-block-columns.v3-hero-columns {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Left column — text, about 40% */
.v3-hero-text-col,
.wp-block-column.v3-hero-text-col {
    flex: 0 0 33%;
    max-width: 33%;
}

/* Right column — image, about 60% */
.v3-hero-image-col,
.wp-block-column.v3-hero-image-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* Hero section headline text — LEFT aligned */
.v3-hero-image-section .v3-hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: left;
}

.v3-hero-image-section .v3-hero-h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 400;
    color: #395848;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    text-align: left;
}

.v3-hero-image-section .v3-hero-h1 mark {
    font-weight: 500;
    font-style: italic;
    color: #FF6B6B;
    background-color: transparent;
}

.v3-hero-image-section .v3-hero-subtext {
    max-width: 380px;
    margin-bottom: 0;
    text-align: left;
    font-size: 15px;
    line-height: 1.65;
    color: #3d5249;
}

/* Picture element responsive image */
.v3-hero-image-section picture {
    display: block;
    width: 100%;
}
.v3-hero-image-section picture img {
    width: 100%;
    height: auto;
    display: block;
}

/* Image block inside the right column */
.v3-hero-image-col .wp-block-image {
    margin: 0;
}
.v3-hero-image-col .wp-block-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Editor override — visible in editor */
.editor-styles-wrapper .v3-hero-image-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #fcfaf7 0%, #f5ede6 55%, #efe3d8 100%);
    padding-top: clamp(80px, 12vw, 120px);
    padding-bottom: clamp(80px, 12vw, 120px);
}

/* Mobile: stack to single column, centre text */
@media (max-width: 768px) {
    .v3-hero-columns,
    .wp-block-columns.v3-hero-columns {
        flex-direction: column;
        text-align: center;
    }
    .v3-hero-text-col,
    .wp-block-column.v3-hero-text-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .v3-hero-image-section .v3-hero-eyebrow,
    .v3-hero-image-section .v3-hero-h1,
    .v3-hero-image-section .v3-hero-subtext {
        text-align: center;
    }
    .v3-hero-image-section .v3-hero-subtext {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .v3-hero-image-section {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }
}
@media (max-width: 480px) {
    .v3-hero-image-section {
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }
}

/* ── Testimonial strip (Option C) ── */
.v3-testimonial-strip {
    position: relative;
    overflow: hidden;
}

.v3-stat-pill {
    display: inline-block;
    font-family: var(--wp--preset--font-family--dm-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--wp--preset--color--sage-dark);
    background: rgba(57,88,72,0.04);
    border: 1px solid rgba(57,88,72,0.15);
    border-radius: 999px;
    padding: 6px 16px;
    line-height: 1.4;
}

.v3-strip-attribution .v3-strip-avatar {
    flex-shrink: 0;
    margin: 0 !important;
}
.v3-strip-attribution .v3-strip-avatar img {
    border: 2.5px solid rgba(255,255,255,0.65);
    box-shadow: 0 1px 3px rgba(26,46,34,0.07), 0 1px 2px rgba(26,46,34,0.04);
}

.v3-strip-cta-col .wp-block-buttons {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
}

/* Ghost button on coral blush — sage dark border, no coral */
.v3-strip-cta-col .is-style-outline .wp-block-button__link {
    background: transparent !important;
}
.v3-strip-cta-col .is-style-outline .wp-block-button__link:hover {
    background: rgba(57,88,72,0.06) !important;
    box-shadow: none;
    transform: none;
}

/* Mobile: stack and centre */
@media (max-width: 781px) {
    .v3-strip-columns {
        text-align: center;
    }
    .v3-strip-columns .v3-stat-pill {
        margin-left: auto;
        margin-right: auto;
    }
    .v3-strip-columns .has-sage-dark-color {
        text-align: center;
    }
    .v3-strip-attribution {
        justify-content: center !important;
    }
    .v3-strip-cta-col .wp-block-buttons {
        max-width: 280px;
    }
}

/* Editor: keep testimonial strip visible */
.editor-styles-wrapper .v3-testimonial-strip {
    position: relative;
}

/* ════════════════════════════════════════
   HOW IT WORKS PAGE (hiw-)
════════════════════════════════════════ */

/* ── Pain comparison grid ── */
.hiw-pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 48px auto 0;
}
.hiw-pain-card {
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--wp--preset--color--border-light, #e8f0ec);
}
.hiw-pain-card.hiw-pain-old {
    background: #fef5f5;
    border-color: rgba(255,107,107,0.15);
}
.hiw-pain-card.hiw-pain-new {
    background: #f0f7f3;
    border-color: rgba(57,88,72,0.15);
}
.hiw-pain-card h3 {
    margin-bottom: 16px;
    font-size: 18px;
}
.hiw-pain-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hiw-pain-card li {
    font-size: 15px;
    line-height: 1.6;
    color: var(--wp--preset--color--text-mid, #3d5249);
    padding: 6px 0 6px 24px;
    position: relative;
}
.hiw-pain-card.hiw-pain-old li::before {
    content: "\2717";
    position: absolute;
    left: 0;
    color: var(--wp--preset--color--coral, #FF6B6B);
    font-weight: 600;
}
.hiw-pain-card.hiw-pain-new li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--wp--preset--color--sage-dark, #395848);
    font-weight: 600;
}
@media (max-width: 768px) {
    .hiw-pain-grid { grid-template-columns: 1fr; }
}

/* ── Feature rows ── */
.hiw-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}
.hiw-feature-row.hiw-reverse .hiw-feature-text { order: 2; }
.hiw-feature-row.hiw-reverse .hiw-feature-image { order: 1; }
@media (max-width: 768px) {
    .hiw-feature-row { grid-template-columns: 1fr; gap: 32px; }
    .hiw-feature-row.hiw-reverse .hiw-feature-text { order: 1; }
    .hiw-feature-row.hiw-reverse .hiw-feature-image { order: 2; }
}

/* ── Section number ── */
.hiw-section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,107,107,0.1);
    color: var(--wp--preset--color--coral, #FF6B6B);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* ── Problem quote ── */
.hiw-problem {
    font-size: 15px;
    color: var(--wp--preset--color--muted, #7a8f84);
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 2px solid rgba(255,107,107,0.3);
    font-style: italic;
}

/* ── Detail line ── */
.hiw-detail {
    font-size: 14px;
    color: var(--wp--preset--color--muted, #7a8f84);
    margin-bottom: 20px;
}

/* ── Blog link ── */
.hiw-blog-link a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--wp--preset--color--coral, #FF6B6B);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,107,107,0.3);
    padding-bottom: 2px;
}
.hiw-blog-link a:hover {
    border-bottom-color: var(--wp--preset--color--coral, #FF6B6B);
}

/* ── Feature image ── */
.hiw-feature-image {
    display: flex;
    justify-content: center;
}
.hiw-feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 24px 60px -12px rgba(26,46,34,0.15), 0 0 0 1px rgba(0,0,0,0.04);
}
.hiw-feature-image.hiw-phone img {
    max-width: 280px;
    border-radius: 32px;
    box-shadow: 0 32px 80px -16px rgba(26,46,34,0.2);
}
@media (max-width: 768px) {
    .hiw-feature-image.hiw-phone img { max-width: 240px; }
}

/* ── Stat bar ── */
.hiw-stat-bar {
    display: flex;
    justify-content: center;
    gap: clamp(32px, 5vw, 64px);
    flex-wrap: wrap;
}
.hiw-stat-item { text-align: center; }
.hiw-stat-num {
    font-family: var(--wp--preset--font-family--cormorant, Cormorant Garamond, serif);
    font-size: 32px;
    font-weight: 500;
    color: var(--wp--preset--color--white, #ffffff);
}
.hiw-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    margin-top: 4px;
}
@media (max-width: 768px) {
    .hiw-stat-bar { gap: 24px; }
}

/* ── Quote break ── */
.hiw-quote-break blockquote,
.hiw-quote-break .wp-block-quote {
    font-family: var(--wp--preset--font-family--cormorant, Cormorant Garamond, serif);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 500;
    font-style: italic;
    color: var(--wp--preset--color--white, #ffffff);
    max-width: 700px;
    margin: 0 auto 16px;
    line-height: 1.35;
    border: none;
    padding: 0;
    background: none;
}
.hiw-quote-break blockquote p,
.hiw-quote-break .wp-block-quote p {
    font-family: var(--wp--preset--font-family--cormorant, Cormorant Garamond, serif);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 500;
    font-style: italic;
    color: var(--wp--preset--color--white, #ffffff);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.35;
}
.hiw-quote-break cite {
    font-style: normal;
    font-family: var(--wp--preset--font-family--dm-sans, DM Sans, sans-serif);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* ── Blog cards grid ── */
.hiw-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.hiw-blog-card {
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--wp--preset--color--border-light, #e8f0ec);
    background: var(--wp--preset--color--white, #ffffff);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hiw-blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26,46,34,0.08);
}
.hiw-blog-card .hiw-blog-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wp--preset--color--coral, #FF6B6B);
    margin-bottom: 10px;
}
.hiw-blog-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.3;
}
.hiw-blog-card p {
    font-size: 14px;
    color: var(--wp--preset--color--muted, #7a8f84);
    line-height: 1.6;
}

/* ── PDF export full-width image ── */
.hiw-pdf-image img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 24px 60px -12px rgba(26,46,34,0.15), 0 0 0 1px rgba(0,0,0,0.04);
}

/* ── Pain grid native-block overrides ── */
.hiw-pain-grid {
    gap: 32px;
    max-width: 900px;
    margin: 48px auto 0;
}
.hiw-pain-grid .wp-block-column.hiw-pain-card {
    padding: 32px;
    border-radius: 16px;
    flex-grow: 1;
    flex-basis: 0 !important;
}
.hiw-pain-grid .wp-block-column.hiw-pain-old {
    background: #fef5f5;
    border: 1px solid rgba(255,107,107,0.15);
}
.hiw-pain-grid .wp-block-column.hiw-pain-new {
    background: #f0f7f3;
    border: 1px solid rgba(57,88,72,0.15);
}
.hiw-pain-grid .hiw-pain-card h3 {
    margin-bottom: 16px;
}
.hiw-pain-grid .hiw-pain-card .wp-block-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hiw-pain-grid .hiw-pain-card .wp-block-list li {
    font-size: 15px;
    line-height: 1.6;
    color: var(--wp--preset--color--text-mid, #3d5249);
    padding: 6px 0 6px 24px;
    position: relative;
}
.hiw-pain-grid .wp-block-column.hiw-pain-old .wp-block-list li::before {
    content: "\2717";
    position: absolute;
    left: 0;
    color: var(--wp--preset--color--coral, #FF6B6B);
    font-weight: 600;
}
.hiw-pain-grid .wp-block-column.hiw-pain-new .wp-block-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--wp--preset--color--sage-dark, #395848);
    font-weight: 600;
}
@media (max-width: 768px) {
    .hiw-pain-grid { flex-direction: column; }
    .hiw-pain-grid .wp-block-column.hiw-pain-card { flex-basis: 100% !important; }
}

/* ── Stat bar native-block overrides ── */
.hiw-stat-bar.wp-block-columns {
    justify-content: center;
    flex-wrap: wrap;
}
.hiw-stat-bar .wp-block-column.hiw-stat-item {
    text-align: center;
    flex-grow: 0;
    flex-basis: auto !important;
}

/* ── Feature row native-block overrides ── */
.hiw-feature-row.wp-block-columns {
    align-items: center;
}
.hiw-feature-row.hiw-reverse .wp-block-column.hiw-feature-text { order: 2; }
.hiw-feature-row.hiw-reverse .wp-block-column.hiw-feature-image { order: 1; }
@media (max-width: 768px) {
    .hiw-feature-row.hiw-reverse .wp-block-column.hiw-feature-text { order: 1; }
    .hiw-feature-row.hiw-reverse .wp-block-column.hiw-feature-image { order: 2; }
}

/* ── Feature image in native columns ── */
.wp-block-column.hiw-feature-image {
    display: flex;
    justify-content: center;
}
.wp-block-column.hiw-feature-image .wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 24px 60px -12px rgba(26,46,34,0.15), 0 0 0 1px rgba(0,0,0,0.04);
}
.wp-block-column.hiw-feature-image.hiw-phone .wp-block-image img {
    max-width: 280px;
    border-radius: 32px;
    box-shadow: 0 32px 80px -16px rgba(26,46,34,0.2);
}
@media (max-width: 768px) {
    .wp-block-column.hiw-feature-image.hiw-phone .wp-block-image img { max-width: 240px; }
}

/* ── Blog cards in native columns ── */
.hiw-blog-grid-row .wp-block-group.hiw-blog-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}
.hiw-blog-grid-row .wp-block-group.hiw-blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26,46,34,0.08);
}



/* ── Featured Articles Section ── */
.vel-featured-section {
    width: 100%;
    padding: 0 clamp(20px, 5vw, 48px) 8px;
}
.vel-featured-inner {
    max-width: 1160px;
    margin: 0 auto;
}
.vel-featured-header {
    margin-bottom: 16px;
}
.vel-featured-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #395848;
}
.vel-featured-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
}
.vel-featured-scroll::-webkit-scrollbar {
    display: none;
}
.vel-featured-card {
    display: flex;
    flex-direction: column;
    min-width: 270px;
    max-width: 270px;
    background: white;
    border: 1.5px solid rgba(57, 88, 72, 0.08);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none !important;
    flex-shrink: 0;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.vel-featured-card:hover {
    border-color: rgba(57, 88, 72, 0.2);
    box-shadow: 0 8px 24px rgba(26, 46, 34, 0.08);
    transform: translateY(-2px);
}
.vel-featured-img {
    width: 100%;
    height: 140px;
    overflow: hidden;
}
.vel-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vel-featured-text {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.vel-featured-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a2e22;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
}
.vel-featured-excerpt {
    font-size: 13px;
    color: #6b8f7b;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
}
.vel-featured-cta {
    font-size: 13px;
    font-weight: 600;
    color: #FF6B6B;
    margin-top: auto;
}
@media (max-width: 768px) {
    .vel-featured-card {
        min-width: 240px;
        max-width: 240px;
    }
    .vel-featured-img {
        height: 120px;
    }
}

/* ── Blog post table styling ── */
.wp-block-table {
    margin: 32px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.wp-block-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    border: none !important;
}
.wp-block-table figure {
    border: none !important;
}
.wp-block-table table,
.wp-block-table table *,
.wp-block-table figure {
    border-color: transparent !important;
}
.wp-block-table thead th {
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
    padding: 0 20px 14px 0;
    border: none !important;
    border-bottom: 1px solid #e2e8f0 !important;
    background: transparent;
    white-space: nowrap;
}
.wp-block-table thead th:first-child {
    padding-left: 0;
}
.wp-block-table tbody td {
    padding: 16px 20px 16px 0;
    border: none !important;
    border-bottom: 1px solid #f1f5f9 !important;
    color: #475569;
    vertical-align: top;
    font-size: 14px;
    line-height: 1.6;
}
.wp-block-table tbody td:first-child {
    padding-left: 0;
    font-weight: 600;
    color: #1e293b;
}
.wp-block-table tbody tr:last-child td {
    border-bottom: none !important;
}
.wp-block-table tbody tr:hover td {
    background: rgba(241, 245, 249, 0.5);
}
.wp-block-table figcaption {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 12px;
    font-style: italic;
}
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) td {
    background: rgba(241, 245, 249, 0.4);
}
.wp-block-table.is-style-stripes tbody tr:nth-child(odd):hover td {
    background: rgba(241, 245, 249, 0.7);
}

/* Mobile responsive tables */
@media (max-width: 640px) {
    .wp-block-table {
        margin: 24px -16px;
        padding: 0 16px;
    }
    .wp-block-table table {
        font-size: 13px;
        min-width: 500px;
    }
}