/* Custom touches on top of Tailwind. */

html { scroll-behavior: smooth; }

/* Sample card preview — hand-arranged on the page */
.card-preview {
    background: #fdfaf3;
    border: 1px solid #ede2c8;
    border-radius: 6px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 6px 18px rgba(63, 47, 32, 0.08), 0 1px 2px rgba(63, 47, 32, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-preview:hover {
    transform: translateY(-4px) rotate(0deg) !important;
    box-shadow: 0 12px 30px rgba(63, 47, 32, 0.12), 0 2px 4px rgba(63, 47, 32, 0.06);
}

/* Numbered step badges */
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: #fdfaf3;
    border: 1.5px solid #c87f5a;
    color: #9a523a;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.25rem auto;
}

/* Pricing cards */
.pricing-card {
    position: relative;
    background: #fdfaf3;
    border: 1px solid #ede2c8;
    border-radius: 12px;
    padding: 2.25rem 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(63, 47, 32, 0.08);
}
.pricing-card-featured {
    border: 2px solid #c87f5a;
    box-shadow: 0 10px 30px rgba(184, 105, 74, 0.15);
}

/* FAQ accordion using <details>/<summary> */
.faq-item {
    background: #fdfaf3;
    border: 1px solid #ede2c8;
    border-radius: 8px;
    overflow: hidden;
}
.faq-item summary {
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    font-weight: 500;
    color: #2d3b2b;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    color: #b8694a;
    transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
    content: "−";
}
.faq-item p {
    padding: 0 1.5rem 1.25rem 1.5rem;
    color: #3a3530;
    line-height: 1.6;
}
