/* ==========================================================================
   HELP SAVE HEMP — Advocacy Page
   ========================================================================== */

.hp-hemp-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 48px 80px;
}

/* ── Urgency Banner ── */
.hp-hemp__urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(192, 57, 43, 0.06);
    border: 1px solid rgba(192, 57, 43, 0.15);
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-size: var(--text-sub);
    font-weight: 600;
    color: #C0392B;
    margin-bottom: 48px;
}

.hp-hemp__urgency-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: #C0392B;
    animation: hpUrgencyPulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes hpUrgencyPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

/* ── Section Titles ── */
.hp-hemp__section-title {
    font-family: var(--font-heading);
    font-size: var(--text-h2);
    font-weight: 700;
    color: var(--green-dark);
    text-align: center;
    margin: 0 0 8px;
}

.hp-hemp__section-sub {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-muted);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* ── Why This Matters ── */
.hp-hemp__why {
    margin-bottom: 56px;
}

.hp-hemp__facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hp-hemp__fact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-default);
    background: var(--bg-card);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hp-hemp__fact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-sunset);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hp-hemp__fact:hover {
    border-color: var(--sunset-light);
    box-shadow: 0 4px 20px rgba(236, 169, 110, 0.12);
    transform: translateY(-2px);
}

.hp-hemp__fact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(244, 192, 138, 0.15), rgba(236, 169, 110, 0.08));
    margin-bottom: 14px;
}

.hp-hemp__fact-icon svg,
.hp-hemp__fact-icon .hp-ico {
    width: 22px;
    height: 22px;
}

.hp-hemp__fact-title {
    font-family: var(--font-heading);
    font-size: var(--text-sub);
    font-weight: 700;
    color: var(--green-dark);
    margin: 0 0 8px;
}

.hp-hemp__fact-text {
    font-family: var(--font-body);
    font-size: var(--text-sub);
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

/* ── Take Action ── */
.hp-hemp__action {
    text-align: center;
    margin-bottom: 56px;
    padding: 48px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
}

.hp-hemp__cta {
    font-size: 16px !important;
    padding: 16px 48px !important;
}

.hp-hemp__cta-note {
    font-family: var(--font-heading);
    font-size: var(--text-small);
    color: var(--text-muted);
    margin: 14px 0 0;
}

/* ── Stay Updated Signup ── */
.hp-hemp__signup {
    margin-bottom: 56px;
}

.hp-hemp__signup-card {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
}

.hp-hemp__signup-title {
    font-family: var(--font-heading);
    font-size: var(--text-h2);
    font-weight: 700;
    color: var(--green-dark);
    margin: 0 0 8px;
    text-align: center;
}

.hp-hemp__signup-sub {
    font-family: var(--font-body);
    font-size: var(--text-sub);
    color: var(--text-muted);
    text-align: center;
    margin: 0 0 28px;
}

/* ── Form ── */
.hp-hemp__form-row {
    margin-bottom: 18px;
}

.hp-hemp__form-row--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.hp-hemp__form-field label {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-small);
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.hp-hemp__req {
    color: var(--sunset-deep);
}

.hp-hemp__opt {
    color: var(--text-muted);
    font-weight: 400;
    font-size: var(--text-label);
}

.hp-hemp__form-field input {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: var(--text-sub);
    line-height: 1.5;
    color: var(--text-primary);
    background: var(--bg-input) !important;
    border: 1px solid var(--border-input);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    -webkit-appearance: none;
}

.hp-hemp__form-field input:focus {
    border-color: var(--sunset-mid);
    box-shadow: 0 0 0 3px rgba(236, 169, 110, 0.12);
}

.hp-hemp__form-field input::placeholder {
    color: var(--text-muted);
}

.hp-hemp__form-field input.hp-field-error {
    border-color: #C0392B;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}

.hp-hemp__turnstile {
    display: flex;
    justify-content: center;
    margin-top: var(--space-md);
}

.hp-hemp__form-actions {
    text-align: center;
    margin-top: 24px;
}

.hp-hemp__submit {
    min-width: 200px;
    position: relative;
}

.hp-hemp__submit-loader {
    display: inline-flex;
    gap: 4px;
    align-items: center;
}

.hp-hemp__submit-loader span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: hpDotBounce 1.2s ease-in-out infinite;
}

.hp-hemp__submit-loader span:nth-child(2) { animation-delay: 0.15s; }
.hp-hemp__submit-loader span:nth-child(3) { animation-delay: 0.3s; }

@keyframes hpDotBounce {
    0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
    40% { opacity: 1; transform: scale(1); }
}

.hp-hemp__form-status {
    text-align: center;
    margin-top: 18px;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: var(--text-sub);
    font-weight: 500;
}

.hp-hemp__form-status--success {
    background: rgba(88, 173, 114, 0.1);
    color: var(--color-success);
    border: 1px solid rgba(88, 173, 114, 0.2);
}

.hp-hemp__form-status--error {
    background: rgba(192, 57, 43, 0.06);
    color: #C0392B;
    border: 1px solid rgba(192, 57, 43, 0.15);
}

/* ── Share ── */
.hp-hemp__share {
    text-align: center;
    margin-bottom: 48px;
}

.hp-hemp__share-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hp-hemp__share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: var(--text-sub);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1.5px solid var(--border-default);
    background: var(--bg-card);
    color: var(--green-dark);
}

