/*
Theme Name: Weight Loss Injections
Theme URI: https://weightlossinjections.com
Author: Weight Loss Injections
Author URI: https://weightlossinjections.com
Description: A modern WordPress theme for Weight Loss Injections — a telehealth brand offering GLP-1 and GLP-1 + GIP weight-loss programs. Clean teal-and-slate palette, professional medical aesthetic, full landing page with hero, trust bar, 3-step process, stats block, program cards, testimonials, pricing, benefits, FAQ, and newsletter sections. Fully customizable via the Customizer.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wli
Tags: one-column, custom-colors, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready, block-styles, wide-blocks, editor-style
*/

/* ==========================================================================
   Weight Loss Injections Theme - Main Stylesheet
   Base styles live here; component styles are modular for readability.
   ========================================================================== */

/* ------- CSS Variables / Design Tokens ------- */
:root {
    --color-bg:          #FFFFFF;   /* white page background */
    --color-bg-alt:      #F4F8FA;   /* soft sky tint */
    --color-surface:     #FFFFFF;   /* card surface */
    --color-navy:        #2C3E50;   /* primary slate text */
    --color-navy-2:      #374B5C;
    --color-amber:       #3BA5B8;   /* primary CTA = RenewBariatrics teal */
    --color-amber-hover: #2E8A9C;
    --color-mint:        #D4E7EE;   /* soft sky-blue banner */
    --color-mint-2:      #B9DCE5;
    --color-teal:        #3BA5B8;
    --color-muted:       #6B7A88;
    --color-border:      #DCE6EB;
    --color-star:        #F5A623;

    --font-serif: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-sans:  "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-pill: 999px;

    --shadow-sm: 0 2px 6px rgba(27, 43, 75, 0.06);
    --shadow-md: 0 10px 30px rgba(27, 43, 75, 0.08);
    --shadow-lg: 0 20px 50px rgba(27, 43, 75, 0.12);

    --container: 1200px;
    --gutter: 24px;
    --section-y: clamp(56px, 8vw, 120px);
}

/* ------- Reset & Base ------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.65;
    color: var(--color-navy);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 { letter-spacing: -0.01em; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--color-navy); text-decoration: none; transition: color .2s ease, opacity .2s ease; }
a:hover { opacity: .75; }
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--color-navy);
    margin: 0 0 .5em;
    line-height: 1.15;
    font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p  { margin: 0 0 1em; }
.italic, em.display { font-style: normal; font-family: var(--font-sans); font-weight: 800; color: var(--color-teal); }

/* Accessibility */
.screen-reader-text {
    position: absolute !important;
    clip: rect(1px,1px,1px,1px);
    width: 1px; height: 1px;
    overflow: hidden;
}
.skip-link {
    position: absolute; left: -9999px; top: 8px;
    background: var(--color-navy); color: #fff; padding: 10px 16px; border-radius: 6px; z-index: 9999;
}
.skip-link:focus { left: 16px; }

/* Layout helpers */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}
.section { padding: var(--section-y) 0; }
.section--cream   { background: var(--color-bg-alt); }
.section--white   { background: #fff; }
.section--navy    { background: var(--color-navy); color: #fff; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--mint    { background: var(--color-mint); }

.eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--color-teal);
    margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--color-amber); }

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    margin-bottom: 18px;
}
.section-title em {
    font-style: normal;
    font-weight: 800;
    color: var(--color-teal);
}
.section-lead {
    max-width: 640px;
    color: var(--color-muted);
    font-size: 1.05rem;
}
.text-center { text-align: center; }
.stack-center { display: flex; flex-direction: column; align-items: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: var(--radius-pill);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn--primary {
    background: var(--color-amber);
    color: #fff;
    box-shadow: 0 8px 20px rgba(59, 165, 184, .28);
}
.btn--primary:hover { background: var(--color-amber-hover); opacity: 1; color: #fff; }

.btn--outline {
    background: transparent;
    color: var(--color-navy);
    border-color: var(--color-navy);
}
.btn--outline:hover { background: var(--color-navy); color: #fff; opacity: 1; }

.btn--ghost {
    background: #fff;
    color: var(--color-navy);
    border-color: var(--color-border);
}

.btn--navy {
    background: var(--color-navy);
    color: #fff;
}

/* Pill badge (hero social proof) */
.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 8px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
    font-size: .9rem;
    color: var(--color-muted);
    font-style: normal;
}
.pill-badge .stars { color: var(--color-star); letter-spacing: 1px; }

/* Trust badges */
.trust-badges {
    display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
    margin: 20px 0;
}
.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--color-border);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--color-navy);
}
.trust-chip--blue  { background: #E6F1F5; color: var(--color-teal); border-color: #C8E0E7; }
.trust-chip--round { border-radius: 50%; width: 64px; height: 64px; justify-content: center; padding: 0; text-align: center; line-height: 1; font-size: .68rem; }

/* Rating */
.rating-block {
    display: flex; align-items: center; gap: 14px; margin-top: 18px;
}
.rating-block .score {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 800;
}
.rating-block .stars { color: var(--color-star); letter-spacing: 2px; }
.rating-block .label { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--color-muted); }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    transition: border-color .2s ease, background .2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--color-border); }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 24px;
}
.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-navy);
    text-decoration: none;
}
.site-logo-img {
    display: block;
    height: 44px;
    width: auto;
    max-width: 340px;
}
.site-footer .site-logo-img { height: 44px; max-width: 340px; }
.custom-logo-link img { display: block; height: 44px; width: auto; max-width: 340px; }

