/* Anchor targets (sticky header offset) */
.eb-contact-main,
.eb-contact-booking-section,
.eb-contact-map-section {
    scroll-margin-top: 5.5rem;
}

/* Contact page layout */
.eb-contact-page .eb-page-hero {
    padding-bottom: 2rem;
}

.eb-contact-page .eb-page-hero-intro {
    max-width: none;
}

.eb-contact-jump {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

.eb-contact-jump a {
    color: var(--eb-brand-dark);
    font-weight: 600;
    text-decoration: none;
}

.eb-contact-jump a:hover {
    text-decoration: underline;
}

.eb-contact-jump-sep {
    color: var(--eb-muted);
    user-select: none;
}

.eb-contact-main {
    padding-bottom: 2.5rem;
}

.eb-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
}

.eb-contact-section-title,
.eb-contact-block-title {
    font-size: 1.5rem;
    margin: 0 0 2rem;
    color: var(--eb-text);
}

.eb-contact-form-col {
    min-width: 0;
}

.eb-form-field {
    margin-bottom: 1.5rem;
}

.eb-form-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.65rem;
    color: var(--eb-text);
}

.eb-form-field input,
.eb-form-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius);
    font-size: 1rem;
    font-family: inherit;
    color: var(--eb-text);
    background: var(--eb-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.eb-form-field input:focus,
.eb-form-field textarea:focus {
    outline: none;
    border-color: var(--eb-brand);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.eb-form-field textarea {
    resize: vertical;
    min-height: 140px;
}

.eb-form-note {
    margin: 1rem 0 0;
    font-size: 0.875rem;
    color: var(--eb-muted);
}

.eb-form-note--light {
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.75rem;
}

.eb-contact-notice {
    padding: 1rem 1.25rem;
    border-radius: var(--eb-radius);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.eb-contact-notice--success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.eb-contact-notice--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

/* Sidebar */
.eb-contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.eb-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.eb-contact-list-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.eb-contact-list-icon,
.eb-contact-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--eb-surface-2);
    border-radius: var(--eb-radius);
    color: var(--eb-brand-dark);
}

.eb-contact-list-item strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--eb-text);
}

.eb-contact-list-item a {
    color: var(--eb-muted);
    text-decoration: none;
}

.eb-contact-list-item a:hover {
    color: var(--eb-brand-dark);
    text-decoration: underline;
}

.eb-contact-muted {
    display: block;
    color: var(--eb-muted);
    line-height: 1.5;
}

.eb-contact-card {
    padding: 1.5rem;
    border-radius: var(--eb-radius);
    border: 1px solid var(--eb-border);
    background: var(--eb-white);
}

.eb-contact-card--hours {
    background: var(--eb-surface);
    border-color: var(--eb-border);
}

.eb-contact-card--area {
    box-shadow: var(--eb-shadow);
}

.eb-contact-card--cta {
    background: linear-gradient(135deg, var(--eb-surface) 0%, var(--eb-surface-2) 100%);
    border-color: var(--eb-brand);
    border-width: 1px;
}

.eb-contact-card--cta p {
    margin: 0 0 1.25rem;
    color: var(--eb-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.eb-contact-card-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.eb-contact-card-head h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--eb-text);
}

.eb-contact-card--hours p,
.eb-contact-card--area p {
    margin: 0;
    color: var(--eb-muted);
    line-height: 1.6;
}

.eb-hours-list {
    margin: 0;
}

.eb-hours-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0;
    color: var(--eb-muted);
    font-size: 0.95rem;
}

.eb-hours-row dt {
    margin: 0;
    font-weight: 400;
}

.eb-hours-row dd {
    margin: 0;
    text-align: right;
}

/* Booking — full-width section */
.eb-contact-booking-section {
    padding-top: 0;
    padding-bottom: 4rem;
    background: var(--eb-surface);
    border-top: 1px solid var(--eb-border);
    border-bottom: 1px solid var(--eb-border);
}

.eb-contact-booking-card {
    max-width: 960px;
    margin: 0 auto;
    background: var(--eb-accent);
    color: var(--eb-white);
    border-radius: var(--eb-radius);
    padding: 2.25rem 2.5rem 2.5rem;
    box-shadow: var(--eb-shadow);
}

.eb-contact-booking-header {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.eb-contact-booking-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--eb-radius);
    color: var(--eb-white);
}

.eb-contact-booking-title {
    margin: 0 0 0.5rem;
    font-size: 1.75rem;
    color: var(--eb-white);
}

.eb-contact-booking-lead {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
    max-width: 40rem;
}

.eb-booking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
    padding: 2rem;
    background: var(--eb-white);
    border-radius: var(--eb-radius);
    color: var(--eb-text);
}

.eb-booking-col-title {
    margin: 0 0 1.25rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--eb-text);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--eb-border);
}

.eb-booking-field {
    margin-bottom: 1.15rem;
}

.eb-booking-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--eb-text);
}

.eb-booking-form input,
.eb-booking-form select,
.eb-booking-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius);
    font-size: 1rem;
    font-family: inherit;
    color: var(--eb-text);
    background: var(--eb-white);
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.eb-booking-form input:focus,
.eb-booking-form select:focus,
.eb-booking-form textarea:focus {
    outline: none;
    border-color: var(--eb-brand);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.eb-booking-form textarea {
    resize: vertical;
    min-height: 100px;
}

.eb-booking-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.eb-booking-layout .eb-form-note {
    margin-top: 0.75rem;
    text-align: left;
}

.eb-contact-booking-card .eb-contact-notice {
    margin-bottom: 1.25rem;
}

.eb-contact-booking-card .eb-contact-notice--success {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--eb-white);
}

.eb-booking-alt {
    margin: 1.25rem 0 0;
    text-align: center;
}

.eb-booking-alt-link {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    text-decoration: underline;
}

.eb-booking-alt-link:hover {
    color: var(--eb-white);
}

/* Map */
.eb-contact-map-section {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.eb-contact-map-title {
    text-align: center;
    font-size: 1.75rem;
    margin: 0 0 2rem;
    color: var(--eb-text);
}

.eb-map-embed {
    border-radius: var(--eb-radius);
    overflow: hidden;
    border: 1px solid var(--eb-border);
    min-height: 450px;
}

.eb-map-embed iframe {
    display: block;
    width: 100%;
    min-height: 450px;
    border: 0;
}

.eb-map-placeholder {
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: var(--eb-surface);
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius);
    color: var(--eb-muted);
}

.eb-map-placeholder-icon {
    color: var(--eb-brand-dark);
    margin-bottom: 1rem;
}

.eb-map-placeholder-address {
    font-size: 1.15rem;
    color: var(--eb-text);
    margin: 0 0 0.5rem;
}

@media (max-width: 900px) {
    .eb-contact-grid {
        grid-template-columns: 1fr;
    }

    .eb-contact-form-col {
        order: 1;
    }

    .eb-contact-sidebar {
        order: 2;
    }

    .eb-booking-layout {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .eb-contact-booking-card {
        padding: 1.5rem;
    }

    .eb-contact-booking-header {
        flex-direction: column;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .eb-booking-row {
        grid-template-columns: 1fr;
    }
}
