/* Страница контактов (yoge-shell) */
.contacts-yoge {
    color: #181a17;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 -4px;
}

.contacts-yoge__alert {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    background: #e9f4ef;
    border: 1px solid #448C74;
    color: #448C74;
}

.contacts-yoge__top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

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

.contacts-yoge__chip {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(68, 140, 116, 0.06);
    border: 1px solid rgba(68, 140, 116, 0.15);
}

.contacts-yoge__icon-ring {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    border: 2px solid #448C74;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #448C74;
    font-size: 1.35rem;
}

.contacts-yoge__chip-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #448C74;
    margin: 0 0 0.65rem;
}

.contacts-yoge__chip-body {
    margin: 0;
    font-size: 0.95rem;
    color: #3d4540;
}

.contacts-yoge__chip-body a {
    color: #181a17;
    font-weight: 600;
    text-decoration: none;
}

.contacts-yoge__chip-body a:hover {
    color: #448C74;
}

.contacts-yoge__intro {
    margin-bottom: 2rem;
}

.contacts-yoge__pill {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid #181a17;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #181a17;
    margin-bottom: 0.65rem;
}

.contacts-yoge__rule {
    height: 1px;
    background: #181a17;
    opacity: 0.15;
    margin: 0.5rem 0 1rem;
    max-width: 120px;
}

.contacts-yoge__heading {
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    font-weight: 800;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #181a17;
}

.contacts-yoge__lead {
    margin: 0;
    max-width: 640px;
    color: #5a635e;
    font-size: 0.98rem;
}

.contacts-yoge__cta-row {
    margin: 1.25rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    align-items: center;
}

.contacts-yoge__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.contacts-yoge__btn--primary {
    background: #448C74;
    color: #fff !important;
    border-color: #448C74;
}

.contacts-yoge__btn--primary:hover {
    background: #3a7a66;
    color: #fff !important;
}

.contacts-yoge__btn--ghost {
    background: #fff;
    color: #181a17 !important;
    border-color: #181a17;
}

.contacts-yoge__btn--ghost:hover {
    border-color: #448C74;
    color: #448C74 !important;
}

.contacts-yoge__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.75rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

@media (max-width: 992px) {
    .contacts-yoge__grid {
        grid-template-columns: 1fr;
    }
}

.contacts-yoge__form-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.75rem 1.5rem 2rem;
    box-shadow: 0 4px 24px rgba(68, 140, 116, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contacts-yoge__form-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1.25rem;
}

.contacts-yoge__fields {
    display: grid;
    gap: 1rem 1.25rem;
}

.contacts-yoge__row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
}

@media (max-width: 600px) {
    .contacts-yoge__row2 {
        grid-template-columns: 1fr;
    }
}

.contacts-yoge__field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #3d4540;
    margin-bottom: 0.35rem;
}

.contacts-yoge__field input,
.contacts-yoge__field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #b8c4be;
    padding: 0.45rem 0;
    font-size: 1rem;
    font-family: inherit;
    background: transparent;
    border-radius: 0;
    color: #181a17;
}

.contacts-yoge__field input:focus,
.contacts-yoge__field textarea:focus {
    outline: none;
    border-bottom-color: #448C74;
}

.contacts-yoge__field textarea {
    min-height: 120px;
    resize: vertical;
}

.contacts-yoge__check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.82rem;
    color: #5a635e;
}

.contacts-yoge__check input {
    margin-top: 0.2rem;
}

.contacts-yoge__submit {
    margin-top: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    border: none;
    background: #448C74;
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
}

.contacts-yoge__submit:hover {
    background: #3d836b;
    color: #fff;
}

.contacts-yoge__submit .la {
    font-size: 0.95rem;
    transform: rotate(-12deg);
}

.contacts-yoge__aside {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(68, 140, 116, 0.12);
}

.contacts-yoge__aside-img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.contacts-yoge__aside-panel {
    position: relative;
    background: #448C74;
    color: #fff;
    padding: 1.35rem 1.25rem 1.75rem;
}

.contacts-yoge__aside-quote {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 1rem;
}

.contacts-yoge__aside-hours-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #e5c466;
    margin: 0 0 0.35rem;
}

.contacts-yoge__aside-hours {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    opacity: 0.95;
}

.contacts-yoge__share-fab {
    position: absolute;
    right: 1rem;
    bottom: -1.15rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #448C74;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    font-size: 1.1rem;
}

.contacts-yoge__share-fab:hover {
    color: #181a17;
}

.contacts-yoge__map-wrap {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 380px;
    background: #e0e8e4;
    border-radius: 0;
    overflow: hidden;
}

.contacts-yoge__map-wrap iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: 0;
}

.contacts-yoge__map-custom {
    min-height: 380px;
}

.contacts-yoge__map-custom iframe {
    max-width: 100%;
    min-height: 380px;
}

.contacts-yoge .invalid-feedback {
    display: block;
    font-size: 0.8rem;
    color: #b42318;
    margin-top: 0.25rem;
}

.contacts-yoge .is-invalid {
    border-bottom-color: #b42318 !important;
}