/* Tablet: shrink slightly so logo + nav toggle fit comfortably */
@media (max-width: 900px) {
    .site-logo-img { height: 38px; max-width: 260px; }
    .custom-logo-link img { height: 38px; max-width: 260px; }
}
/* Phone: tighter */
@media (max-width: 480px) {
    .site-logo-img { height: 34px; max-width: 220px; }
    .custom-logo-link img { height: 34px; max-width: 220px; }
    .site-footer .site-logo-img { height: 38px; max-width: 260px; }
}
.primary-nav {
    display: flex; gap: 30px;
    list-style: none; margin: 0; padding: 0;
}
.primary-nav a {
    font-size: .98rem;
    font-weight: 500;
    color: var(--color-navy);
}
.nav-actions {
    display: flex; align-items: center; gap: 16px;
}
.nav-divider { width: 1px; height: 24px; background: var(--color-border); }
.nav-toggle {
    display: none; background: none; border: 0; cursor: pointer;
    width: 42px; height: 42px; border-radius: 10px;
    align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    display: block; width: 22px; height: 2px; background: var(--color-navy); position: relative; transition: .25s;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }

@media (max-width: 900px) {
    .primary-nav, .nav-actions .login-link, .nav-divider { display: none; }
    .nav-toggle { display: inline-flex; }
    .nav-inner { gap: 12px; }
    .nav-actions { gap: 8px; }
    .nav-actions .btn { padding: 10px 18px; font-size: .92rem; }
    .mobile-open .primary-nav {
        display: flex; flex-direction: column; gap: 0;
        position: absolute; top: 100%; left: 0; right: 0;
        background: #fff; padding: 16px 24px;
        box-shadow: var(--shadow-md);
    }
    .mobile-open .primary-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--color-border); }
}

/* Phone — minimize to keep logo + button + hamburger on one row */
@media (max-width: 480px) {
    .nav-inner { padding: 12px 0; gap: 8px; }
    .nav-actions .btn { padding: 9px 14px; font-size: .85rem; }
    .nav-actions .btn .arrow { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    padding: 40px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #EAF3F7 0%, #FFFFFF 100%);
}
.hero::before {
    content: "";
    position: absolute;
    right: -120px; top: 80px;
    width: 620px; height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(59, 165, 184, .18), transparent 70%);
    z-index: 0;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative; z-index: 1;
}
.hero-copy .micro {
    color: var(--color-navy-2); font-size: .92rem; margin: 10px 0 20px;
}
.hero h1 {
    font-size: clamp(2.6rem, 5.6vw, 4.6rem);
    line-height: 1.05;
    margin-bottom: 20px;
}
.hero h1 em {
    font-style: normal;
    font-weight: 800;
    color: var(--color-teal);
    display: inline;
}
.hero-ctas { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex; align-items: center; justify-content: center;
}
.hero-visual .blob {
    position: absolute; inset: 8%;
    background: radial-gradient(circle at 35% 35%, #C8E6EE, #EAF3F7 70%);
    border-radius: 50%;
    z-index: 0;
}
.hero-visual .phone-mock {
    position: relative; z-index: 2;
    width: 64%;
    background: var(--color-navy);
    border-radius: 36px;
    padding: 10px;
    box-shadow: var(--shadow-lg);
}
.hero-visual .phone-screen {
    background: #fff;
    border-radius: 28px;
    padding: 30px 20px 20px;
    min-height: 380px;
    position: relative;
}
.hero-visual .phone-screen::before {
    content: "";
    position: absolute; top: 12px; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 18px;
    background: var(--color-navy);
    border-radius: 10px;
}
.hero-visual .phone-screen h4 { font-size: 1rem; line-height: 1.3; margin-top: 14px; }
.hero-visual .mini-card {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 12px 14px;
    margin-top: 10px;
    font-size: .82rem;
}
.hero-visual .mini-card strong { display: block; margin-bottom: 4px; color: var(--color-navy); }
.hero-visual .mini-card .tag {
    display: inline-block;
    background: var(--color-mint);
    color: var(--color-navy);
    border-radius: 999px;
    padding: 2px 8px;
    font-size: .7rem;
    margin-top: 6px;
}
/* Hero bottle floating card — separate from the phone, with a solid backdrop so the glass doesn't reveal the phone screen */
.hero-visual .vial-pedestal {
    position: absolute;
    left: -10%;
    bottom: -2%;
    width: 46%;
    padding: 16px 16px 12px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    z-index: 6;
    box-shadow: 0 18px 38px rgba(44, 62, 80, 0.18);
    display: flex; align-items: flex-end; justify-content: center;
    gap: 6px;
}
.hero-visual .vial-img {
    position: static;
    width: 48%;
    height: auto;
    transform: none;
    filter: drop-shadow(0 10px 14px rgba(44, 62, 80, 0.18));
}
.hero-visual .vial-img--left  { transform: rotate(-2deg); }
.hero-visual .vial-img--right { transform: rotate(2deg); margin-left: -10px; }
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { max-width: 420px; margin: 0 auto; aspect-ratio: 1/1; }
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust-bar { padding: 64px 0; background: var(--color-bg); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.trust-bar h2 { text-align: center; font-size: clamp(1.3rem, 2.4vw, 1.9rem); margin-bottom: 36px; color: var(--color-navy); }
.logo-row {
    display: flex; justify-content: center; align-items: center; gap: 48px 56px;
    flex-wrap: wrap;
}
.logo-row .press-logo {
    height: 36px; width: auto; max-width: 180px;
    opacity: .55;
    filter: grayscale(100%);
    transition: opacity .2s ease;
}
.logo-row .press-logo:hover { opacity: .9; }
@media (max-width: 768px) {
    .logo-row { gap: 32px 36px; }
    .logo-row .press-logo { height: 28px; max-width: 130px; }
}
.logo-row .logo-item {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy);
    letter-spacing: -.01em;
    white-space: nowrap;
}

/* ==========================================================================
   HOW IT WORKS - Steps
   ========================================================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}
.step-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-card .num {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--color-teal);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.step-card .visual {
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    background: linear-gradient(135deg, #E6F1F5, #F4F8FA);
    margin-bottom: 22px;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    color: var(--color-teal);
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { color: var(--color-muted); font-size: .97rem; margin: 0; }

.steps-cta { margin-top: 44px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 860px) { .steps-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   STATS / SCIENCE BLOCK
   ========================================================================== */
.stats-block .grid {
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 36px 0;
}
.stat-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    padding: 26px 22px;
}
.stat-card .num {
    font-family: var(--font-sans);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    color: #7FD4E0;
    margin-bottom: 10px;
}
.stat-card p { margin: 0; color: #dfe4ef; font-size: .95rem; }

.calc-widget {
    background: #fff; color: var(--color-navy);
    border-radius: 22px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
}
.calc-widget .label {
    font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
    color: var(--color-muted);
}
.calc-widget .current {
    font-family: var(--font-sans);
    font-size: 2.2rem; font-weight: 800;
    margin: 10px 0 6px;
    color: var(--color-teal);
}
.calc-widget input[type=range] {
    width: 100%; margin: 14px 0 18px; accent-color: var(--color-amber);
}
.calc-widget .result {
    background: var(--color-bg);
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 1.05rem;
}
.calc-widget .result strong {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-teal);
    display: block;
}
@media (max-width: 860px) {
    .stats-block .grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ==========================================================================
   TREATMENT CARDS
   ========================================================================== */
.treatments {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    margin-top: 40px;
}
.treatments-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    gap: 22px;
}
.treat-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: 22px;
    display: flex; flex-direction: column;
    scroll-snap-align: start;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}
