

/* Start:/local/components/dev/form.art/templates/architecture_style/style.css?178111224819488*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Montserrat", system-ui, sans-serif;
    color: #240e00;
    background: #fff;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.banner {
    --header-h: 90px;
    --hero-center: 612px;
    --media-w: 654px;
    --beige: #e8e4df;
    --pill-bg: #e6e6e6;
    --text: #1c1c1c;
    max-width: 1920px;
    margin: 0 auto;
}

.banner__header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: var(--header-h);
    padding: 0 clamp(20px, 4vw, 80px);
    background: var(--beige);
}

.banner__header-logo a {
    display: inline-flex;
    align-items: center;
}

.banner__header-logo img {
    width: auto;
    max-height: 32px;
}

.banner__header-logo--left {
    justify-self: start;
}

.banner__header-logo--center {
    justify-self: center;
}

.banner__header-logo--right {
    justify-self: end;
}

.banner__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
}

.banner__logo-icon {
    flex-shrink: 0;
}

.banner__logo-text {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.banner__hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--hero-center) minmax(0, 1fr);
    min-height: 842px;
    background: #fff;
}

.banner__media {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: var(--media-w);
    min-height: 400px;
    background: #d4cfc8 center / cover no-repeat;
}

.banner__media--left {
    justify-self: end;
    background-image: linear-gradient(160deg, #2a231c 0%, #4a3f34 45%, #6b5d4e 100%);
}

.banner__media--right {
    justify-self: start;
    background-image: linear-gradient(200deg, #3a3228 0%, #5a4a3a 50%, #7a6555 100%);
}

.banner__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 48px 0px;
    text-align: center;
    max-width: 501px;
    margin: 0 auto;
    width: 100%;
}

.banner__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: min(405px, 100%);
    min-height: 79px;
    padding: 15px 34px;
    margin-bottom: 20px;
    background: var(--pill-bg);
    border-radius: 8px;
}

.banner__info-line {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.banner__title {
    margin: 0 0 20px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(32px, 3.2vw, 48px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
}

.banner__desc {
    margin: 0 0 40px;
    max-width: 501px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--text);
}

.banner__desc strong {
    font-weight: 600;
}

.banner__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 375px;
    max-width: 100%;
    height: 60px;
    padding: 0 34px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text);
    background: var(--pill-bg);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.banner__cta:hover {
    background: #d0d0d0;
}

.banner__cta:focus-visible {
    outline: 2px solid var(--text);
    outline-offset: 3px;
}

@media (max-width: 1024px) {
    .banner {
        --header-h: 72px;
    }

    .banner__header {
        padding: 0 20px;
    }

    .banner__header-logo img {
        max-height: 26px;
    }

    .banner__hero {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "media-left media-right"
            "content content";
        gap: 0;
        min-height: 0;
    }

    .banner__media--left {
        grid-area: media-left;
    }

    .banner__media--right {
        grid-area: media-right;
    }

    .banner__content {
        grid-area: content;
        max-width: none;
        padding: 36px 20px 40px;
    }

    .banner__media {
        min-height: 0;
        max-height: none;
        aspect-ratio: 327 / 421;
    }

    .banner__info {
        width: 100%;
        max-width: 360px;
        min-height: 0;
        padding: 14px 20px;
        margin-bottom: 24px;
    }

    .banner__title {
        margin-bottom: 16px;
        font-size: clamp(28px, 7.5vw, 36px);
        letter-spacing: 0.05em;
    }

    .banner__desc {
        margin-bottom: 28px;
        max-width: none;
        font-size: 15px;
        line-height: 1.5;
    }

    .banner__cta {
        min-width: 0;
        width: 100%;
        max-width: none;
        height: 56px;
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .banner {
        --header-h: 64px;
    }

    .banner__header {
        padding: 0 12px;
    }

    .banner__header-logo img {
        max-height: 20px;
    }

    .banner__logo svg {
        width: 140px;
        height: auto;
    }

    .banner__content {
        padding: 28px 16px 32px;
    }

    .banner__media {
        aspect-ratio: 187 / 240;
    }

    .banner__info {
        padding: 12px 16px;
        margin-bottom: 20px;
        border-radius: 6px;
    }

    .banner__info-line {
        font-size: 13px;
        line-height: 1.45;
    }

    .banner__title {
        font-size: 26px;
        letter-spacing: 0.04em;
    }

    .banner__desc {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .banner__cta {
        height: 52px;
        font-size: 14px;
    }
}

.program {
    --program-text: #240e00;
    max-width: 1920px;
    margin: 0 auto;
    padding: 100px 24px 80px;
}

.program__inner {
    max-width: 536px;
    margin: 0 auto;
    text-align: center;
}

.program__title {
    margin: 0 0 40px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--program-text);
}

.program__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.program__item {
    margin: 0 0 30px;
}

.program__item:last-child {
    margin-bottom: 0;
}

.program__time {
    display: block;
    margin: 0 0 5px;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: var(--program-text);
}

.program__text {
    margin: 0 auto;
    max-width: 492px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--program-text);
}

.program__note {
    margin: 48px 0 0;
    max-width: 536px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--program-text);
}

.program__note strong {
    font-weight: 600;
}

@media (max-width: 768px) {
    .program {
        padding: 64px 24px 56px;
    }

    .program__title {
        margin-bottom: 32px;
        font-size: 32px;
        letter-spacing: 0.06em;
    }

    .program__item {
        margin-bottom: 24px;
    }

    .program__time,
    .program__text,
    .program__note {
        font-size: 16px;
    }

    .program__note {
        margin-top: 36px;
    }
}

@media (max-width: 480px) {
    .program {
        padding: 48px 20px 40px;
    }

    .program__title {
        font-size: 28px;
    }

    .program__time,
    .program__text,
    .program__note {
        font-size: 15px;
    }
}

.gallery {
    --gallery-slide-w: 654px;
    --gallery-slide-h: 844px;
    max-width: 1920px;
    margin: 0 auto;
    background: #fff;
}

.gallery__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: none;
    touch-action: pan-x pan-y;
    cursor: grab;
    scrollbar-width: none;
    min-height: var(--gallery-slide-h);
}

.gallery__viewport::-webkit-scrollbar {
    display: none;
}

.gallery__viewport.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
    user-select: none;
}

.gallery__track {
    display: flex;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    list-style: none;
    width: max-content;
}

.gallery__slide {
    flex: 0 0 var(--gallery-slide-w);
    width: var(--gallery-slide-w);
    height: var(--gallery-slide-h);
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.gallery__slide--clone {
    pointer-events: none;
}

.gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

@media (max-width: 768px) {
    .gallery {
        --gallery-slide-w: 100vw;
        --gallery-slide-h: calc(100vw * 844 / 654);
    }

    .gallery__slide img {
        object-fit: contain;
    }
}

.faq {
    --faq-bar: #dcd7d2;
    --faq-text: #240e00;
    --faq-answer: #555;
    max-width: 1920px;
    margin: 0 auto;
    padding: 100px 24px 100px;
}

.faq__inner {
    max-width: 654px;
    margin: 0 auto;
}

.faq__title {
    margin: 0 0 48px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
    color: var(--faq-text);
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq__item {
    margin: 0;
}

.faq__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 56px;
    padding: 16px 20px;
    list-style: none;
    cursor: pointer;
    background: var(--faq-bar);
    border-radius: 6px;
    transition: background 0.2s ease;
}

.faq__summary::-webkit-details-marker {
    display: none;
}

.faq__summary::marker {
    content: "";
}

.faq__summary:hover {
    background: #d0cbc5;
}

.faq__summary:focus-visible {
    outline: 2px solid var(--faq-text);
    outline-offset: 2px;
}

.faq__question {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--faq-text);
    text-align: left;
}

.faq__icon {
    flex-shrink: 0;
    width: 12px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23240E00' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s ease;
}

.faq__item[open] .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    padding: 12px 20px 8px;
}

.faq__answer p {
    margin: 0;
    max-width: 560px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--faq-answer);
    text-align: left;
}

@media (max-width: 768px) {
    .faq {
        padding: 64px 24px 72px;
    }

    .faq__title {
        margin-bottom: 36px;
        font-size: 32px;
        letter-spacing: 0.06em;
    }

    .faq__question {
        font-size: 16px;
    }

    .faq__answer p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 48px 20px 56px;
    }

    .faq__title {
        font-size: 28px;
    }

    .faq__summary {
        padding: 14px 16px;
    }

    .faq__answer {
        padding: 10px 16px 6px;
    }
}

.registration {
    --reg-bg: #fff;
    --reg-input: #dcd7d2;
    --reg-text: #240e00;
    --reg-muted: #555;
    --reg-button: #808080;
    max-width: 1920px;
    margin: 0 auto;
    padding: 100px 24px 120px;
    background: var(--reg-bg);
}

.registration__inner {
    max-width: 520px;
    margin: 0 auto;
}

.registration__title {
    margin: 0 0 40px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
    color: var(--reg-text);
}

.registration--success .registration__title {
    display: none;
}

.registration__form {
    width: 100%;
}

.registration__field {
    display: block;
    margin-bottom: 22px;
}

.registration__label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--reg-text);
}

.registration__input {
    width: 100%;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 16px;
    color: #2c2c2c;
    background: var(--reg-input);
    border: none;
    border-radius: 6px;
    outline: none;
    box-sizing: border-box;
}

.registration__input.is-invalid,
.registration__single-toggle.is-invalid {
    box-shadow: 0 0 0 1px #e33232;
}

.registration__input:focus {
    box-shadow: 0 0 0 2px rgba(36, 14, 0, 0.15);
}

.registration__single {
    position: relative;
}

.registration__single-toggle {
    width: 100%;
    padding: 14px 44px 14px 16px;
    font-family: inherit;
    font-size: 16px;
    color: #2c2c2c;
    text-align: left;
    background: var(--reg-input);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23240E00' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.registration__single-list {
    position: absolute;
    z-index: 5;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    padding: 8px 0;
    background: var(--reg-input);
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.registration__single-list.is-hidden {
    display: none;
}

.registration__single-option {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 16px;
    font-size: 16px;
    color: #2c2c2c;
    cursor: pointer;
}

.registration__single-option input {
    position: relative;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin: 0;
    appearance: none;
    background: transparent;
    border: 1px solid var(--reg-text);
    border-radius: 50%;
    cursor: pointer;
}

.registration__single-option input:checked {
    border-width: 5px;
}

.registration__single-native {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    opacity: 0;
    display: none;
}

.registration__consent {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 8px 0 28px;
}

.registration__checkbox {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    appearance: none;
    border: 1px solid var(--reg-text);
    border-radius: 50%;
    cursor: pointer;
}

.registration__checkbox:checked {
    border-width: 5px;
}

.registration__consent-text {
    font-size: 14px;
    line-height: 1.45;
    color: var(--reg-muted);
}

.registration__footer {
    margin-top: 8px;
}

.registration__error {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.45;
    color: #e33232;
    text-align: center;
}

.registration__error.is-hidden {
    display: none;
}

.registration__button.is-loading {
    opacity: 0.7;
    pointer-events: none;
    cursor: wait;
}

.registration__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    padding: 14px 24px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #fff;
    text-transform: uppercase;
    background: var(--reg-button);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.registration__button:hover {
    background: #6e6e6e;
}

.registration__button:focus-visible {
    outline: 2px solid var(--reg-text);
    outline-offset: 3px;
}

.registration__page.is-hidden {
    display: none;
}

.registration__page[data-step="2"]:not(.is-hidden) {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.registration__success {
    width: 100%;
    padding: 36px 28px;
    text-align: center;
    background: #e6e4e2;
    border-radius: 10px;
}

.registration__success-title {
    margin: 0 0 16px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #3b2a22;
}

.registration__success-text {
    margin: 0 auto;
    max-width: 420px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: #240e00;
}

@media (max-width: 768px) {
    .registration {
        padding: 64px 24px 80px;
    }

    .registration__title {
        margin-bottom: 32px;
        font-size: 32px;
    }

    .registration__success {
        padding: 32px 24px;
    }

    .registration__success-title {
        margin-bottom: 14px;
        font-size: 30px;
    }

    .registration__success-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .registration {
        padding: 48px 20px 64px;
    }

    .registration__title {
        font-size: 28px;
    }

    .registration__label,
    .registration__input,
    .registration__single-toggle,
    .registration__single-option {
        font-size: 15px;
    }

    .registration__success {
        padding: 28px 20px;
    }

    .registration__success-title {
        font-size: 26px;
        letter-spacing: 0.04em;
    }

    .registration__success-text {
        font-size: 14px;
    }
}
.banner__inf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    padding: 0 34px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: #1c1c1c;
    background: #e6e6e6;
    border: none;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
}
/* End */
/* /local/components/dev/form.art/templates/architecture_style/style.css?178111224819488 */
