/* Figma: «Обсудить интерьер», 1920 / 1280 / 834 / mobile */
.interior-contact {
    padding-inline: 90px;
    color: #3d3232;
    background: #f9f7f4;
    font-family: "IBM Plex Sans", Arial, sans-serif;
}

.interior-contact__inner {
    display: grid;
    width: 100%;
    max-width: 1740px;
    min-height: 412px;
    margin-inline: auto;
    grid-template-columns: 546px minmax(0, 1fr);
    gap: 50px;
    padding-block: 50px;
    border-top: 1px solid #e0dad5;
    border-bottom: 1px solid #e0dad5;
}

.interior-contact__copy {
    display: flex;
    width: 546px;
    flex-direction: column;
    gap: 30px;
    padding-right: 60px;
}

.interior-contact__copy h2,
.interior-contact__copy p {
    width: 100%;
    margin: 0;
}

.interior-contact__copy h2 {
    color: #3d3232;
    font: 400 32px/1.4 "IBM Plex Serif", Georgia, serif;
    letter-spacing: 0;
}

.interior-contact__copy p {
    color: #5e5555;
    font: 400 16px/1.5 "IBM Plex Sans", Arial, sans-serif;
}

.interior-contact .contact-form {
    width: 100%;
    max-width: none;
    min-width: 0;
    scroll-margin-top: 24px;
}

.interior-contact .contact-form form {
    width: 100%;
}

.interior-contact .form-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.interior-contact .form-field,
.interior-contact .form-consent {
    margin: 0;
}

.interior-contact .form-field--message,
.interior-contact .form-consent {
    grid-column: 1 / -1;
}

.interior-contact .form-field input,
.interior-contact .form-field textarea {
    display: block;
    width: 100%;
    padding: 20px;
    border: 1px solid rgba(61, 50, 50, 0.1);
    border-radius: 0;
    outline: 0;
    color: #3d3232;
    background: #fff;
    font: 400 16px/1.5 "IBM Plex Sans", Arial, sans-serif;
}

.interior-contact .form-field input {
    height: 64px;
}

.interior-contact .form-field textarea {
    height: 100px;
    resize: none;
}

.interior-contact .form-field input::placeholder,
.interior-contact .form-field textarea::placeholder {
    color: rgba(61, 50, 50, 0.6);
    opacity: 1;
}

.interior-contact .form-field input:focus,
.interior-contact .form-field textarea:focus {
    border-color: rgba(61, 50, 50, 0.6);
}

.interior-contact .form-consent {
    min-width: 0;
    color: #5e5555;
    font: 400 12px/1.3 "IBM Plex Sans", Arial, sans-serif;
}

.interior-contact .form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.interior-contact .form-consent input {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin: 0;
    appearance: none;
    border: 1px solid rgba(61, 50, 50, 0.6);
    border-radius: 0;
    background: transparent;
}