.hp-hemp__share-btn:hover {
    border-color: var(--sunset-mid);
    box-shadow: 0 4px 16px rgba(236, 169, 110, 0.12);
    transform: translateY(-1px);
}

.hp-hemp__share-btn .hp-ico {
    width: 16px;
    height: 16px;
}

.hp-hemp__share-btn--x {
    background: #000;
    color: #fff;
    border-color: #000;
}

.hp-hemp__share-btn--x:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

.hp-hemp__share-btn--copy.is-copied span {
    color: var(--color-success);
}

/* ── Quote ── */
.hp-hemp__quote {
    text-align: center;
    padding: var(--space-3xl) 40px;
    position: relative;
}

.hp-hemp__quote::before {
    content: '\201C';
    font-family: var(--font-body);
    font-size: 120px;
    color: var(--sunset-light);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    pointer-events: none;
}

.hp-hemp__quote-text {
    font-family: var(--font-body);
    font-size: clamp(20px, 3.5vw, 26px);
    font-weight: 400;
    font-style: italic;
    color: var(--green-dark);
    line-height: 1.5;
    max-width: 640px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.hp-hemp__quote-author {
    display: block;
    font-style: normal;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── Astra overrides ── */
.page-template-page-help-save-hemp .entry-content,
.page-template-page-help-save-hemp .ast-container {
    max-width: 100% !important;
    padding: 0 !important;
}

.page-template-page-help-save-hemp #primary {
    padding: 0 !important;
    margin: 0 !important;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .hp-hemp-page {
        padding: 48px 32px 60px;
    }

    .hp-hemp__facts {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hp-hemp__fact {
        flex-direction: row;
        text-align: left;
        padding: 20px;
        gap: 16px;
    }

    .hp-hemp__fact-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .hp-hemp__fact-title {
        margin-bottom: 4px;
    }

    .hp-hemp__signup-card {
        padding: 28px 24px;
    }

    .hp-hemp__form-row--2col {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hp-hemp__action {
        padding: 36px 24px;
    }
}

@media (max-width: 480px) {
    .hp-hemp-page {
        padding: 36px 20px 48px;
    }

    .hp-hemp__signup-card {
        padding: 24px 18px;
    }

    .hp-hemp__cta {
        width: 100% !important;
        justify-content: center;
    }

    .hp-hemp__share-btns {
        flex-direction: column;
    }

    .hp-hemp__share-btn {
        width: 100%;
        justify-content: center;
    }
}
