/* =====================================================================
   /guarantee — zero-risk promise page  ·  "Ledger & Proof"
   Depends on editorial-theme.css (body.editorial). Prefix: .gr-
   ===================================================================== */

.gr-wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.gr-wrap-narrow { max-width: 760px; }
.gr-h2 { font-size: clamp(26px, 3.4vw, 34px); text-align: center; margin-bottom: 30px; }

/* ---------- hero ---------- */
.gr-hero { padding: 88px 0 56px; text-align: center; }
.gr-eyebrow {
    display: inline-block; font-family: var(--font-mono); font-size: 13px;
    letter-spacing: .08em; text-transform: uppercase; color: var(--amber);
    border: 1px solid var(--amber-tint-2); border-radius: 999px;
    padding: 7px 14px; background: var(--amber-tint);
}
.gr-hero h1 { font-size: clamp(38px, 5.6vw, 62px); margin: 22px auto 0; }
.gr-sub { font-size: 18px; color: var(--muted); max-width: 560px; margin: 16px auto 26px; }

.gr-cta-btn {
    display: inline-block; background: var(--amber-bright); color: #fff !important;
    font-weight: 700; font-size: 16px; text-decoration: none;
    border-radius: 12px; padding: 14px 26px;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.gr-cta-btn:hover { background: var(--amber); transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(180, 83, 9, .55); }

/* ---------- steps ---------- */
.gr-steps { padding: 26px 0; }
.gr-steps-grid {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.gr-step {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 26px 24px;
    box-shadow: var(--shadow-sm);
}
.gr-step-num {
    font-family: var(--font-mono); font-size: 13px; font-weight: 700;
    color: var(--amber); border: 1px solid var(--amber-tint-2);
    background: var(--amber-tint); border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; margin-bottom: 14px;
}
.gr-step h3 { font-size: 19px; margin-bottom: 8px; }
.gr-step p { color: var(--muted); font-size: 15px; }

/* ---------- promises ---------- */
.gr-promises { padding: 44px 0 18px; }
.gr-promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gr-promise {
    background: var(--surface); border: 1px solid var(--line);
    border-left: 3px solid var(--amber); border-radius: var(--radius);
    padding: 22px 22px 20px; box-shadow: var(--shadow-sm);
}
.gr-promise h3 { font-size: 17.5px; margin-bottom: 8px; }
.gr-promise p { color: var(--muted); font-size: 14.5px; margin: 0; }
.gr-promise a { color: var(--amber-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.gr-pricing-link { text-align: center; color: var(--muted); font-size: 15px; margin-top: 26px; }
.gr-pricing-link a { color: var(--amber-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- FAQ ---------- */
.gr-faq-section { padding: 44px 0 20px; }
.gr-faq { display: grid; gap: 10px; }
.gr-faq-item {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: 12px; overflow: hidden;
}
.gr-faq-q {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    gap: 14px; text-align: left; background: none; border: none; cursor: pointer;
    font-family: var(--font-body); font-size: 16px; font-weight: 600;
    color: var(--ink); padding: 16px 18px;
}
.gr-faq-icon {
    font-family: var(--font-mono); font-size: 18px; color: var(--amber);
    flex: 0 0 auto; transition: transform .2s ease;
}
.gr-faq-item.open .gr-faq-icon { transform: rotate(45deg); }
.gr-faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.gr-faq-item.open .gr-faq-a { max-height: 220px; }
.gr-faq-a p { color: var(--muted); font-size: 15px; padding: 0 18px 16px; margin: 0; }

/* ---------- CTA ---------- */
.gr-cta { padding: 50px 0 90px; }
.gr-cta-card {
    background: var(--ink); border-radius: var(--radius);
    padding: 48px 36px; text-align: center; box-shadow: var(--shadow-md);
}
.gr-cta-card h2 { color: var(--paper); font-size: clamp(26px, 3.4vw, 34px); margin-bottom: 10px; }
.gr-cta-card p { color: rgba(251, 248, 242, .75); margin: 0 0 26px; }
.gr-cta-actions { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.gr-cta-link { color: var(--paper) !important; font-weight: 600; font-size: 15px; text-decoration: underline; text-underline-offset: 4px; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
    .gr-steps-grid, .gr-promise-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
    .gr-hero { padding: 56px 0 36px; }
    .gr-steps-grid, .gr-promise-grid { grid-template-columns: 1fr; }
    .gr-cta-card { padding: 34px 22px; }
}