.treat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.treat-card .photo {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    background: linear-gradient(135deg, #E6F1F5, #F4F8FA);
    margin-bottom: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    color: var(--color-teal);
}
.treat-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.treat-card .price {
    color: var(--color-muted);
    font-size: .92rem;
    margin-bottom: 18px;
}
.treat-card .price strong { color: var(--color-teal); font-size: 1.4rem; font-weight: 800; font-family: var(--font-sans); }
.treat-card .actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.treat-card .actions .btn { width: 100%; justify-content: center; padding: 12px 18px; font-size: .95rem; }

/* Two-up program cards (GLP / GLP+GIP) */
.treatments-2up {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 50px;
    max-width: 980px;
    margin-left: auto; margin-right: auto;
}
.treat-card--wide {
    position: relative;
    padding: 36px 32px;
}
.treat-card--wide .photo {
    aspect-ratio: auto;
    height: 220px;
    margin-bottom: 22px;
    font-size: 4rem;
    overflow: hidden;
    position: relative;
}
.treat-card--wide .photo--bottle {
    background: linear-gradient(180deg, #EAF3F7 0%, #FFFFFF 100%);
    padding: 20px;
}
.treat-card--wide .photo--bottle img {
    width: auto;
    height: 100%;
    margin: 0 auto;
    filter: drop-shadow(0 12px 20px rgba(44, 62, 80, 0.18));
    transition: transform .3s ease;
}
.treat-card--wide:hover .photo--bottle img { transform: translateY(-4px) scale(1.03); }
.treat-card--wide .badge-tag {
    position: absolute;
    top: 22px; right: 22px;
    background: var(--color-teal);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
}
.treat-card--wide h3 { font-size: 1.6rem; margin-bottom: 4px; }
.treat-card--wide .tagline { color: var(--color-muted); margin: 0 0 14px; font-size: .98rem; }
.treat-card--wide .price { font-size: 1rem; margin-bottom: 18px; }
.treat-card--wide .price strong { font-size: 2rem; }
.treat-card--wide .mini-list {
    list-style: none;
    padding: 20px 0;
    margin: 0 0 22px;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.treat-card--wide .mini-list li {
    padding: 8px 0;
    display: flex; align-items: center; gap: 10px;
    font-size: .95rem;
}
.treat-card--wide .mini-list li::before {
    content: "✓";
    color: var(--color-teal);
    font-weight: 800;
    font-size: 1.1rem;
}
.treat-card--wide .actions { flex-direction: row; gap: 10px; }
.treat-card--wide .actions .btn { flex: 1; }
@media (max-width: 720px) {
    .treatments-2up { grid-template-columns: 1fr; }
    .treat-card--wide .actions { flex-direction: column; }
}

.carousel-nav {
    display: flex; justify-content: center; gap: 14px; margin-top: 22px;
}
.carousel-nav button {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid var(--color-border); background: #fff; color: var(--color-navy);
    cursor: pointer; font-size: 1.1rem; transition: background .2s ease, color .2s ease;
}
.carousel-nav button:hover { background: var(--color-navy); color: #fff; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}
.review-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 26px;
    border: 1px solid var(--color-border);
    display: flex; flex-direction: column; gap: 14px;
}
.review-card .stars { color: var(--color-star); letter-spacing: 1px; }
.review-card p { color: var(--color-navy); font-size: .98rem; margin: 0; }
.review-card .author {
    display: flex; gap: 12px; align-items: center; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--color-border);
}
.review-card .avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, #d9c6a3, #a8c9d1);
}
.review-card .name { font-weight: 600; font-size: .95rem; }
.review-card .meta { font-size: .78rem; color: var(--color-muted); }
@media (max-width: 860px) { .testimonials .grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   PRICING CARD
   ========================================================================== */
.pricing .grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.pricing-media {
    background: linear-gradient(135deg, #D4E7EE, #EAF3F7);
    border-radius: 22px;
    aspect-ratio: 1/1;
    display: flex; align-items: center; justify-content: center;
    gap: 24px;
    padding: 40px;
    font-size: 4rem; color: var(--color-teal);
}
.pricing-media--bottles img {
    width: auto;
    height: 80%;
    filter: drop-shadow(0 16px 24px rgba(44, 62, 80, 0.2));
}
.pricing-media--bottles img:nth-child(1) { transform: rotate(-4deg) translateY(-10px); }
.pricing-media--bottles img:nth-child(2) { transform: rotate(3deg) translateY(10px); }
.pricing-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}
.pricing-card .head {
    display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap;
    padding-bottom: 20px; border-bottom: 1px solid var(--color-border);
}
.pricing-card .head h3 { font-size: 1.8rem; margin: 0; }
.pricing-card .head .pay { font-size: .78rem; color: var(--color-muted); }
.pricing-card .pay strong { display: block; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.feature-list { list-style: none; padding: 0; margin: 24px 0; }
.feature-list li {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: .98rem;
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list .tick {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--color-teal); color: #fff;
    display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
    font-weight: 700;
}
.feature-list .tag { font-weight: 700; margin-right: 4px; letter-spacing: .02em; }
.pricing-note { font-size: .82rem; color: var(--color-muted); margin: 14px 0 20px; }
@media (max-width: 860px) { .pricing .grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   MINT SWITCH BANNER
   ========================================================================== */
.switch-banner .grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: center;
}
.switch-media {
    background: #fff;
    border-radius: 22px;
    aspect-ratio: 1/1;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm);
}
.switch-media picture, .switch-media img {
    display: block;
    width: 100%; height: 100%;
    object-fit: cover;
}
.switch-banner ul { list-style: none; padding: 0; margin: 24px 0 0; }
.switch-banner ul li {
    display: flex; gap: 14px; align-items: flex-start; padding: 14px 0;
    font-size: 1.02rem;
}
.switch-banner ul li::before {
    content: "✓";
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--color-teal); color: #fff;
    display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
    font-weight: 700;
}
@media (max-width: 860px) { .switch-banner .grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   BENEFITS
   ========================================================================== */
.benefits .grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start;
}
.benefits .copy h2 { margin-bottom: 14px; }
.benefits .copy p { color: var(--color-muted); font-size: 1.02rem; }
.benefits .copy .dots { display: flex; gap: 6px; margin-top: 24px; }
.benefits .copy .dots span { width: 14px; height: 14px; border-radius: 3px; }
.benefits .copy .dots span:nth-child(1){background:var(--color-teal);}
.benefits .copy .dots span:nth-child(2){background:var(--color-mint-2);}
.benefits .copy .dots span:nth-child(3){background:var(--color-navy);}

.benefit-cards { display: grid; gap: 14px; }
.benefit-item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 22px;
    display: flex; gap: 18px; align-items: flex-start;
    transition: transform .2s ease, box-shadow .2s ease;
}
.benefit-item:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.benefit-item .icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: #E6F1F5;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--color-teal);
    flex-shrink: 0;
    font-size: 1.2rem;
}
.benefit-item h4 { margin: 0 0 4px; font-family: var(--font-sans); font-size: 1.05rem; font-weight: 700; }
.benefit-item p  { margin: 0; font-size: .92rem; color: var(--color-muted); }
@media (max-width: 860px) { .benefits .grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-wrap { max-width: 820px; margin: 40px auto 0; }
.faq-item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    overflow: hidden;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    display: flex; justify-content: space-between; align-items: center; gap: 18px;
    font-weight: 600;
    font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-size: 1.6rem;
    color: var(--color-navy);
    transition: transform .2s ease;
    line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer {
    padding: 0 26px 22px;
    color: var(--color-muted);
}
.faq-more { display: flex; justify-content: center; margin-top: 24px; }

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */
.newsletter .grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.newsletter ul { list-style: none; padding: 0; margin: 20px 0; }
.newsletter ul li {
    padding: 10px 0;
    display: flex; align-items: center; gap: 12px;
}
.newsletter ul li::before {
    content: "✓";
    color: var(--color-teal);
    font-size: 1.1rem;
    font-weight: 700;
}
.newsletter-form { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.newsletter-form input[type=email] {
    flex: 1 1 240px;
    padding: 14px 20px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-border);
    font-size: 1rem;
    font-family: var(--font-sans);
    background: #fff;
}
.newsletter-form input:focus { outline: 2px solid var(--color-amber); outline-offset: 2px; }
.newsletter-media {
    background: linear-gradient(135deg, #C8E6EE, #EAF3F7);
    border-radius: 22px;
    aspect-ratio: 1/1;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.newsletter-media picture, .newsletter-media img {
    display: block;
    width: 100%; height: 100%;
    object-fit: cover;
}
@media (max-width: 860px) { .newsletter .grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   CONTACT BLOCK
   ========================================================================== */
.contact-block .grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.contact-block a.email-large {
    font-family: var(--font-sans);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--color-teal);
    display: inline-block;
    margin: 14px 0 18px;
}
.contact-block .portal-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; font-size: .95rem; color: var(--color-muted); }
.contact-badges { display: flex; justify-content: flex-end; gap: 16px; flex-wrap: wrap; }
@media (max-width: 860px) { .contact-block .grid { grid-template-columns: 1fr; } .contact-badges { justify-content: flex-start; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: #fff;
    border-top: 1px solid var(--color-border);
    padding: 50px 0 24px;
    font-size: .92rem;
    color: var(--color-muted);
}
.footer-top {
    display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
    padding-bottom: 28px; border-bottom: 1px solid var(--color-border);
}
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.footer-nav a { color: var(--color-navy); font-weight: 500; }
.payment-row { display: flex; gap: 8px; }
.payment-chip {
    padding: 6px 10px; border-radius: 6px; background: var(--color-bg); border: 1px solid var(--color-border);
    font-size: .75rem; font-weight: 700; color: var(--color-navy);
}
.legal { padding: 28px 0; font-size: .82rem; line-height: 1.6; }
.legal p { margin: 0 0 10px; }
.footer-bottom {
    display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    padding-top: 20px; border-top: 1px solid var(--color-border);
    font-size: .82rem;
}
.citations strong { letter-spacing: .12em; text-transform: uppercase; color: var(--color-navy); margin-right: 10px; font-size: .72rem; }
.policy-links { display: flex; gap: 14px; flex-wrap: wrap; }
.policy-links a { color: var(--color-muted); }

/* ==========================================================================
   WORDPRESS CORE CLASSES
   ========================================================================== */
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide { max-width: 1200px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }
.wp-caption-text { font-size: .85rem; color: var(--color-muted); text-align: center; }
.sticky { display: block; }
.gallery-caption { font-size: .85rem; }
.bypostauthor { display: block; }

/* Blog post list (fallback) */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.post-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 24px; }
.post-card h2 { font-size: 1.35rem; margin-bottom: 10px; }
.post-card .meta { font-size: .82rem; color: var(--color-muted); margin-bottom: 12px; }
.single-post .entry-content { max-width: 760px; margin: 0 auto; font-size: 1.08rem; line-height: 1.75; }
.single-post .entry-content p { margin-bottom: 1.2em; }
.single-post .entry-title { text-align: center; margin: 40px 0 20px; }

/* 3-column blog post layout: TOC + article + sticky CTA */
.post-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr) 280px; gap: 48px; max-width: 1240px; margin: 40px auto 0; align-items: start; }
.post-layout .entry-content { max-width: none; margin: 0; }
.post-toc, .post-rail { position: sticky; top: 100px; max-height: calc(100vh - 120px); overflow-y: auto; }
.post-toc .toc-eyebrow { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--color-muted); margin-bottom: 14px; font-weight: 700; }
.post-toc ul { list-style: none; padding: 0; margin: 0; border-left: 2px solid var(--color-border); }
.post-toc li { padding: 0; }
.post-toc a { display: block; padding: 8px 0 8px 16px; margin-left: -2px; border-left: 2px solid transparent; color: var(--color-muted); font-size: .92rem; line-height: 1.4; text-decoration: none; transition: color .15s, border-color .15s; }
.post-toc a:hover { color: var(--color-navy); }
.post-toc a.is-h3 { padding-left: 28px; font-size: .86rem; }
.post-toc a.is-active { color: var(--color-amber); border-left-color: var(--color-amber); font-weight: 600; }
.post-rail .rail-card { background: linear-gradient(160deg, var(--color-sky) 0%, var(--color-light) 100%); border: 1px solid var(--color-border); border-radius: 18px; padding: 24px; }
.post-rail .rail-card h4 { margin: 0 0 6px; font-size: 1.1rem; line-height: 1.3; }
.post-rail .rail-card p { margin: 0 0 14px; font-size: .88rem; color: var(--color-muted); line-height: 1.5; }
.post-rail .rail-card .price { font-size: .82rem; color: var(--color-navy); margin-bottom: 14px; }
.post-rail .rail-card .price strong { color: var(--color-amber); font-weight: 700; }
.post-rail .rail-card .btn { width: 100%; justify-content: center; }
.post-rail .rail-bottle { display: flex; justify-content: center; margin-bottom: 14px; }
.post-rail .rail-bottle img { height: 140px; width: auto; filter: drop-shadow(0 12px 18px rgba(44,62,80,.18)); }
.post-rail .rail-mini { margin-top: 18px; padding: 14px 16px; background: #fff; border: 1px solid var(--color-border); border-radius: 12px; font-size: .82rem; color: var(--color-muted); display: flex; gap: 10px; align-items: center; }
.post-rail .rail-mini::before { content: "✓"; width: 22px; height: 22px; background: var(--color-amber); color: #fff; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: .8rem; flex-shrink: 0; }
.entry-content h2[id], .entry-content h3[id] { scroll-margin-top: 100px; }
@media (max-width: 1100px) {
  .post-layout { grid-template-columns: 1fr; gap: 30px; max-width: 760px; }
  .post-toc, .post-rail { position: static; max-height: none; overflow: visible; }
  .post-toc #post-toc-list { display: none; }
  .post-toc .toc-eyebrow { display: none; }
}

/* Comments */
.comments-area { max-width: 760px; margin: 50px auto; }
.comment-list { list-style: none; padding: 0; }
.comment-body { background: #fff; border: 1px solid var(--color-border); border-radius: 12px; padding: 18px; margin-bottom: 14px; }
.comment-form input, .comment-form textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--color-border); border-radius: 10px; font-family: var(--font-sans); margin-bottom: 12px; }

/* Widgets / sidebar */
.widget { margin-bottom: 30px; }
.widget-title { font-size: 1.1rem; margin-bottom: 12px; }
.widget ul { list-style: none; padding: 0; }
.widget ul li { padding: 8px 0; border-bottom: 1px solid var(--color-border); }

/* Pagination */
.pagination { display: flex; gap: 8px; justify-content: center; margin: 40px 0; }
.pagination a, .pagination span { padding: 8px 14px; border-radius: 8px; border: 1px solid var(--color-border); background: #fff; }
.pagination .current { background: var(--color-navy); color: #fff; border-color: var(--color-navy); }

/* ==========================================================================
   SINGLE POST — Author bar, Trust callout, Featured + Sticky CTAs
   ========================================================================== */

/* Author / Reviewer stacked bar */
.author-bar {
    max-width: 760px;
    margin: 22px auto 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 22px;
    padding: 14px 22px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(44,62,80,.04);
}
.author-bar__group {
    display: flex; align-items: center; gap: 12px;
    flex: 0 1 auto;
    min-width: 0;
}
.author-bar__avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C8E6EE, #3BA5B8);
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.author-bar__avatar--reviewer {
    background: var(--color-teal);
    color: #fff;
}
.author-bar__avatar--reviewer svg { display: block; }
.author-bar__text { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.author-bar__label {
    font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--color-muted);
}
.author-bar__text strong {
    color: var(--color-navy);
    font-size: .95rem; font-weight: 700;
}
.author-bar__divider {
    width: 1px; height: 30px; background: var(--color-border);
}
.author-bar__badge {
    display: inline-flex; align-items: center; gap: 6px;
    margin-left: auto;
    padding: 6px 12px;
    background: rgba(59,165,184,.10);
    color: var(--color-teal);
    border-radius: 999px;
    font-size: .78rem; font-weight: 700;
    letter-spacing: .04em;
}
@media (max-width: 640px) {
    .author-bar { padding: 14px; gap: 12px; }
    .author-bar__divider { display: none; }
    .author-bar__badge { margin-left: 0; }
}

/* Why Trust Our Content callout */
.trust-callout {
    display: flex;
    gap: 16px;
    background: linear-gradient(180deg, #F4F8FA, #EAF3F7);
    border: 1px solid #D4E7EE;
    border-left: 4px solid var(--color-teal);
    border-radius: 12px;
    padding: 20px 22px;
    margin: 0 0 28px;
}
.trust-callout__icon {
    color: var(--color-teal);
    flex-shrink: 0;
    padding-top: 2px;
}
.trust-callout__body h3 {
    margin: 0 0 6px;
    font-size: 1.1rem; color: var(--color-navy);
}
.trust-callout__body p {
    margin: 0 0 10px;
    color: var(--color-text);
    font-size: .95rem; line-height: 1.55;
}
.trust-callout__body ul {
    margin: 0; padding: 0;
    list-style: none;
    display: grid; gap: 6px;
}
.trust-callout__body li {
    position: relative;
    padding-left: 22px;
    font-size: .9rem;
    color: var(--color-text);
}
.trust-callout__body li::before {
    content: "";
    position: absolute; left: 0; top: 6px;
    width: 14px; height: 14px;
    background: var(--color-teal);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
}

/* Featured yellow CTA (inline + sticky variants) */
:root {
    --color-cta-yellow: #FFC629;
    --color-cta-yellow-dk: #E8AE10;
}

.featured-cta-wrap { margin: 28px 0; }

.featured-cta,
.entry-content .featured-cta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    padding: 22px 26px;
    background: linear-gradient(135deg, #FFD96B 0%, #FFC629 60%, #FFB400 100%);
    color: var(--color-navy);
    border: 2px solid var(--color-cta-yellow-dk);
    border-radius: 16px;
    text-decoration: none !important;
    box-shadow: 0 8px 26px rgba(232,174,16,.35), 0 2px 6px rgba(44,62,80,.10);
    overflow: hidden;
    isolation: isolate;
    transition: transform .15s ease, box-shadow .2s ease;
    animation: cta-bob 2.6s ease-in-out infinite;
}
.entry-content .featured-cta * { text-decoration: none !important; }
.featured-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(232,174,16,.45), 0 4px 10px rgba(44,62,80,.14);
    color: var(--color-navy);
}
.featured-cta::after {
    /* Subtle shine sweep */
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    left: -40%;
    width: 30%;
    background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.55) 50%, transparent 100%);
    transform: skewX(-20deg);
    animation: cta-shine 3.2s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}
.featured-cta__pulse {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(255,198,41,.7);
    animation: cta-pulse 2.2s ease-out infinite;
    pointer-events: none;
    z-index: 0;
}
.featured-cta__text {
    display: flex; flex-direction: column; gap: 2px;
    flex: 1; min-width: 0;
    position: relative; z-index: 2;
}
.featured-cta__eyebrow {
    font-size: .78rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(44,62,80,.75);
}
.featured-cta__title {
    font-size: 1.2rem; font-weight: 800; line-height: 1.25;
    color: var(--color-navy);
}
.featured-cta__sub {
    font-size: .85rem; color: rgba(44,62,80,.78); font-weight: 500;
}
.featured-cta__btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 20px;
    background: var(--color-navy);
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-size: .95rem;
    flex-shrink: 0;
    position: relative; z-index: 2;
    transition: background .2s ease;
}
.featured-cta:hover .featured-cta__btn { background: #1d2c3a; }
.featured-cta__btn .arrow path { stroke: #fff; }
@media (max-width: 640px) {
    .featured-cta { flex-direction: column; align-items: flex-start; gap: 14px; padding: 20px; }
    .featured-cta__btn { width: 100%; justify-content: center; }
}

/* Sticky bottom CTA */
.sticky-cta {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 80;
    background: linear-gradient(180deg, #fff, #F4F8FA);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -8px 24px rgba(44,62,80,.10);
    transform: translateY(110%);
    transition: transform .35s ease;
    padding: 12px 0;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__inner {
    display: flex; align-items: center; gap: 18px;
}
.sticky-cta__copy {
    display: flex; flex-direction: column; line-height: 1.3;
    flex: 1; min-width: 0;
}
.sticky-cta__copy strong {
    color: var(--color-navy); font-size: 1rem; font-weight: 800;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.sticky-cta__copy span {
    color: var(--color-muted); font-size: .82rem;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.sticky-cta .featured-cta--sm {
    width: auto; flex: 0 0 auto; padding: 12px 18px;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(232,174,16,.45);
    animation: cta-bob 2.6s ease-in-out infinite;
}
.sticky-cta .featured-cta--sm .featured-cta__btn {
    background: transparent; color: var(--color-navy); padding: 0;
}
.sticky-cta .featured-cta--sm .featured-cta__btn .arrow path { stroke: var(--color-navy); }
.sticky-cta__close {
    background: none; border: none;
    color: var(--color-muted);
    font-size: 1.5rem; line-height: 1;
    cursor: pointer; padding: 4px 8px;
    flex-shrink: 0;
}
.sticky-cta__close:hover { color: var(--color-navy); }
@media (max-width: 640px) {
    .sticky-cta__copy span { display: none; }
    .sticky-cta__copy strong { font-size: .9rem; white-space: normal; }
    .sticky-cta .featured-cta--sm { padding: 10px 14px; }
}

/* Animations */
@keyframes cta-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255,198,41,.55); }
    70%  { box-shadow: 0 0 0 16px rgba(255,198,41,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,198,41,0); }
}
@keyframes cta-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-2px); }
}
@keyframes cta-shine {
    0%   { left: -40%; }
    60%  { left: 120%; }
    100% { left: 120%; }
}
@media (prefers-reduced-motion: reduce) {
    .featured-cta, .featured-cta__pulse, .featured-cta::after,
    .sticky-cta .featured-cta--sm { animation: none !important; }
    .featured-cta::after { display: none; }
    .sticky-cta { transition: none; }
}