.interior-contact .form-consent input:checked {
    background:
        linear-gradient(135deg, transparent 46%, #3d3232 47% 54%, transparent 55%) 3px 4px / 7px 7px no-repeat,
        linear-gradient(45deg, transparent 44%, #3d3232 45% 55%, transparent 56%) 7px 1px / 7px 11px no-repeat;
}

.interior-contact .form-consent a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 0;
}

.interior-contact__submit {
    display: inline-flex;
    width: 100%;
    height: 66px;
    align-items: center;
    justify-content: center;
    padding: 24px 40px;
    border: 1px solid rgba(61, 50, 50, 0.6);
    border-radius: 0;
    color: #3d3232;
    background: transparent;
    font: 400 14px/1.3 "IBM Plex Sans", Arial, sans-serif;
    text-transform: uppercase;
    cursor: pointer;
}

.interior-contact__submit:hover,
.interior-contact__submit:focus-visible {
    color: #fff;
    background: #3d3232;
}

.interior-contact .form-notice {
    margin: 0 0 22px;
}

@media (max-width: 1599px) {
    .interior-contact {
        padding-inline: 40px;
    }

    .interior-contact__inner {
        max-width: 1200px;
        min-height: 514px;
        grid-template-columns: 380px minmax(0, 1fr);
        gap: 32px;
    }

    .interior-contact__copy {
        width: 380px;
        padding-right: 0;
    }

    .interior-contact .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .interior-contact .form-field--name {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1023px) {
    .interior-contact__inner {
        display: flex;
        width: 100%;
        max-width: 754px;
        min-height: 738px;
        flex-direction: column;
        gap: 32px;
    }

    .interior-contact__copy {
        width: 100%;
        gap: 30px;
        text-align: center;
    }

    .interior-contact__copy h2 {
        width: 100%;
    }

    .interior-contact__submit {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .interior-contact {
        padding-inline: 20px;
    }

    .interior-contact__inner {
        max-width: 320px;
        min-height: 822px;
        gap: 30px;
        padding-block: 40px;
    }

    .interior-contact__copy {
        gap: 20px;
    }

    .interior-contact__copy h2 {
        font-size: 24px;
    }

    .interior-contact .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .interior-contact .form-field--name,
    .interior-contact .form-field--phone,
    .interior-contact .form-field--email,
    .interior-contact .form-field--message,
    .interior-contact .form-consent,
    .interior-contact__submit {
        grid-column: 1;
    }
}

/* Figma: GretaHouse | Дизайн интерьеров — 1920 / 1280 / 834 / 360 */
body.page-template-interior-design {
    overflow-x: hidden;
    color: #3d3232;
    background: #f9f7f4;
    font-family: "IBM Plex Sans", Arial, sans-serif;
}

html:has(body.page-template-interior-design) {
    overflow-x: hidden;
}

.page-template-interior-design .site-header {
    position: absolute;
    z-index: 8;
    top: 0;
    right: 0;
    left: 0;
    height: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
}

.page-template-interior-design .site-header__inner {
    position: relative;
    width: min(calc(100% - 180px), 1740px);
    min-height: 0;
}

.page-template-interior-design .site-header .site-logo {
    position: absolute;
    top: 46px;
    left: 0;
    color: #fff;
    font-family: "IBM Plex Serif", Georgia, serif;
    font-size: 31px;
    line-height: 1;
    text-decoration: none;
}

.page-template-interior-design .site-header .menu-toggle {
    position: absolute;
    top: 52px;
    right: 0;
    display: inline-flex;
    width: 86px;
    height: 28px;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 0;
    border: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
}

.page-template-interior-design .site-header .menu-toggle::before {
    width: 22px;
    height: 13px;
    background:
        linear-gradient(currentColor, currentColor) 0 0 / 22px 1px no-repeat,
        linear-gradient(currentColor, currentColor) 0 6px / 22px 1px no-repeat,
        linear-gradient(currentColor, currentColor) 0 12px / 22px 1px no-repeat;
    content: "";
    opacity: 0.72;
}

.page-template-interior-design .site-header .menu-toggle span {
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
}

.page-template-interior-design .site-nav {
    position: fixed;
    z-index: 20;
    top: 94px;
    right: 90px;
    display: none;
    min-width: 300px;
    padding: 30px;
    border: 1px solid rgba(61, 50, 50, 0.2);
    color: #3d3232;
    background: #f9f7f4;
}

.page-template-interior-design .site-nav--open {
    display: block;
}

.page-template-interior-design .site-nav__list {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}

.interior-page,
.interior-page h2,
.interior-page h3,
.interior-page p {
    margin: 0;
}

.interior-page {
    overflow: hidden;
    background: #f9f7f4;
}

.interior-hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 1024px;
    color: #fff;
    background-color: #5e5555;
}

.interior-hero__portrait {
    position: absolute;
    z-index: 0;
    top: 0;
    left: calc(50% - 664px);
    overflow: hidden;
    width: 1596px;
    height: 1024px;
}

.interior-hero__portrait::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(61, 50, 50, 0.3) 0, rgba(61, 50, 50, 0) 42%);
    content: "";
    pointer-events: none;
}

.interior-hero__portrait img {
    width: 1596px;
    max-width: none;
    height: 1063px;
    object-fit: cover;
    object-position: center top;
}

