/* GRHC — GutReset + HerCycle bundle landing (BloomLab 2026) */

:root {
    --grhc-teal: #164552;
    --grhc-teal-mid: #3A96A8;
    --grhc-mint: #F2FAF7;
    --grhc-peach: #D46B45;
    --grhc-peach-soft: #FFF0EB;
    --grhc-green: #34A853;
    --grhc-white: #fff;
    --grhc-radius-lg: 32px;
    --grhc-radius-xl: 64px;
    --bloom-standard-width: 1200px;
    --bloom-transition: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

body.page-template-grhc-landing-page-php,
body.page-template-grhc-landing-page-php #page {
    font-family: var(--bloom-font-family, 'Plus Jakarta Sans', -apple-system, sans-serif) !important;
    color: var(--grhc-teal);
    background: var(--grhc-white);
    overflow-x: hidden;
}

.grhc-wrap {
    width: 100%;
}

/* —— Hero —— */
.grhc-hero {
    background: linear-gradient(165deg, var(--grhc-mint) 0%, var(--grhc-white) 45%, var(--grhc-peach-soft) 100%);
    padding: var(--bloom-hero-padding-top, 80px) var(--bloom-side-padding) 64px;
}

.grhc-hero-inner {
    max-width: var(--bloom-standard-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: center;
}

.grhc-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.grhc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--grhc-white);
    border: 1px solid rgba(22, 69, 82, 0.08);
    font-size: 13px;
    font-weight: 700;
    color: var(--grhc-teal-mid);
}

.grhc-hero h1 {
    font-size: clamp(2.1rem, 4.5vw, 3.35rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    color: var(--grhc-teal);
}

.grhc-hero h1 span {
    color: var(--grhc-peach);
}

.grhc-lead {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.65;
    color: rgba(22, 69, 82, 0.88);
    margin: 0 0 28px;
    max-width: 34em;
}

.grhc-hero-cta {
    margin-bottom: 18px;
}

.grhc-hero-trust {
    font-size: 0.85rem;
    color: rgba(22, 69, 82, 0.6);
    margin: 0;
    font-weight: 600;
}

.grhc-hero-visual {
    position: relative;
    border-radius: var(--grhc-radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(22, 69, 82, 0.12);
}

.grhc-hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

/* —— Buttons —— */
.grhc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    transition: transform var(--bloom-transition), box-shadow var(--bloom-transition);
    white-space: nowrap;
}

.grhc-btn--primary {
    background: var(--grhc-teal);
    color: var(--grhc-white);
    box-shadow: 0 10px 32px rgba(22, 69, 82, 0.28);
}

.grhc-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(22, 69, 82, 0.35);
    color: var(--grhc-white);
}

.grhc-btn--white {
    background: var(--grhc-white);
    color: var(--grhc-teal);
    box-shadow: 0 10px 32px rgba(0,0,0,0.15);
}

.grhc-btn--white:hover {
    transform: translateY(-2px);
    color: var(--grhc-teal);
}

.grhc-btn--lg {
    padding: 18px 40px;
    font-size: 1.08rem;
}

/* —— GEO capsule —— */
.grhc-capsule-outer {
    padding: 0 var(--bloom-side-padding) 40px;
    background: var(--grhc-white);
}

.grhc-capsule {
    max-width: var(--bloom-standard-width);
    margin: 0 auto;
    background: var(--grhc-mint);
    border-radius: var(--grhc-radius-lg);
    padding: 26px 30px;
    border-left: 5px solid var(--grhc-green);
}

.grhc-capsule p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.7;
    color: var(--grhc-teal);
}

.grhc-capsule a {
    color: var(--grhc-green);
    text-decoration: underline;
}

/* —— Section shell —— */
.grhc-section {
    padding: var(--bloom-section-padding, 80px var(--bloom-side-padding));
}

.grhc-section--soft {
    background: var(--grhc-mint);
}

.grhc-section--warm {
    background: var(--grhc-peach-soft);
}

.grhc-section-inner {
    max-width: var(--bloom-standard-width);
    margin: 0 auto;
}

.grhc-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.grhc-section-head h2 {
    font-size: clamp(1.85rem, 3.5vw, 2.65rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 14px;
    color: var(--grhc-teal);
}

.grhc-section-head p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(22, 69, 82, 0.85);
}

.grhc-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grhc-peach);
    margin-bottom: 10px;
}

/* —— Persona tags —— */
.grhc-persona-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.grhc-persona-tag--gut {
    background: rgba(58, 150, 168, 0.12);
    color: var(--grhc-teal-mid);
}

.grhc-persona-tag--her {
    background: rgba(212, 107, 69, 0.12);
    color: var(--grhc-peach);
}

/* —— Problem split —— */
.grhc-problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.grhc-problem-card {
    background: var(--grhc-white);
    border-radius: var(--grhc-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(22, 69, 82, 0.06);
    box-shadow: 0 12px 40px rgba(22, 69, 82, 0.06);
    transition: transform var(--bloom-transition), box-shadow var(--bloom-transition);
}

.grhc-problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(22, 69, 82, 0.1);
}

.grhc-problem-card img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.grhc-problem-body {
    padding: 26px 26px 30px;
}

.grhc-problem-body h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 12px;
    color: var(--grhc-teal);
}

.grhc-problem-body ul {
    margin: 0;
    padding-left: 1.15rem;
    color: rgba(22, 69, 82, 0.9);
    line-height: 1.65;
    font-size: 0.98rem;
}

.grhc-problem-body li {
    margin-bottom: 8px;
}

.grhc-problem-note {
    margin-top: 14px;
    font-size: 0.9rem;
    color: var(--grhc-teal-mid);
    font-style: italic;
}