/* ==========================================================================
   SINGLE POST HERO — Two-column (title/meta/author/CTA + featured image)
   ========================================================================== */

.single-post .post-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
    max-width: 1240px;
    margin: 16px auto 40px;
    padding: 0;
}
.single-post .post-hero__main { min-width: 0; }
.single-post .post-hero .entry-title {
    text-align: left;
    margin: 0 0 22px;
    font-size: clamp(2rem, 3.4vw, 2.85rem);
    line-height: 1.15;
    color: var(--color-navy);
}
.post-hero__pills {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin: 0 0 22px;
}
.post-hero__pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    font-size: .82rem;
    color: var(--color-navy);
    font-weight: 600;
}
.post-hero__pill svg { color: var(--color-teal); flex-shrink: 0; }
.post-hero__pill-label {
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .68rem;
    font-weight: 700;
    margin-right: 2px;
}

/* Author bar — hero variant: left-aligned, no max-width centering */
.author-bar--hero {
    max-width: none;
    margin: 0 0 24px;
}

/* Outline hero CTA (matches TrimRx feel) */
.btn--hero-outline {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 26px;
    background: #fff;
    color: var(--color-teal);
    border: 2px solid var(--color-teal);
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background .15s, color .15s, transform .15s, box-shadow .15s;
}
.btn--hero-outline:hover {
    background: var(--color-teal);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(59,165,184,.22);
}
.btn--hero-outline .arrow { transition: transform .15s; }
.btn--hero-outline:hover .arrow { transform: translateX(3px); }