.interior-hero__left,
.interior-hero__author,
.interior-hero__offer {
    position: absolute;
    z-index: 2;
}

.interior-hero__left {
    top: 297px;
    left: calc(50% - 870px);
    width: 600px;
}

.interior-hero__left h1 {
    width: 600px;
    max-width: none;
    margin: 0;
    color: #fff;
    font-family: "IBM Plex Serif", Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
}

.interior-hero__lead {
    width: 390px;
    min-height: 60px;
    margin-top: 35px !important;
    padding-left: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 20px;
    line-height: 1.5;
}

.interior-hero__author {
    top: 287px;
    left: calc(50% + 203px);
    display: flex;
    width: 320px;
    flex-direction: column;
    color: #3d3232;
    font-family: "IBM Plex Serif", Georgia, serif;
    line-height: 1.25;
}

.interior-hero__author strong {
    font-size: 20px;
    font-weight: 400;
}

.interior-hero__author span {
    margin-top: 2px;
    font-family: "IBM Plex Sans", Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
}

.interior-hero__offer {
    top: 482px;
    left: calc(50% + 400px);
    width: 440px;
}

.interior-hero__offer h2 {
    width: 440px;
    color: #fff;
    font-family: "IBM Plex Serif", Georgia, serif;
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: 0;
}

.interior-hero__offer p {
    width: 390px;
    min-height: 54px;
    margin-top: 38px;
    padding-left: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 18px;
    line-height: 1.5;
}

.interior-hero__consultation {
    display: flex;
    width: 440px;
    min-height: 66px;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 20px 40px;
    border: 1px solid rgba(61, 50, 50, 0.6);
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease, background-color 180ms ease;
}

.interior-hero__consultation:hover,
.interior-hero__consultation:focus-visible {
    color: #3d3232;
    background: #fff;
}

.interior-page__content {
    display: flex;
    width: min(calc(100% - 180px), 1740px);
    margin-inline: auto;
    flex-direction: column;
    gap: 100px;
    padding-block: 100px 0;
}

.interior-kicker {
    color: rgba(61, 50, 50, 0.6);
    font: 400 12px/1.3 "IBM Plex Sans", Arial, sans-serif;
    text-transform: uppercase;
}

.interior-section-heading {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.interior-section-heading h2,
.interior-benefits h2,
.interior-reviews h2,
.interior-about h2,
.interior-faq h2,
.interior-bonus h2 {
    color: #3d3232;
    font: 400 40px/1.2 "IBM Plex Serif", Georgia, serif;
    letter-spacing: 0;
}

.interior-process__layout {
    display: grid;
    grid-template-columns: 548px minmax(0, 1fr);
    gap: 50px;
    align-items: start;
}

.interior-process__photo {
    width: 548px;
    height: 666px;
    object-fit: cover;
}

.interior-process__steps {
    display: flex;
    margin: 0;
    padding: 0;
    flex-direction: column;
    list-style: none;
}

.interior-process__steps li {
    display: grid;
    min-height: 154px;
    grid-template-columns: 34px 235px minmax(0, 1fr);
    gap: 28px;
    padding: 0 0 28px;
}

.interior-process__steps li:not(:last-child) {
    margin-bottom: 18px;
}

.interior-process__number {
    position: relative;
    color: rgba(61, 50, 50, 0.6);
    font: 400 14px/1.5 "IBM Plex Sans", Arial, sans-serif;
}

.interior-process__number::after {
    position: absolute;
    top: 30px;
    bottom: -10px;
    left: 5px;
    width: 1px;
    background: rgba(61, 50, 50, 0.16);
    content: "";
}

.interior-process__steps li:last-child .interior-process__number::after {
    display: none;
}

.interior-process__steps h3 {
    color: #3d3232;
    font: 400 18px/1.4 "IBM Plex Serif", Georgia, serif;
}

.interior-process__steps p {
    color: #5e5555;
    font: 400 14px/1.5 "IBM Plex Sans", Arial, sans-serif;
}

.interior-page__content > .interior-contact {
    width: 100%;
    padding-inline: 0;
}

.interior-benefits {
    width: calc(100% + 180px);
    margin-left: -90px;
    padding: 100px 90px;
    color: #fff;
    background: #5e5555;
}

.interior-benefits__inner {
    width: min(100%, 1740px);
    margin-inline: auto;
}

.interior-benefits .interior-kicker {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.6);
}

