/* ========================
   Page Hero
======================== */
.page-hero {
    position: relative;
    height: 440px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(30,12,3,0.48) 0%, rgba(30,12,3,0.76) 100%);
}

.page-hero-body {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 24px;
    max-width: 700px;
}

.page-hero-body .hero-eyebrow {
    display: inline-block;
    color: rgba(255,255,255,0.65);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.page-hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 0 0 18px;
}

.page-hero-title em {
    font-style: italic;
    font-weight: 400;
}

.page-hero-sub {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
    max-width: 460px;
    margin: 0 auto;
}

/* ========================
   FAQ Section
======================== */
.faq-section {
    padding: 80px 24px 88px;
    background: var(--cream-dark, #F2EBE0);
}

.faq-section-inner {
    max-width: 820px;
    margin: 0 auto;
}

.faq-section-head {
    text-align: center;
    margin-bottom: 52px;
}

.faq-section-desc {
    font-size: 15px;
    color: var(--text-light, #9E7558);
    line-height: 1.75;
    max-width: 520px;
    margin: 16px auto 0;
}

.faq-contact-link {
    color: var(--brown-primary, #3D1A0A);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.faq-contact-link:hover {
    color: var(--brown-mid, #6B3820);
}

/* ========================
   FAQ Accordion
======================== */
.wrapper {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq {
    border: 1px solid var(--border, rgba(61,26,10,0.10));
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq:hover {
    box-shadow: 0 2px 12px rgba(30,12,3,0.06);
}

.faq.active {
    border-color: var(--brown-pale, #DFC3A8);
    box-shadow: 0 4px 20px rgba(30,12,3,0.08);
}

.faq-header {
    background: #fff;
    color: var(--brown-dark, #1E0C03);
    cursor: pointer;
    font-size: 15px;
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    border: none;
    outline: none;
    font-family: inherit;
    text-align: left;
    gap: 16px;
    line-height: 1.5;
    transition: background 0.2s, color 0.2s;
}

.faq-header:hover {
    background: var(--cream, #FAF8F4);
}

.faq.active .faq-header {
    color: var(--brown-primary, #3D1A0A);
    background: var(--cream, #FAF8F4);
    font-weight: 600;
}

.faq-header i {
    font-size: 12px;
    color: var(--brown-light, #B07D5A);
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.2s;
}

.faq.active .faq-header i {
    transform: rotate(180deg);
    color: var(--brown-primary, #3D1A0A);
}

.faq-body {
    padding: 0 24px 22px;
    background: var(--cream, #FAF8F4);
    display: none;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-mid, #5A3420);
    border-top: 1px solid var(--border, rgba(61,26,10,0.08));
}

.faq-body p {
    padding-top: 18px;
}

.faq.active .faq-body {
    display: block;
}

/* ========================
   CTA Strip
======================== */
.faq-cta-strip {
    background: var(--brown-dark, #1E0C03);
    text-align: center;
    padding: 72px 24px 80px;
}

.faq-cta-eyebrow {
    color: var(--brown-pale, #DFC3A8) !important;
    opacity: 0.8;
    margin-bottom: 14px;
}

.faq-cta-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 300;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.2;
}

.faq-cta-title em {
    font-style: italic;
    font-weight: 400;
}

.faq-cta-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.58);
    margin: 0 0 32px;
    line-height: 1.7;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========================
   Responsive
======================== */
@media (max-width: 768px) {
    .page-hero { height: 340px; }
    .page-hero-title { font-size: 36px; }

    .faq-section { padding: 56px 16px 64px; }
    .faq-section-head { margin-bottom: 36px; }

    .faq-header { font-size: 14px; padding: 18px 18px; }
    .faq-body { padding: 0 18px 18px; }

    .faq-cta-strip { padding: 56px 20px 64px; }
    .faq-cta-actions { flex-direction: column; align-items: stretch; max-width: 280px; margin: 0 auto; }
}