/* Featured image column */
.post-hero__media {
    position: relative;
    background: linear-gradient(160deg, #EAF3F7 0%, #F4F8FA 100%);
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 5 / 4;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 36px rgba(44,62,80,.10);
}
.post-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.post-hero__img--fallback {
    width: auto;
    height: 78%;
    object-fit: contain;
    filter: drop-shadow(0 16px 28px rgba(44,62,80,.18));
}

/* Hide the standalone featured image (we render it in the hero now) */
.single-post article > .post-thumbnail { display: none; }

@media (max-width: 900px) {
    .single-post .post-hero {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 30px;
    }
    .single-post .post-hero__media { aspect-ratio: 16 / 10; order: -1; }
    .single-post .post-hero .entry-title { text-align: center; }
    .post-hero__pills { justify-content: center; }
    .author-bar--hero { justify-content: center; }
    .btn--hero-outline { display: flex; justify-content: center; }
}

/* ==========================================================================
   TRUST CALLOUT — rail variant (lives inside the left TOC sidebar)
   ========================================================================== */

.post-toc .trust-callout--rail {
    display: block;
    margin: 28px 0 0;
    padding: 18px 18px;
    background: linear-gradient(180deg, #F4F8FA, #EAF3F7);
    border: 1px solid #D4E7EE;
    border-left: 4px solid var(--color-teal);
    border-radius: 12px;
}
.post-toc .trust-callout--rail .trust-callout__icon {
    display: inline-flex;
    width: 32px; height: 32px;
    align-items: center; justify-content: center;
    background: rgba(59,165,184,.12);
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 0;
}
.post-toc .trust-callout--rail .trust-callout__body h3 {
    font-size: .98rem;
    margin: 0 0 6px;
}
.post-toc .trust-callout--rail .trust-callout__body p {
    font-size: .84rem;
    line-height: 1.5;
    margin: 0 0 10px;
}
.post-toc .trust-callout--rail .trust-callout__body li {
    font-size: .82rem;
    line-height: 1.4;
    padding-left: 20px;
}
.post-toc .trust-callout--rail .trust-callout__body li::before {
    width: 12px; height: 12px;
    top: 5px;
}

/* On mobile the rail callout reads as a normal block */
@media (max-width: 1024px) {
    .post-toc .trust-callout--rail { margin-top: 22px; }
}

/* ==========================================================================
   TRUST CALLOUT — bottom variant (after article body)
   ========================================================================== */

.trust-callout--bottom {
    max-width: 1240px;
    margin: 40px auto 0;
    padding: 26px 28px;
    background: linear-gradient(180deg, #F4F8FA, #EAF3F7);
    border: 1px solid #D4E7EE;
    border-left: 4px solid var(--color-teal);
    border-radius: 14px;
    display: flex;
    gap: 18px;
}
.trust-callout--bottom .trust-callout__icon {
    width: 40px; height: 40px;
    background: rgba(59,165,184,.12);
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--color-teal);
    flex-shrink: 0;
}
.trust-callout--bottom .trust-callout__body h3 {
    font-size: 1.15rem;
    margin: 0 0 8px;
    color: var(--color-navy);
}
.trust-callout--bottom .trust-callout__body p {
    font-size: .96rem;
    line-height: 1.6;
    margin: 0 0 14px;
}
.trust-callout--bottom .trust-callout__body ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 8px 24px;
}
.trust-callout--bottom .trust-callout__body li {
    font-size: .92rem;
}

/* ==========================================================================
   RELATED POSTS (Keep reading)
   ========================================================================== */

.single-post .related {
    max-width: 1240px;
    margin: 56px auto 0;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}
.single-post .related h3 {
    text-align: center;
    font-size: 1.6rem;
    color: var(--color-navy);
    margin: 0 0 8px;
}
.single-post .related .posts-grid {
    margin-top: 28px;
}
.post-card { transition: transform .15s, box-shadow .15s; }
.post-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(44,62,80,.10); }
.post-card h2 a { color: var(--color-navy); text-decoration: none; }
.post-card h2 a:hover { color: var(--color-teal); }
.post-card p { color: var(--color-muted); font-size: .94rem; line-height: 1.55; margin: 0; }
.post-card__thumb {
    display: block;
    margin: -24px -24px 16px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    background: var(--color-bg-alt);
}
.post-card__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}
.post-card:hover .post-card__thumb img { transform: scale(1.04); }

