/* ==========================================================================
   Plymouth Dance Centre — hen-party.css
   Hen hub page: navy hero, 38-theme editorial grid, pricing signals,
   how-it-works rows, city-centre venue strip, FAQ accordion, enquiry form.
   Harbour Pulse system — tokens from base.css.
   ========================================================================== */

/* --- Hero --- */
.hub-hero {
    min-height: 560px;
    position: relative;
    background: var(--navy-deep);
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
}

.hub-hero__photo {
    position: absolute;
    inset: 0;
    z-index: -3;
    background: url('../images/hen-party-dance-class-plymouth.webp') center/cover;
}

.hub-hero__shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(6, 24, 36, 0.95), rgba(6, 24, 36, 0.78) 45%, rgba(6, 24, 36, 0.2) 80%),
        linear-gradient(0deg, rgba(6, 24, 36, 0.5), transparent 45%);
}

.hub-hero__copy {
    width: min(760px, 100%);
    margin-left: clamp(24px, 10vw, 160px);
    padding: 80px 20px 110px 0;
    color: #fff;
}

.hub-hero__copy h1 {
    font-size: clamp(42px, 5.6vw, 78px);
    line-height: 0.92;
    margin-bottom: 27px;
}

.hub-hero__intro {
    max-width: 520px;
    font-size: 16px;
    line-height: 1.78;
    color: #eef4f3;
    background: rgba(6, 24, 36, 0.58);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-left: 2px solid var(--coral);
    padding: 18px 22px;
}

.hub-hero__actions {
    margin-top: 33px;
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.hub-hero__tide {
    position: absolute;
    z-index: -1;
    background: var(--paper);
    height: 73px;
    width: 115%;
    bottom: -35px;
    left: -8%;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* --- Serif statement strip (shared shape with homepage) --- */
.intro-strip {
    padding: 78px clamp(24px, 10vw, 158px) 68px;
    display: flex;
    justify-content: space-between;
    gap: 35px;
    align-items: baseline;
    border-bottom: 1px solid var(--line);
}

.intro-strip p {
    font-family: var(--serif);
    font-size: clamp(27px, 3vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0;
    color: var(--ink);
    max-width: 700px;
}

.intro-strip span {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 0.13em;
    line-height: 1.6;
    color: #6a7c82;
    max-width: 185px;
}

/* --- Pricing board --- */
.pricing-strip {
    padding: 64px clamp(24px, 7vw, 112px);
    background: var(--sand);
}

.pricing-strip__grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 15px;
}

.price-card {
    background: var(--paper);
    padding: 27px;
    border-top: 3px solid var(--coral);
}

.price-card__label {
    color: #4a5c63;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}

.price-card__amount {
    font-family: var(--serif);
    font-size: 52px;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--ink);
}

.price-card__amount small {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--coral-ink);
    display: block;
    margin-top: 9px;
}

.price-card p {
    color: #52626a;
    font-size: 13px;
    line-height: 1.6;
    margin: 12px 0 0;
}

.price-card--note {
    background: var(--navy);
    color: #fff;
    border-top-color: var(--coral);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-card--note p {
    color: #cedbdd;
    font-size: 14px;
    margin: 0;
}

.price-card--note p b {
    color: #fff;
}

/* --- Theme grid --- */
.themes-section {
    padding: 100px clamp(24px, 7vw, 112px);
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: var(--container);
    margin: 0 auto;
}

.theme-tile {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--navy-deep);
}

.theme-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.theme-tile:hover img {
    transform: scale(1.05);
}

.theme-tile__name {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 9px 14px;
    background: var(--navy);
    border-left: 3px solid var(--coral);
    color: #fff;
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1;
    letter-spacing: -0.02em;
}

/* Every 7th tile rounds a corner — echoes the tide-crop motif */
.theme-tile:nth-child(7n + 1) {
    border-radius: 60px 0 0 0;
}

/* --- How it works --- */
.steps-section {
    background: var(--navy-deep);
    color: #fff;
    padding: 100px clamp(24px, 7vw, 112px);
}

.steps-section .section-heading h2 {
    color: #fff;
}

.steps-section .section-intro {
    color: #c2d2d5;
}

.steps-list {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    max-width: 760px;
    margin: 0 auto;
}

.step-row {
    padding: 21px 0;
    display: flex;
    align-items: baseline;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.step-row__number {
    color: var(--coral);
    width: 27px;
    font-size: 10px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-row__name {
    font-family: var(--serif);
    font-size: 26px;
    line-height: 1.05;
    flex: 1;
}

.step-row__name small {
    display: block;
    font-family: var(--sans);
    color: #b3c7cb;
    font-size: 12px;
    line-height: 1.6;
    margin-top: 8px;
    max-width: 560px;
}

/* --- Venue strip --- */
.venue-section {
    padding: 100px clamp(24px, 8vw, 128px);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(35px, 6vw, 90px);
    background: var(--mist);
    align-items: center;
}

.venue-section h2 {
    font-size: clamp(42px, 5vw, 68px);
    margin-bottom: 27px;
}

.venue-section p:not(.eyebrow) {
    max-width: 470px;
    line-height: 1.8;
    color: #516269;
}

.venue-section .signal-bar {
    margin-top: 31px;
    max-width: 470px;
}

.venue-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.venue-card {
    background: var(--paper);
    padding: 24px 27px;
    border-left: 3px solid var(--coral);
}

.venue-card h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 24px;
    letter-spacing: -0.03em;
    margin: 0 0 9px;
    color: var(--ink);
}

.venue-card p {
    color: #4a5c63;
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
}

/* --- FAQ (Harbour Pulse accordion) --- */
.faq-section {
    background: var(--sand);
    padding: 100px clamp(24px, 7vw, 112px);
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    border-top: 1px solid rgba(7, 28, 44, 0.26);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding: 22px 0;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item__number {
    color: var(--coral-ink);
    font-size: 10px;
    font-weight: 800;
    width: 27px;
    flex-shrink: 0;
}

.faq-item__q,
.faq__q {
    font-family: var(--serif);
    font-size: 24px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--ink);
    flex: 1;
    transition: color var(--transition);
}

.faq-item summary:hover .faq-item__q,
.faq-item summary:hover .faq__q {
    color: var(--coral);
}

.faq-item summary i {
    color: var(--coral);
    font-size: 13px;
    transition: transform var(--transition);
    align-self: center;
}

.faq-item[open] summary i {
    transform: rotate(45deg);
}

.faq-item > p {
    color: #52626a;
    font-size: 14px;
    line-height: 1.75;
    margin: 0 0 24px 45px;
    max-width: 640px;
}

/* --- Enquiry form --- */
.hen-enquiry {
    padding: 105px clamp(24px, 8vw, 128px) 115px;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 8vw;
    background: var(--paper);
    position: relative;
}

.hen-enquiry::before {
    content: "";
    position: absolute;
    left: 0;
    top: 70px;
    width: clamp(7px, 1.2vw, 16px);
    height: 205px;
    background: var(--coral);
}

.hen-enquiry__title h2 {
    font-size: clamp(42px, 5vw, 68px);
}

.hen-enquiry__title > p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.75;
    max-width: 340px;
    margin-top: 24px;
}

.hen-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 22px;
    row-gap: 23px;
    padding-top: 10px;
    border-top: 1px solid var(--ink);
}