.interior-benefits h2 {
    max-width: 1220px;
    color: #fff;
}

.interior-benefits__lead {
    margin-top: 42px;
    color: rgba(255, 255, 255, 0.8);
    font: 400 16px/1.5 "IBM Plex Sans", Arial, sans-serif;
}

.interior-benefits__grid {
    display: grid;
    margin-top: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 50px;
}

.interior-benefits__grid article {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.interior-benefits__icon {
    display: block;
    width: 32px;
    height: 32px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    transform: rotate(45deg);
}

.interior-benefits__grid p {
    color: rgba(255, 255, 255, 0.78);
    font: 400 14px/1.5 "IBM Plex Sans", Arial, sans-serif;
}

.interior-reviews {
    display: grid;
    min-height: 920px;
    grid-template-columns: 480px minmax(0, 1fr);
    gap: 50px;
    padding-block: 30px 100px;
}

.interior-reviews__intro {
    padding-top: 18px;
}

.interior-reviews__intro h2 {
    max-width: 430px;
    margin-top: 30px;
}

.interior-reviews__intro > p:not(.interior-kicker) {
    max-width: 300px;
    margin-top: 38px;
    color: #5e5555;
    font: 400 16px/1.5 "IBM Plex Sans", Arial, sans-serif;
}

.interior-button {
    display: inline-flex;
    width: 286px;
    height: 52px;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(61, 50, 50, 0.6);
    color: #3d3232;
    background: transparent;
    font: 400 12px/1.3 "IBM Plex Sans", Arial, sans-serif;
    text-decoration: none;
    text-transform: uppercase;
}

.interior-reviews__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.interior-review {
    min-height: 720px;
    margin: 0;
    padding: 42px 38px;
    color: #5e5555;
    background: #fff;
    font: 400 14px/1.55 "IBM Plex Sans", Arial, sans-serif;
}

.interior-review header {
    position: relative;
    display: flex;
    margin-bottom: 40px;
    flex-direction: column;
    color: #3d3232;
}

.interior-review header::after {
    position: absolute;
    top: 0;
    right: 0;
    color: rgba(61, 50, 50, 0.16);
    font: 400 42px/1 "IBM Plex Serif", Georgia, serif;
    content: "”";
}

.interior-review header strong {
    font: 400 18px/1.4 "IBM Plex Serif", Georgia, serif;
}

.interior-review header span {
    color: rgba(61, 50, 50, 0.6);
    font: 400 12px/1.3 "IBM Plex Sans", Arial, sans-serif;
}

.interior-about {
    position: relative;
    display: grid;
    min-height: 1160px;
    grid-template-columns: 548px minmax(0, 1fr);
    gap: 50px;
    padding-bottom: 160px;
}

.interior-about__media img {
    width: 548px;
    height: 660px;
    object-fit: cover;
}

.interior-about__media > p {
    max-width: 500px;
    margin-top: 24px;
    color: #5e5555;
    font: 400 14px/1.5 "IBM Plex Sans", Arial, sans-serif;
}

.interior-about__copy {
    padding-top: 12px;
}

.interior-about__copy h2 {
    margin-top: 20px;
}

.interior-about__lead {
    max-width: 950px;
    margin-top: 30px !important;
    color: #3d3232;
    font: 400 18px/1.5 "IBM Plex Sans", Arial, sans-serif;
}

.interior-about__copy > p:not(.interior-kicker):not(.interior-about__lead) {
    margin-top: 18px;
    color: #5e5555;
    font: 400 16px/1.5 "IBM Plex Sans", Arial, sans-serif;
}

.interior-about__story {
    display: grid;
    margin-top: 55px;
    grid-template-columns: 452px minmax(0, 1fr);
    gap: 50px;
}

.interior-about__story img {
    width: 452px;
    height: 500px;
    object-fit: cover;
}

.interior-about__story p {
    margin-bottom: 22px;
    color: #5e5555;
    font: 400 14px/1.5 "IBM Plex Sans", Arial, sans-serif;
}

.interior-about__wordmark {
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    overflow: hidden;
    height: 160px;
    color: rgba(61, 50, 50, 0.08);
    font: 400 170px/1 "IBM Plex Serif", Georgia, serif;
    white-space: nowrap;
}

.interior-faq {
    display: grid;
    width: calc(100% + 180px);
    min-height: 1280px;
    margin-left: -90px;
    grid-template-columns: 520px minmax(0, 1fr);
    gap: 70px;
    padding: 100px 90px;
    color: #fff;
    background: #5e5555;
}

.interior-faq .interior-kicker {
    color: rgba(255, 255, 255, 0.6);
}

.interior-faq h2 {
    max-width: 430px;
    margin-top: 30px;
    color: #fff;
}

.interior-faq__list details {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.interior-faq__list details:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.interior-faq__list summary {
    position: relative;
    padding: 25px 54px 25px 0;
    color: rgba(255, 255, 255, 0.9);
    font: 400 16px/1.5 "IBM Plex Sans", Arial, sans-serif;
    cursor: pointer;
    list-style: none;
}

.interior-faq__list summary::-webkit-details-marker {
    display: none;
}

.interior-faq__list summary::after {
    position: absolute;
    top: 24px;
    right: 15px;
    color: rgba(255, 255, 255, 0.6);
    font: 300 25px/1 "IBM Plex Sans", Arial, sans-serif;
    content: "+";
}

.interior-faq__list details[open] summary::after {
    content: "−";
}

.interior-faq__list details > div {
    max-width: 850px;
    padding: 0 80px 30px 0;
    color: rgba(255, 255, 255, 0.62);
    font: 400 13px/1.55 "IBM Plex Sans", Arial, sans-serif;
}

.interior-bonus {
    display: grid;
    min-height: 730px;
    grid-template-columns: 1fr 1.45fr 1fr;
    gap: 0;
    border: 1px solid rgba(61, 50, 50, 0.08);
    background: #f9f7f4;
}

.interior-bonus__gift {
    padding: 50px 30px 35px;
}

.interior-bonus__gift img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.interior-bonus__gift p {
    position: relative;
    margin-top: 28px;
    padding-left: 92px;
    color: #5e5555;
    font: 400 14px/1.5 "IBM Plex Sans", Arial, sans-serif;
}

.interior-bonus__gift p::before {
    position: absolute;
    top: -2px;
    left: 14px;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(61, 50, 50, 0.12);
    border-radius: 50%;
    content: "□";
    color: rgba(61, 50, 50, 0.5);
    font: 400 28px/52px "IBM Plex Serif", Georgia, serif;
    text-align: center;
}

.interior-bonus__copy {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 65px 70px;
    background: #f2ede7;
    text-align: center;
}

.interior-bonus__copy h2 {
    max-width: 500px;
    margin-top: 52px;
    font-size: 48px;
}

.interior-bonus__copy > p:last-child {
    max-width: 500px;
    margin-top: 60px;
    color: #5e5555;
    font: 400 18px/1.5 "IBM Plex Serif", Georgia, serif;
}

.interior-contact--final .interior-contact__copy h2 {
    font-size: 36px;
    line-height: 1.3;
}

.page-template-interior-design .journal-footer {
    margin-top: 60px;
}

@media (max-width: 1599px) {
    .page-template-interior-design .site-header__inner,
    .interior-page__content {
        width: min(calc(100% - 80px), 1200px);
    }

    .page-template-interior-design .site-header .menu-toggle {
        top: 32px;
    }

    .page-template-interior-design .site-header .site-logo {
        top: 28px;
        font-size: 28px;
    }

    .page-template-interior-design .site-nav {
        top: 74px;
        right: 40px;
    }

    .interior-hero {
        height: 768px;
    }

    .interior-hero__portrait {
        left: 25%;
        width: 119.609375%;
        height: 768px;
    }

    .interior-hero__portrait img {
        width: 100%;
        height: auto;
    }

    .interior-hero__left {
        top: 218px;
        left: 40px;
        width: 383px;
    }

    .interior-hero__left h1 {
        width: 383px;
        font-size: 36px;
    }

    .interior-hero__lead {
        width: 390px;
        margin-top: 27px !important;
        font-size: 20px;
    }

    .interior-hero__author {
        top: 215px;
        left: 60%;
    }

    .interior-hero__offer {
        top: 342px;
        right: 40px;
        left: auto;
        width: 350px;
    }

    .interior-hero__offer h2 {
        width: 354px;
        font-size: 32px;
    }

    .interior-hero__offer p {
        width: 390px;
        margin-top: 28px;
        font-size: 18px;
    }

    .interior-hero__consultation {
        width: 350px;
        min-height: 66px;
        margin-top: 22px;
        padding-inline: 20px;
        font-size: 12px;
    }

    .interior-page__content {
        gap: 80px;
        padding-top: 80px;
    }

    .interior-process__layout {
        grid-template-columns: 380px minmax(0, 1fr);
        gap: 32px;
    }

    .interior-process__photo {
        width: 380px;
        height: 470px;
    }

    .interior-process__steps li {
        min-height: 150px;
        grid-template-columns: 26px 185px minmax(0, 1fr);
        gap: 18px;
    }

    .interior-benefits,
    .interior-faq {
        width: calc(100% + 80px);
        margin-left: -40px;
        padding-inline: 40px;
    }

    .interior-reviews {
        grid-template-columns: 320px minmax(0, 1fr);
        gap: 32px;
    }

    .interior-reviews__cards {
        gap: 20px;
    }

    .interior-review {
        padding-inline: 28px;
    }

    .interior-about {
        grid-template-columns: 380px minmax(0, 1fr);
        gap: 32px;
    }

    .interior-about__media img {
        width: 380px;
        height: 520px;
    }

    .interior-about__story {
        grid-template-columns: 300px minmax(0, 1fr);
        gap: 32px;
    }

    .interior-about__story img {
        width: 300px;
        height: 420px;
    }

    .interior-faq {
        grid-template-columns: 370px minmax(0, 1fr);
        gap: 50px;
    }

    .interior-bonus__gift {
        padding-inline: 20px;
    }

    .interior-bonus__gift img {
        height: 300px;
    }

    .interior-bonus__copy {
        padding-inline: 40px;
    }

    .interior-bonus__copy h2 {
        font-size: 40px;
    }

    .interior-page__content > .interior-contact {
        padding-inline: 0;
    }
}

@media (max-width: 1023px) {
    .page-template-interior-design .site-header__inner,
    .interior-page__content {
        width: min(calc(100% - 80px), 754px);
    }

    .interior-hero {
        height: 768px;
    }

    .interior-hero__portrait {
        left: 76.8585%;
        width: 1152px;
        height: 768px;
    }

    .interior-hero__portrait img {
        width: 1152px;
        height: 768px;
    }

    .interior-hero__left {
        top: 190px;
        left: 40px;
        width: 430px;
    }

    .interior-hero__left h1 {
        width: 430px;
        font-size: 24px;
    }

    .interior-hero__lead {
        width: 350px;
        margin-top: 30px !important;
        font-size: 16px;
    }

    .interior-hero__author {
        top: 230px;
        right: 40px;
        left: auto;
        width: 245px;
    }

    .interior-hero__offer {
        top: 415px;
        right: 40px;
        width: 350px;
    }

    .interior-hero__offer h2 {
        width: 350px;
        font-size: 24px;
    }

    .interior-hero__offer p {
        width: 320px;
    }

    .interior-hero__consultation {
        width: 350px;
    }

    .interior-page__content {
        gap: 60px;
        padding-top: 60px;
    }

    .interior-section-heading {
        align-items: center;
        text-align: center;
    }

    .interior-process__layout {
        display: block;
    }

    .interior-process__photo {
        float: left;
        width: 280px;
        height: 350px;
        margin: 0 30px 26px 0;
    }

    .interior-process__steps li {
        min-height: 0;
        grid-template-columns: 24px minmax(170px, 0.7fr) minmax(0, 1.3fr);
        gap: 15px;
        padding-bottom: 25px;
    }

    .interior-process__steps h3 {
        font-size: 16px;
    }

    .interior-process__steps p {
        font-size: 13px;
    }

    .interior-benefits,
    .interior-faq {
        width: calc(100% + 80px);
        margin-left: -40px;
        padding: 60px 40px;
    }

    .interior-benefits h2 {
        font-size: 32px;
        text-align: center;
    }

    .interior-benefits .interior-kicker,
    .interior-benefits__lead {
        text-align: center;
    }

    .interior-benefits__grid {
        gap: 30px;
    }

    .interior-reviews {
        display: block;
        min-height: 0;
        padding-bottom: 60px;
    }

    .interior-reviews__intro {
        margin-bottom: 40px;
        text-align: center;
    }

    .interior-reviews__intro h2,
    .interior-reviews__intro > p:not(.interior-kicker) {
        max-width: 620px;
        margin-right: auto;
        margin-left: auto;
    }

    .interior-review {
        min-height: 600px;
    }

    .interior-about {
        min-height: 0;
        grid-template-columns: 270px minmax(0, 1fr);
        gap: 30px;
        padding-bottom: 130px;
    }

    .interior-about__media img {
        width: 270px;
        height: 330px;
    }

    .interior-about__story {
        margin-left: -300px;
        grid-template-columns: 300px minmax(0, 1fr);
    }

    .interior-about__wordmark {
        font-size: 105px;
    }

    .interior-faq {
        display: block;
        min-height: 0;
    }

    .interior-faq__intro {
        margin-bottom: 45px;
        text-align: center;
    }

    .interior-faq h2 {
        max-width: 620px;
        margin-right: auto;
        margin-left: auto;
        font-size: 32px;
    }

    .interior-bonus {
        min-height: 0;
        grid-template-columns: 1fr 1.2fr 1fr;
    }

    .interior-bonus__gift {
        padding: 30px 15px;
    }

    .interior-bonus__gift img {
        height: 230px;
    }

    .interior-bonus__gift p {
        padding-left: 0;
        font-size: 12px;
        text-align: center;
    }

    .interior-bonus__gift p::before {
        display: none;
    }

    .interior-bonus__copy {
        padding: 40px 24px;
    }

    .interior-bonus__copy h2 {
        margin-top: 35px;
        font-size: 32px;
    }

    .interior-bonus__copy > p:last-child {
        margin-top: 35px;
        font-size: 16px;
    }

    .interior-page__content > .interior-contact {
        padding-inline: 0;
    }
}

@media (max-width: 560px) {
    .page-template-interior-design .site-header__inner,
    .interior-page__content {
        width: min(calc(100% - 40px), 320px);
    }

    .page-template-interior-design .site-header .menu-toggle {
        top: 20px;
        right: 0;
        width: 42px;
        height: 28px;
    }

    .page-template-interior-design .site-header .site-logo {
        top: 24px;
        font-size: 24px;
    }

    .page-template-interior-design .site-header .menu-toggle span {
        display: none;
    }

    .page-template-interior-design .site-nav {
        top: 54px;
        right: 20px;
        max-width: calc(100% - 40px);
    }

    .interior-hero {
        height: 1113px;
    }

    .interior-hero__portrait {
        top: 319px;
        left: 20px;
        width: calc(100% - 40px);
        height: 445px;
    }

    .interior-hero__portrait::after {
        background: linear-gradient(180deg, rgba(61, 50, 50, 0) 45%, rgba(61, 50, 50, 0.18) 100%);
    }

    .interior-hero__portrait img {
        position: absolute;
        top: -15px;
        left: -140.34px;
        width: 736.68px;
        max-width: none;
        height: 491px;
        object-fit: cover;
    }

    .interior-hero__left {
        top: 96px;
        left: 20px;
        width: calc(100% - 40px);
    }

    .interior-hero__left h1 {
        width: 100%;
        font-size: 24px;
        line-height: 1.2;
        text-align: center;
    }

    .interior-hero__lead {
        width: 100%;
        min-height: 48px;
        margin-top: 22px !important;
        padding: 0;
        border: 0;
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
    }

    .interior-hero__author {
        z-index: 3;
        top: 584px;
        right: auto;
        left: 68px;
        width: 250px;
        color: #3d3232;
    }

    .interior-hero__author strong {
        font-size: 16px;
    }

    .interior-hero__author span {
        font-size: 10px;
    }

    .interior-hero__offer {
        top: 797px;
        right: 20px;
        left: 20px;
        width: auto;
        text-align: center;
    }

    .interior-hero__offer h2 {
        width: 100%;
        font-size: 24px;
        line-height: 1.2;
        text-align: center;
    }

    .interior-hero__offer p {
        width: 100%;
        min-height: 48px;
        margin-top: 28px;
        padding: 0;
        border: 0;
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
    }

    .interior-hero__consultation {
        width: 100%;
        min-height: 52px;
        margin-top: 27px;
        padding: 16px 20px;
        border-color: rgba(61, 50, 50, 0.6);
        font-size: 11px;
    }

    .interior-page__content {
        gap: 50px;
        padding-top: 50px;
    }

    .interior-section-heading {
        margin-bottom: 30px;
    }

    .interior-section-heading h2,
    .interior-benefits h2,
    .interior-reviews h2,
    .interior-about h2,
    .interior-faq h2,
    .interior-bonus h2 {
        font-size: 28px;
        line-height: 1.25;
    }

    .interior-process__photo {
        float: none;
        width: 320px;
        height: 389px;
        margin: 0 0 30px;
    }

    .interior-process__steps li {
        grid-template-columns: 24px minmax(0, 1fr);
        gap: 14px;
        padding-bottom: 28px;
    }

    .interior-process__steps h3 {
        font-size: 18px;
    }

    .interior-process__steps p {
        grid-column: 2;
        margin-top: 10px;
        font-size: 14px;
    }

    .interior-benefits,
    .interior-faq {
        width: 360px;
        margin-left: -20px;
        padding: 50px 20px;
    }

    .interior-benefits__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .interior-reviews {
        padding-top: 0;
    }

    .interior-reviews__intro {
        margin-bottom: 30px;
    }

    .interior-reviews__intro > p:not(.interior-kicker) {
        margin-top: 24px;
        font-size: 14px;
    }

    .interior-button {
        width: 320px;
    }

    .interior-reviews__cards {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .interior-review {
        width: 300px;
        min-width: 300px;
        min-height: 560px;
        padding: 30px 24px;
        scroll-snap-align: start;
    }

    .interior-about {
        display: flex;
        padding-bottom: 110px;
        flex-direction: column;
    }

    .interior-about__media {
        order: 2;
    }

    .interior-about__media img {
        width: 320px;
        height: 389px;
    }

    .interior-about__copy {
        order: 1;
    }

    .interior-about__story {
        display: flex;
        margin: 35px 0 0;
        flex-direction: column;
    }

    .interior-about__story img {
        width: 260px;
        height: 284px;
        margin-inline: auto;
    }

    .interior-about__wordmark {
        height: 65px;
        font-size: 68px;
    }

    .interior-faq__list summary {
        padding-block: 20px;
        font-size: 14px;
    }

    .interior-bonus {
        display: flex;
        flex-direction: column;
    }

    .interior-bonus__copy {
        order: -1;
        min-height: 390px;
    }

    .interior-bonus__gift {
        padding: 30px 20px;
    }

    .interior-bonus__gift img {
        width: 278px;
        height: 303px;
        margin-inline: auto;
    }

    .interior-bonus__gift p {
        font-size: 14px;
    }

    .interior-page__content > .interior-contact {
        padding-inline: 0;
    }

    .interior-contact--final .interior-contact__copy h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    .page-template-interior-design .journal-footer {
        margin-top: 40px;
    }
}

