.contact-main {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-section-shell {
    width: min(1440px, calc(100% - 64px));
    margin: 0 auto;
}

.contact-hero {
    position: relative;
    width: min(1504px, calc(100% - 40px));
    min-height: 505px;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
    overflow: hidden;
    margin: 0 auto;
    background:
        radial-gradient(circle at 10% 18%, rgba(215, 255, 0, 0.105), transparent 27%),
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        #080b0f;
    background-size: auto, 52px 52px, 52px 52px, auto;
    border-right: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.contact-hero::before {
    position: absolute;
    z-index: 3;
    inset: 0 auto 0 0;
    width: 5px;
    content: "";
    background: var(--accent);
}

.contact-hero::after {
    position: absolute;
    right: 4%;
    bottom: -47%;
    width: 420px;
    height: 420px;
    content: "";
    border: 1px solid rgba(215, 255, 0, 0.16);
    border-radius: 50%;
    box-shadow:
        0 0 0 62px rgba(215, 255, 0, 0.018),
        0 0 0 124px rgba(215, 255, 0, 0.012);
    pointer-events: none;
}

.contact-hero-copy,
.contact-hero-intro {
    position: relative;
    z-index: 2;
}

.contact-hero-copy {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: clamp(48px, 6vw, 88px);
}

.contact-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #c8cbcc;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-eyebrow i {
    width: 7px;
    height: 7px;
    display: inline-block;
    flex: 0 0 auto;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(215, 255, 0, 0.12);
}

.contact-hero h1 {
    max-width: 900px;
    margin-top: 28px;
    font-size: clamp(64px, 6.3vw, 98px);
    font-weight: 760;
    letter-spacing: -0.07em;
    line-height: 0.86;
}

.contact-hero h1 em {
    color: var(--accent);
    font-style: normal;
}

.contact-hero-intro {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: clamp(48px, 5vw, 78px);
    background: linear-gradient(145deg, rgba(215, 255, 0, 0.035), rgba(6, 8, 11, 0.76));
    border-left: 1px solid var(--border);
}

.contact-hero-intro > span {
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-hero-intro p {
    max-width: 560px;
    margin-top: 25px;
    color: #afb4b7;
    font-size: 16px;
    line-height: 1.7;
}

.contact-hero-intro a {
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 32px;
    padding-bottom: 10px;
    color: #e7e9e9;
    border-bottom: 1px solid #555c60;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-hero-intro a span {
    color: var(--accent);
}

.contact-hero-intro a:hover,
.contact-hero-intro a:focus-visible {
    color: var(--accent);
    border-color: var(--accent);
    outline: none;
}

.contact-channels {
    padding-top: 118px;
    padding-bottom: 126px;
}

.contact-section-heading {
    display: grid;
    grid-template-columns: 0.68fr 1.15fr 0.77fr;
    align-items: end;
    gap: 48px;
    margin-bottom: 50px;
}

.contact-section-heading > div {
    align-self: start;
}

.contact-section-heading > div > span,
.contact-message-guide-intro > p:first-child {
    display: block;
    margin-bottom: 15px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-section-heading > div > p {
    color: #7f878b;
    font-size: 10px;
    text-transform: uppercase;
}

.contact-section-heading h2 {
    font-size: clamp(48px, 5vw, 76px);
    font-weight: 560;
    letter-spacing: -0.06em;
    line-height: 0.92;
}

.contact-section-heading > p {
    max-width: 480px;
    margin-bottom: 5px;
    color: #8d9498;
    font-size: 13px;
    line-height: 1.65;
}

.contact-channel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.contact-channel-card {
    min-width: 0;
    min-height: 410px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    overflow: hidden;
    padding: 28px;
    color: var(--white);
    background:
        radial-gradient(circle at 100% 0, rgba(215, 255, 0, 0.05), transparent 35%),
        var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.contact-channel-card:hover,
.contact-channel-card:focus-visible {
    border-color: rgba(215, 255, 0, 0.65);
    outline: none;
    transform: translateY(-5px);
}

.contact-channel-card.is-featured {
    color: #080a0c;
    background: var(--accent);
    border-color: var(--accent);
}

.contact-channel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #7f878b;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.contact-channel-top span:first-child {
    color: var(--accent);
}

.contact-channel-card.is-featured .contact-channel-top,
.contact-channel-card.is-featured .contact-channel-top span:first-child {
    color: rgba(8, 10, 12, 0.62);
}

.contact-channel-copy {
    display: block;
    margin-top: 60px;
}

.contact-channel-copy > strong {
    display: block;
    font-size: clamp(36px, 3.4vw, 52px);
    font-weight: 560;
    letter-spacing: -0.055em;
    line-height: 1;
}

.contact-channel-copy > b {
    display: block;
    margin-top: 13px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
}

.contact-channel-card.is-featured .contact-channel-copy > b {
    color: #080a0c;
}

.contact-channel-copy > span {
    max-width: 360px;
    display: block;
    margin-top: 24px;
    color: #91999d;
    font-size: 13px;
    line-height: 1.65;
}

.contact-channel-card.is-featured .contact-channel-copy > span {
    color: rgba(8, 10, 12, 0.72);
}

.contact-channel-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
    padding-top: 24px;
    color: #d6d9da;
    border-top: 1px solid #343a3e;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-channel-action span:last-child {
    color: var(--accent);
    font-size: 16px;
    transition: transform 0.2s ease;
}

.contact-channel-card:hover .contact-channel-action span:last-child,
.contact-channel-card:focus-visible .contact-channel-action span:last-child {
    transform: translate(3px, -3px);
}

.contact-channel-card.is-featured .contact-channel-action {
    color: #080a0c;
    border-color: rgba(8, 10, 12, 0.28);
}

.contact-channel-card.is-featured .contact-channel-action span:last-child {
    color: #080a0c;
}

.contact-message-guide {
    display: grid;
    grid-template-columns: minmax(330px, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(70px, 10vw, 160px);
    padding-top: 100px;
    padding-bottom: 112px;
    border-top: 1px solid var(--border);
}

.contact-message-guide-intro {
    position: sticky;
    top: 36px;
    align-self: start;
}

.contact-message-guide-intro h2 {
    font-size: clamp(48px, 4.8vw, 72px);
    font-weight: 560;
    letter-spacing: -0.06em;
    line-height: 0.92;
}

.contact-message-guide-intro h2 em {
    color: var(--accent);
    font-style: normal;
}

.contact-message-guide-intro > p:last-child {
    max-width: 500px;
    margin-top: 28px;
    color: #8e969a;
    font-size: 13px;
    line-height: 1.65;
}

.contact-message-guide-list {
    border-top: 1px solid #3b4145;
}

.contact-message-guide-list article {
    min-height: 270px;
    display: grid;
    grid-template-columns: 145px 1fr;
    gap: 28px;
    padding: 30px 0;
    border-bottom: 1px solid #3b4145;
}

.contact-message-guide-list article > span {
    padding-top: 6px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-message-guide-list h3 {
    font-size: clamp(24px, 2.5vw, 34px);
    font-weight: 600;
    letter-spacing: -0.04em;
}

.contact-message-guide-list ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
    margin-top: 18px;
    color: #939a9e;
    font-size: 12px;
    line-height: 1.5;
    list-style: none;
}

.contact-message-guide-list li {
    position: relative;
    padding-left: 15px;
}

.contact-message-guide-list li::before {
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 4px;
    height: 4px;
    content: "";
    background: var(--accent);
    border-radius: 50%;
}

.contact-message-guide-list a {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 26px;
    margin-top: 22px;
    padding-bottom: 8px;
    color: #d3d6d7;
    border-bottom: 1px solid #50565a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-message-guide-list a span {
    color: var(--accent);
}

.contact-message-guide-list a:hover,
.contact-message-guide-list a:focus-visible {
    color: var(--accent);
    border-color: var(--accent);
    outline: none;
}

.contact-store-note {
    min-height: 315px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: clamp(42px, 5vw, 72px);
    color: #090b0d;
    background:
        linear-gradient(90deg, transparent 49.8%, rgba(0, 0, 0, 0.075) 50%, transparent 50.2%),
        var(--accent);
}

.contact-store-note p {
    margin-bottom: 18px;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-store-note h2 {
    font-size: clamp(43px, 4.4vw, 66px);
    font-weight: 620;
    letter-spacing: -0.06em;
    line-height: 0.92;
}

.contact-store-note > a {
    min-width: 250px;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 0 20px;
    color: white;
    background: #090b0d;
    border: 1px solid #090b0d;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.contact-store-note > a:hover,
.contact-store-note > a:focus-visible {
    color: #090b0d;
    background: white;
    outline: none;
    transform: translateY(-2px);
}

@media (max-width: 1100px) {
    .contact-hero {
        grid-template-columns: minmax(0, 1fr) 42%;
    }

    .contact-hero h1 {
        font-size: clamp(58px, 7.6vw, 82px);
    }

    .contact-section-heading {
        grid-template-columns: 0.5fr 1.35fr 0.8fr;
        gap: 28px;
    }

    .contact-channel-card {
        min-height: 390px;
        padding: 24px;
    }

    .contact-message-guide {
        grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
        gap: 60px;
    }
}

@media (max-width: 820px) {
    .contact-section-shell {
        width: calc(100% - 32px);
    }

    .contact-hero {
        width: calc(100% - 16px);
        min-height: 0;
        display: block;
    }

    .contact-hero-copy {
        min-height: 440px;
        padding: 58px 30px;
    }

    .contact-hero h1 {
        font-size: clamp(58px, 12vw, 82px);
    }

    .contact-hero-intro {
        padding: 38px 30px;
        border-top: 1px solid var(--border);
        border-left: 0;
    }

    .contact-hero-intro p {
        max-width: 650px;
    }

    .contact-section-heading {
        display: block;
    }

    .contact-section-heading h2 {
        margin: 25px 0;
    }

    .contact-section-heading > p {
        max-width: 560px;
    }

    .contact-channel-grid {
        grid-template-columns: 1fr;
    }

    .contact-channel-card {
        min-height: 330px;
    }

    .contact-channel-copy {
        margin-top: 40px;
    }

    .contact-message-guide {
        display: block;
        padding-top: 82px;
    }

    .contact-message-guide-intro {
        position: static;
    }

    .contact-message-guide-list {
        margin-top: 52px;
    }

    .contact-store-note {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .contact-hero {
        width: 100%;
        border-right: 0;
        border-left: 0;
    }

    .contact-hero::after {
        right: -55%;
        bottom: -28%;
    }

    .contact-hero-copy {
        min-height: 390px;
        padding: 50px 20px 42px;
    }

    .contact-hero h1 {
        font-size: 15vw;
    }

    .contact-hero-intro {
        padding: 32px 20px;
    }

    .contact-hero-intro p {
        font-size: 14px;
    }

    .contact-hero-intro a {
        width: 100%;
        min-width: 0;
    }

    .contact-channels {
        padding-top: 84px;
        padding-bottom: 88px;
    }

    .contact-section-heading h2 {
        font-size: 15vw;
    }

    .contact-channel-card {
        min-height: 320px;
        padding: 22px;
    }

    .contact-channel-copy > strong {
        font-size: 42px;
    }

    .contact-channel-copy > span {
        margin-top: 20px;
    }

    .contact-message-guide {
        padding-top: 76px;
        padding-bottom: 82px;
    }

    .contact-message-guide-intro h2 {
        font-size: 14vw;
    }

    .contact-message-guide-list article {
        min-height: 0;
        display: block;
        padding: 28px 0;
    }

    .contact-message-guide-list article > span {
        display: block;
        margin-bottom: 14px;
    }

    .contact-message-guide-list h3 {
        font-size: 25px;
    }

    .contact-message-guide-list ul {
        grid-template-columns: 1fr;
    }

    .contact-store-note {
        width: 100%;
        padding: 46px 20px;
    }

    .contact-store-note h2 {
        font-size: 13vw;
    }

    .contact-store-note > a {
        width: 100%;
    }
}