/* —— Why / Science —— */
.grhc-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.grhc-why-card {
    background: var(--grhc-white);
    padding: 32px;
    border-radius: var(--grhc-radius-lg);
    border: 1px solid rgba(22, 69, 82, 0.07);
}

.grhc-why-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
    line-height: 1;
}

.grhc-why-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 12px;
    color: var(--grhc-teal);
}

.grhc-why-card p {
    margin: 0 0 16px;
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(22, 69, 82, 0.88);
}

.grhc-why-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--grhc-teal-mid);
    text-decoration: none;
}

.grhc-why-link:hover {
    text-decoration: underline;
}

.grhc-why-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(22, 69, 82, 0.5);
    margin: 0;
    font-style: italic;
}

/* —— Testimonials —— */
.grhc-testimonials {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 22px;
    align-items: start;
}

.grhc-testi-card {
    background: var(--grhc-white);
    border-radius: var(--grhc-radius-lg);
    padding: 28px 26px;
    border: 1px solid rgba(22, 69, 82, 0.07);
    box-shadow: 0 8px 28px rgba(22, 69, 82, 0.05);
}

.grhc-testi-card--featured {
    border-color: var(--grhc-teal-mid);
    border-width: 2px;
    box-shadow: 0 16px 48px rgba(22, 69, 82, 0.1);
}

.grhc-testi-stars {
    color: #F5A623;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.grhc-testi-quote {
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(22, 69, 82, 0.9);
    margin: 0 0 18px;
    font-style: italic;
}

.grhc-testi-name {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--grhc-teal);
}

.grhc-testi-sub {
    font-size: 0.82rem;
    color: rgba(22, 69, 82, 0.55);
    margin-top: 3px;
}

/* —— Bundle section —— */
.grhc-bundle-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.grhc-bundle-products {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    width: 100%;
}

.grhc-bundle-product {
    background: var(--grhc-white);
    border-radius: var(--grhc-radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    border: 2px solid rgba(22, 69, 82, 0.08);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.grhc-bundle-product--gut {
    border-top: 4px solid var(--grhc-teal-mid);
}

.grhc-bundle-product--her {
    border-top: 4px solid var(--grhc-peach);
}

.grhc-bundle-product img {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

.grhc-bundle-product-info {
    width: 100%;
}

.grhc-bundle-product-info h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 12px;
    color: var(--grhc-teal);
}

.grhc-bundle-product-info ul {
    margin: 0 0 14px;
    padding-left: 1.1rem;
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(22, 69, 82, 0.88);
}

.grhc-bundle-product-info li {
    margin-bottom: 6px;
}

.grhc-detail-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--grhc-teal-mid);
    text-decoration: none;
}

.grhc-detail-link:hover {
    text-decoration: underline;
}

.grhc-bundle-divider {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--grhc-teal-mid);
    opacity: 0.4;
    line-height: 1;
    align-self: center;
    flex-shrink: 0;
}

.grhc-bundle-cta-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.grhc-bundle-pirt {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--grhc-teal-mid);
    letter-spacing: 0.03em;
}

.grhc-bundle-note {
    font-size: 0.85rem;
    color: rgba(22, 69, 82, 0.55);
    margin: 0;
}

/* —— FAQ —— */
.grhc-faq {
    max-width: 800px;
    margin: 0 auto;
}

.grhc-faq details {
    background: var(--grhc-white);
    border-radius: 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(22, 69, 82, 0.08);
    padding: 0 20px;
}

.grhc-faq summary {
    cursor: pointer;
    font-weight: 800;
    padding: 18px 0;
    list-style: none;
    font-size: 1.02rem;
}

.grhc-faq summary::-webkit-details-marker {
    display: none;
}

.grhc-faq details[open] summary {
    border-bottom: 1px solid rgba(22, 69, 82, 0.08);
}

.grhc-faq .grhc-faq-a {
    padding: 16px 0 20px;
    font-size: 0.97rem;
    line-height: 1.65;
    color: rgba(22, 69, 82, 0.9);
}

.grhc-faq .grhc-faq-a a {
    color: var(--grhc-green);
    font-weight: 700;
}

/* —— Final strip —— */
.grhc-final {
    text-align: center;
    padding: 72px var(--bloom-side-padding) 80px;
    background: linear-gradient(180deg, var(--grhc-teal) 0%, #0f3540 100%);
    color: var(--grhc-white);
}

.grhc-final-inner {
    max-width: 640px;
    margin: 0 auto;
}

.grhc-final-eyebrow {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.6;
    margin: 0 0 12px;
}

.grhc-final h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.15;
}

.grhc-final p {
    margin: 0 0 28px;
    opacity: 0.85;
    font-size: 1.05rem;
    line-height: 1.65;
}

.grhc-final-trust {
    margin: 16px 0 0 !important;
    font-size: 0.82rem !important;
    opacity: 0.55 !important;
    font-weight: 600;
}

/* —— Responsive —— */
@media (max-width: 991px) {
    .grhc-hero-inner,
    .grhc-problem-grid,
    .grhc-why-grid,
    .grhc-testimonials {
        grid-template-columns: 1fr;
    }

    .grhc-hero {
        padding-top: var(--bloom-hero-padding-top-mobile, 40px);
    }

    .grhc-bundle-products {
        grid-template-columns: 1fr;
    }

    .grhc-bundle-divider {
        display: none;
    }

    .grhc-testi-card--featured {
        order: -1;
    }
}

@media (max-width: 600px) {
    .grhc-section {
        padding: 56px var(--bloom-side-padding);
    }

    .grhc-bundle-product {
        padding: 24px 20px;
    }

    .grhc-btn--lg {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .grhc-capsule {
        padding: 20px 18px;
    }

    .grhc-bundle-cta-box {
        width: 100%;
    }
}