.hen-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #65747a;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-weight: 800;
}

.hen-form input,
.hen-form select,
.hen-form textarea {
    appearance: none;
    border: 0;
    border-bottom: 1px solid #aebabc;
    background: transparent;
    padding: 9px 0;
    border-radius: 0;
    color: var(--ink);
    outline: none;
    font-size: 14px;
    font-family: var(--sans);
    letter-spacing: 0;
    text-transform: none;
    font-weight: 500;
    resize: vertical;
}

.hen-form input:focus,
.hen-form select:focus,
.hen-form textarea:focus {
    border-bottom: 2px solid var(--coral);
}

.hen-form ::placeholder {
    color: #97a6aa;
}

.hen-form .full-field {
    grid-column: span 2;
}

.hen-form .form-button {
    justify-self: start;
    margin-top: 5px;
}

.hen-form .form-note {
    grid-column: span 2;
    color: #7e8c90;
    font-size: 10px;
    line-height: 1.5;
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .themes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 860px) {
    .pricing-strip__grid {
        grid-template-columns: 1fr;
    }

    .venue-section,
    .hen-enquiry {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .hub-hero {
        min-height: 520px;
        align-items: flex-end;
    }

    .hub-hero__copy {
        margin: 0;
        padding: 65px 23px 85px;
    }

    .hub-hero__copy h1 {
        font-size: 40px;
    }

    .themes-section,
    .steps-section,
    .faq-section {
        padding: 72px 20px;
    }

    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .theme-tile__name {
        font-size: 14px;
        padding: 7px 10px;
    }

    .theme-tile:nth-child(7n + 1) {
        border-radius: 35px 0 0 0;
    }

    .venue-section {
        display: block;
        padding: 72px 24px;
    }

    .venue-cards {
        margin-top: 35px;
    }

    .hen-enquiry {
        padding: 72px 24px;
    }

    .hen-form {
        grid-template-columns: 1fr;
    }

    .hen-form .full-field,
    .hen-form .form-note {
        grid-column: span 1;
    }

    .faq-item__q,
    .faq__q {
        font-size: 20px;
    }

    .faq-item > p {
        margin-left: 0;
    }

    .step-row__name {
        font-size: 22px;
    }
}