/* ==========================================================================
   PRE-FOOTER NEWSLETTER CTA
   ========================================================================== */

.footer-newsletter {
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dark, #2E8A9A) 100%);
    color: #fff;
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.footer-newsletter::before {
    content: "";
    position: absolute;
    top: -120px; right: -80px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(255,255,255,.10) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.footer-newsletter::after {
    content: "";
    position: absolute;
    bottom: -100px; left: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.footer-newsletter__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    z-index: 1;
}
.footer-newsletter__eyebrow {
    display: inline-block;
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    font-weight: 700;
    margin-bottom: 10px;
}
.footer-newsletter__title {
    color: #fff;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    line-height: 1.2;
    margin: 0 0 14px;
}
.footer-newsletter__sub {
    color: rgba(255,255,255,.88);
    font-size: 1rem;
    line-height: 1.55;
    margin: 0;
    max-width: 540px;
}
.footer-newsletter__form {
    display: flex;
    gap: 10px;
    background: #fff;
    padding: 8px;
    border-radius: 999px;
    box-shadow: 0 16px 36px rgba(0,0,0,.18);
}
.footer-newsletter__form input[type="email"] {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 18px;
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--color-navy);
    min-width: 0;
}
.footer-newsletter__form input[type="email"]::placeholder { color: var(--color-muted); }
.footer-newsletter__form input[type="email"]:focus { outline: none; }
.footer-newsletter__btn {
    background: var(--color-cta-yellow, #FFC629);
    color: var(--color-navy);
    border: none;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 700;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background .15s, transform .15s;
    white-space: nowrap;
}
.footer-newsletter__btn:hover {
    background: var(--color-cta-yellow-dk, #E8AE10);
    transform: translateY(-1px);
}
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (max-width: 860px) {
    .footer-newsletter { padding: 48px 0; }
    .footer-newsletter__inner { grid-template-columns: 1fr; gap: 28px; }
    .footer-newsletter__form { flex-direction: column; padding: 14px; border-radius: 18px; }
    .footer-newsletter__btn { justify-content: center; }
}

/* Newsletter form status messages */
.footer-newsletter__msg {
    grid-column: 1 / -1;
    margin-top: 14px;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: .95rem;
    font-weight: 500;
    background: rgba(255,255,255,.92);
    color: var(--color-navy, #2C3E50);
    border-left: 4px solid var(--color-cta-yellow, #FFC629);
}
.footer-newsletter__msg--error {
    border-left-color: #d33;
    color: #6b1414;
    background: #fff;
}

/* Homepage newsletter status message (shares look with footer message) */
.newsletter .footer-newsletter__msg {
    margin-top: 16px;
    max-width: 540px;
}

/* ==========================================================================
   Breadcrumbs (single posts)
   ========================================================================== */
.breadcrumbs {
    margin: 0 0 24px;
    font-size: .88rem;
    color: var(--color-muted, #6b7a85);
}
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.breadcrumbs a {
    color: var(--color-teal, #3BA5B8);
    text-decoration: none;
    font-weight: 600;
    transition: color .15s;
}
.breadcrumbs a:hover { color: var(--color-teal-dark, #2E8A9A); text-decoration: underline; }
.breadcrumbs .sep { color: #c5cdd2; font-weight: 400; }
.breadcrumbs .current {
    color: var(--color-navy, #2C3E50);
    font-weight: 500;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Category pill above the H1 in single-post hero */
.post-hero__cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 14px;
    padding: 6px 12px;
    background: rgba(59, 165, 184, 0.10);
    color: var(--color-teal-dark, #2E8A9A);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-decoration: none;
    transition: background .15s;
}
.post-hero__cat:hover { background: rgba(59, 165, 184, 0.18); }

@media (max-width: 640px) {
    .breadcrumbs { font-size: .82rem; }
    .breadcrumbs .current { max-width: 220px; }
}

/* Tighten the gap between the site header and the breadcrumbs on single posts */
.section.single-post { padding-top: 28px; }
.single-post .breadcrumbs { margin-top: 0; margin-bottom: 18px; }
@media (max-width: 640px) {
    .section.single-post { padding-top: 18px; }
}

/* Archive (category/tag/author) pages */
.section.blog-archive { padding-top: 28px; }
.blog-archive .archive-description {
    max-width: 680px;
    margin: 12px auto 0;
    color: var(--color-muted, #6b7a85);
    font-size: 1.02rem;
    line-height: 1.6;
}
.blog-archive .archive-description p:last-child { margin-bottom: 0; }
@media (max-width: 640px) { .section.blog-archive { padding-top: 18px; } }
