.tw-contact-hero {
    min-height: 390px;
    background: linear-gradient(90deg, rgba(17, 18, 15, 0.92), rgba(17, 18, 15, 0.45)), url('../images/rock-band-class.jpg') center 42% / cover;
}

.tw-contact-hero::after {
    display: none;
}

.tw-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.7fr);
    gap: clamp(48px, 7vw, 96px);
    align-items: start;
}

.tw-contact-heading {
    max-width: 670px;
    margin-bottom: 34px;
}

.tw-contact-heading h2,
.tw-contact-map h2 {
    margin: 0 0 12px;
    font-size: clamp(2.25rem, 4vw, 3.6rem);
    line-height: 1.05;
}

.tw-contact-heading > p:last-child {
    margin: 0;
    color: var(--tw-muted);
}

.tw-contact-form {
    position: relative;
}

.tw-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.tw-contact-form .alert {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 24px;
    border: 1px solid currentColor;
}

.tw-contact-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 24px;
}

.tw-contact-fields > div {
    min-width: 0;
}

.tw-contact-message {
    grid-column: 1 / -1;
}

.tw-contact-form .form-control,
.tw-contact-form .form-select {
    width: 100%;
    margin-top: 7px;
    background: #fff;
    border-width: 0 0 1px;
}

.tw-contact-form textarea.form-control {
    min-height: 180px;
    border: 1px solid var(--tw-line);
    resize: vertical;
}

.tw-contact-form .form-control:focus,
.tw-contact-form .form-select:focus {
    background: #fff;
    box-shadow: 0 2px 0 var(--tw-oxblood);
}

.tw-contact-submit {
    display: flex;
    gap: 22px;
    align-items: center;
    margin-top: 28px;
}

.tw-contact-submit p {
    margin: 0;
    color: var(--tw-muted);
    font-size: 0.82rem;
}

.tw-contact-sidebar {
    position: sticky;
    top: 24px;
    padding-left: 28px;
    border-left: 1px solid var(--tw-line);
}

.tw-contact-sidebar > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin-bottom: 28px;
    object-fit: cover;
}

.tw-contact-sidebar h2 {
    margin: 0 0 4px;
    font-size: 2rem;
    line-height: 1.1;
}

.tw-contact-role {
    margin: 0 0 24px;
    color: var(--tw-oxblood);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.tw-contact-sidebar address {
    margin-bottom: 24px;
    color: var(--tw-muted);
    font-style: normal;
}

.tw-contact-link {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 13px 0;
    border-top: 1px solid var(--tw-line);
    font-size: 0.88rem;
    overflow-wrap: anywhere;
}

.tw-contact-link i {
    width: 18px;
    color: var(--tw-oxblood);
    text-align: center;
}

.tw-contact-hours {
    display: grid;
    gap: 3px;
    padding-top: 18px;
    border-top: 1px solid var(--tw-line);
    color: var(--tw-muted);
    font-size: 0.84rem;
}

.tw-contact-hours strong {
    color: var(--tw-ink);
}

.tw-contact-map {
    padding: 72px 0 82px;
    background: var(--tw-white);
}

.tw-contact-map__heading {
    display: flex;
    gap: 30px;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 28px;
}

.tw-contact-map__heading h2 {
    margin-bottom: 0;
}

.tw-contact-map__heading > a {
    color: var(--tw-oxblood);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.tw-contact-map iframe {
    width: 100%;
    height: clamp(340px, 44vw, 520px);
    display: block;
    border: 0;
    filter: saturate(0.75) contrast(1.05);
}

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

    .tw-contact-sidebar {
        position: static;
        padding: 28px 0 0;
        border-top: 1px solid var(--tw-line);
        border-left: 0;
    }

    .tw-contact-sidebar > img {
        max-width: 440px;
    }
}

@media (max-width: 560px) {
    .tw-contact-fields {
        grid-template-columns: 1fr;
    }

    .tw-contact-message {
        grid-column: auto;
    }

    .tw-contact-submit,
    .tw-contact-map__heading {
        align-items: stretch;
        flex-direction: column;
    }

    .tw-contact-submit .tw-button {
        width: 100%;
    }
}