.inquiry-hero {
    height: 100vh;
    background: url('../hero-inquiry.png') center center / cover no-repeat;
    position: relative;
    z-index: 4;
}

/* ── Opener ──────────────────────────────────────────────────────────────── */

.inq-opener {
    background: url('../blue-background.png') center center / cover no-repeat;
    padding: 80px 6vw 90px;
    text-align: center;
    position: relative;
    z-index: 3;
    overflow: visible;
}

.inq-opener .display-heading {
    line-height: 1.2;
    margin: 0;
}

.inq-opener .body-text {
    max-width: 520px;
    margin: 20px auto 0;
}

/* Tape highlighter */
.tape-highlight {
    position: relative;
    isolation: isolate;
    display: inline;
}

.tape-highlight::before {
    content: '';
    position: absolute;
    inset: 6px -6px;
    background: url('../yellow-tape.png') center center / 100% 100% no-repeat;
    z-index: -1;
    opacity: 0.90;
    transform: rotate(-2deg);
}

/* ── Packages ────────────────────────────────────────────────────────────── */

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 48px;
    max-width: 700px;
    margin: 52px auto 0;
    text-align: center;
}

.pkg-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.pkg-name {
    font-family: 'Girthquake', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: #5F361E;
    margin: 0;
    line-height: 1.2;
}

.pkg-price {
    font-family: 'Butterclub', sans-serif;
    font-size: 18px;
    color: #5F361E;
    margin: 4px 0 0;
    font-weight: normal;
}

.pkg-tag {
    font-family: 'Butterclub', sans-serif;
    font-size: 12px;
    color: #5F361E;
    opacity: 0.5;
    text-transform: lowercase;
    letter-spacing: 0.06em;
    margin: 0;
}

/* ── Form ────────────────────────────────────────────────────────────────── */

.inq-form-section {
    background: url('../yellow-stripes.png') top center / 100% auto repeat-y;
    background-color: #EBEBE4;
    padding: 70px 6vw 90px;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.inq-form {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.inq-form-heading {
    text-align: center;
    margin-bottom: 8px !important;
}

.inq-row {
    display: flex;
    gap: 40px;
}

.inq-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.inq-group label {
    font-family: 'Butterclub', sans-serif;
    font-size: 12px;
    color: #5F361E;
    opacity: 0.5;
    text-transform: lowercase;
    letter-spacing: 0.06em;
}

.inq-group input,
.inq-group select,
.inq-group textarea {
    font-family: 'Butterclub', sans-serif;
    font-size: 18px;
    color: #5F361E;
    background-color: transparent;
    background-image: url('../site-divider.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% 10px;
    border: none;
    padding: 6px 0 14px;
    outline: none;
    width: 100%;
}

.inq-group input::placeholder,
.inq-group textarea::placeholder {
    color: #5F361E;
    opacity: 0.3;
}

.inq-group select {
    appearance: none;
    cursor: pointer;
    opacity: 0.8;
}


.inq-group textarea {
    resize: none;
    line-height: 1.8;
}

.inq-group input[type="date"] {
    opacity: 0.7;
}

.inq-submit-wrap {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */

.inq-faq-section {
    background: url('../blue-background.png') center center / cover no-repeat;
    padding: 70px 6vw 100px;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.inq-faq-heading {
    text-align: center;
    margin-bottom: 52px !important;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1.5px solid rgba(95, 54, 30, 0.15);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Butterclub', sans-serif;
    font-size: 20px;
    color: #5F361E;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: opacity 0.2s;
    gap: 16px;
}

.faq-q::after {
    content: '+';
    font-size: 26px;
    opacity: 0.4;
    transition: transform 0.25s ease;
    flex-shrink: 0;
    line-height: 1;
}

.faq-item.open .faq-q::after {
    transform: rotate(45deg);
}

.faq-q:hover { opacity: 0.7; }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-a p {
    font-family: 'Butterclub', sans-serif;
    font-size: 16px;
    color: #5F361E;
    line-height: 1.9;
    opacity: 0.75;
    margin: 0;
    padding-bottom: 20px;
}

.faq-item.open .faq-a {
    max-height: 200px;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .inq-opener,
    .inq-form-section,
    .inq-faq-section {
        padding: 56px 28px 72px;
    }

    .inq-row {
        flex-direction: column;
        gap: 36px;
    }

    .tape-highlight {
        display: inline-block;
    }

    .pkg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 32px;
    }
}

@media (max-width: 480px) {
    .inq-opener,
    .inq-form-section,
    .inq-faq-section {
        padding: 44px 20px 60px;
    }

    .tape-highlight {
        display: inline-block;
    }

    .faq-q {
        font-size: 16px;
    }
}
