.ibc-contact {
    --black: #0b0b0b;
    --cream: #f3f0eb;
    --white: #ffffff;
    --grey: #77736e;
    --line: rgba(11, 11, 11, 0.16);
    --line-light: rgba(255, 255, 255, 0.22);
    background: var(--cream);
    color: var(--black);
    font-family: "Manrope", sans-serif;
    overflow: hidden;
}

.ibc-contact *,
.ibc-contact *::before,
.ibc-contact *::after {
    box-sizing: border-box;
}

.ibc-wrap {
    width: min(calc(100% - 80px), 1380px);
    margin: 0 auto;
}

.ibc-kicker {
    margin: 0;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.18em;
    font-weight: 600;
    text-transform: uppercase;
}

.ibc-hero {
    min-height: 760px;
    display: flex;
    align-items: stretch;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
}

.ibc-hero .ibc-wrap {
    min-height: 760px;
    padding-top: 110px;
    padding-bottom: 55px;
    display: flex;
    flex-direction: column;
}

.ibc-hero h1 {
    margin: auto 0;
    max-width: 1100px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(78px, 9vw, 150px);
    line-height: 0.84;
    letter-spacing: -0.065em;
    font-weight: 400;
}

.ibc-hero h1 span {
    display: block;
}

.ibc-hero h1 span:last-child {
    margin-left: 13%;
    font-style: italic;
}

.ibc-hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
}

.ibc-hero-bottom p {
    max-width: 480px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

.ibc-hero-bottom a {
    min-width: 245px;
    padding: 18px 0;
    border-bottom: 1px solid var(--black);
    color: var(--black);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.15em;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: opacity 0.3s ease;
}

.ibc-hero-bottom a:hover {
    opacity: 0.55;
}

.ibc-hero-bottom a span {
    font-size: 20px;
    line-height: 1;
}

.ibc-form-section {
    padding: 150px 0 160px;
    background: var(--white);
}

.ibc-form-section .ibc-wrap {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(550px, 1.25fr);
    gap: 11vw;
    align-items: start;
}

.ibc-form-heading {
    position: sticky;
    top: 130px;
}

.ibc-form-heading h2 {
    margin: 28px 0 34px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(55px, 5.6vw, 88px);
    line-height: 0.93;
    letter-spacing: -0.055em;
    font-weight: 400;
}

.ibc-form-heading > p:last-child {
    max-width: 380px;
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #57534f;
}

.ibc-form {
    width: 100%;
}

.ibc-topic {
    margin: 0 0 75px;
    padding: 0;
    border: 0;
}

.ibc-topic legend {
    width: 100%;
    margin: 0 0 18px;
    padding: 0;
    font-size: 10px;
    letter-spacing: 0.17em;
    font-weight: 600;
}

.ibc-topic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--black);
    border-left: 1px solid var(--black);
}

.ibc-topic-grid label {
    position: relative;
    cursor: pointer;
    margin: 0;
}

.ibc-topic-grid input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ibc-topic-grid span {
    min-height: 92px;
    padding: 20px 24px;
    border-right: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.12em;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
}

.ibc-topic-grid label:hover span {
    background: #ebe7e1;
}

.ibc-topic-grid input:checked + span {
    background: var(--black);
    color: var(--white);
}

.ibc-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 50px;
}

.ibc-field {
    display: block;
    margin: 0;
}

.ibc-field-full {
    grid-column: 1 / -1;
}

.ibc-field > span {
    display: block;
    margin-bottom: 13px;
    font-size: 10px;
    letter-spacing: 0.16em;
    font-weight: 600;
}

.ibc-field input,
.ibc-field textarea {
    display: block;
    width: 100%;
    margin: 0;
    padding: 14px 0 16px;
    border: 0;
    border-bottom: 1px solid #aaa59f;
    border-radius: 0;
    outline: none;
    background: transparent;
    color: var(--black);
    font-family: inherit;
    font-size: 17px;
    line-height: 1.5;
    box-shadow: none;
    transition: border-color 0.3s ease;
}

.ibc-field textarea {
    min-height: 125px;
    resize: vertical;
}

.ibc-field input::placeholder,
.ibc-field textarea::placeholder {
    color: #a09b95;
    opacity: 1;
}

.ibc-field input:focus,
.ibc-field textarea:focus {
    border-bottom-color: var(--black);
}

.ibc-measurements {
    margin-top: 65px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.ibc-measurements p {
    margin: 0 0 6px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    line-height: 1.2;
}

.ibc-measurements div > span {
    display: block;
    font-size: 12px;
    line-height: 1.6;
    color: #706b65;
}

.ibc-measurements a {
    flex: 0 0 auto;
    color: var(--black);
    text-decoration: none;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0.13em;
    font-weight: 600;
    white-space: nowrap;
}

.ibc-measurements a span {
    margin-left: 10px;
    font-size: 17px;
}

.ibc-submit {
    width: 100%;
    margin-top: 65px;
    padding: 25px 0;
    border: 0;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    border-radius: 0;
    background: transparent;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: inherit;
}

.ibc-submit > span:first-child {
    font-size: 12px;
    letter-spacing: 0.18em;
    font-weight: 600;
}

.ibc-submit-circle {
    width: 54px;
    height: 54px;
    display: block;
    transition: transform 0.35s ease;
}

.ibc-submit-circle svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1;
}

.ibc-submit:hover .ibc-submit-circle {
    transform: translateX(7px);
}

.ibc-faq {
    padding: 145px 0 160px;
    background: var(--cream);
}

.ibc-faq-heading {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 90px;
}

.ibc-faq-heading h2 {
    max-width: 780px;
    margin: -8px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(55px, 5.7vw, 90px);
    line-height: 0.95;
    letter-spacing: -0.055em;
    font-weight: 400;
}

.ibc-faq-list {
    border-top: 1px solid var(--black);
}

.ibc-faq-list details {
    border-bottom: 1px solid var(--black);
}

.ibc-faq-list summary {
    min-height: 115px;
    display: grid;
    grid-template-columns: 90px 1fr 38px;
    gap: 20px;
    align-items: center;
    cursor: pointer;
    list-style: none;
}

.ibc-faq-list summary::-webkit-details-marker {
    display: none;
}

.ibc-faq-number {
    font-size: 10px;
    letter-spacing: 0.14em;
    color: #77716b;
}

.ibc-faq-list summary strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(22px, 2vw, 31px);
    line-height: 1.2;
    font-weight: 400;
}

.ibc-faq-list summary i {
    position: relative;
    width: 32px;
    height: 32px;
    display: block;
}

.ibc-faq-list summary i::before,
.ibc-faq-list summary i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 1px;
    background: var(--black);
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.ibc-faq-list summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.ibc-faq-list details[open] summary i::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0);
}

.ibc-faq-list details > div {
    max-width: 720px;
    margin-left: 110px;
    padding: 0 0 42px;
}

.ibc-faq-list details > div p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #59544f;
}

.ibc-faq-list details > div a {
    display: inline-block;
    margin-top: 20px;
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid var(--black);
    padding-bottom: 4px;
    font-size: 10px;
    letter-spacing: 0.14em;
    font-weight: 600;
}

.ibc-location {
    min-height: 680px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
}

.ibc-location-info {
    padding: 105px max(40px, calc((100vw - 1380px) / 2));
    padding-right: 7vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ibc-location-info h2 {
    margin: 30px 0 50px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(60px, 6vw, 96px);
    line-height: 0.9;
    letter-spacing: -0.06em;
    font-weight: 400;
}

.ibc-address {
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.ibc-address > span {
    display: block;
    margin-bottom: 18px;
    font-size: 9px;
    letter-spacing: 0.17em;
    font-weight: 600;
}

.ibc-address p {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    line-height: 1.42;
}

.ibc-map-link {
    margin-top: 42px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--black);
    color: var(--black);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    font-size: 10px;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.ibc-map-icon {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

.ibc-map-link:hover .ibc-map-icon {
    transform: translateY(-3px);
}

.ibc-map {
    min-height: 680px;
    background: #ddd9d3;
    overflow: hidden;
}

.ibc-map iframe {
    width: 100%;
    height: 100%;
    min-height: 680px;
    border: 0;
    display: block;
    filter: grayscale(100%) contrast(0.92);
    transition: filter 0.5s ease;
}

.ibc-map:hover iframe {
    filter: grayscale(35%) contrast(0.95);
}

.ibc-instagram {
    padding: 120px 0;
    background: var(--black);
    color: var(--white);
}

.ibc-instagram .ibc-kicker {
    color: rgba(255, 255, 255, 0.62);
}

.ibc-instagram-row {
    margin-top: 55px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 70px;
}

.ibc-instagram h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(55px, 6.2vw, 100px);
    line-height: 0.9;
    letter-spacing: -0.055em;
    font-weight: 400;
}

.ibc-instagram-row > div > p {
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    letter-spacing: 0.08em;
}

.ibc-instagram-row > a {
    flex: 0 0 auto;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 24px;
}

.ibc-instagram-row > a > span {
    font-size: 10px;
    letter-spacing: 0.17em;
    font-weight: 600;
}

.ibc-instagram-row svg {
    width: 68px;
    height: 68px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1;
    transition: transform 0.35s ease;
}

.ibc-instagram-row a:hover svg {
    transform: rotate(8deg) scale(1.06);
}

.ibc-ending {
    padding: 155px 0 145px;
    background: var(--cream);
    text-align: center;
}

.ibc-ending p {
    margin: 0 0 55px;
    font-size: 10px;
    letter-spacing: 0.24em;
    font-weight: 600;
}

.ibc-ending h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(85px, 11vw, 170px);
    line-height: 0.77;
    letter-spacing: -0.065em;
    font-weight: 400;
}

.ibc-ending > .ibc-wrap > span {
    display: block;
    margin-top: 65px;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: #716c66;
}

@media (max-width: 1024px) {
    .ibc-wrap {
        width: min(calc(100% - 50px), 1380px);
    }

    .ibc-form-section .ibc-wrap {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .ibc-form-heading {
        position: static;
    }

    .ibc-form-heading > p:last-child {
        max-width: 520px;
    }

    .ibc-location-info {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .ibc-wrap {
        width: calc(100% - 36px);
    }

    .ibc-kicker {
        font-size: 9px;
        line-height: 1.4;
        letter-spacing: 0.16em;
    }

    .ibc-hero {
        min-height: calc(100svh - 60px);
    }

    .ibc-hero .ibc-wrap {
        min-height: calc(100svh - 60px);
        padding-top: 65px;
        padding-bottom: 35px;
    }

    .ibc-hero h1 {
        margin: auto 0;
        font-size: clamp(64px, 20vw, 94px);
        line-height: 0.83;
        letter-spacing: -0.07em;
    }

    .ibc-hero h1 span:last-child {
        margin-left: 8%;
    }

    .ibc-hero-bottom {
        display: block;
    }

    .ibc-hero-bottom p {
        max-width: 315px;
        font-size: 13px;
        line-height: 1.7;
    }

    .ibc-hero-bottom a {
        width: 100%;
        min-width: 0;
        margin-top: 34px;
        padding: 15px 0;
        font-size: 9px;
    }

    .ibc-form-section {
        padding: 95px 0 105px;
    }

    .ibc-form-section .ibc-wrap {
        display: block;
    }

    .ibc-form-heading {
        margin-bottom: 62px;
    }

    .ibc-form-heading h2 {
        margin: 24px 0 28px;
        font-size: clamp(51px, 15vw, 72px);
        line-height: 0.91;
    }

    .ibc-form-heading > p:last-child {
        max-width: 315px;
        font-size: 13px;
        line-height: 1.75;
    }

    .ibc-topic {
        margin-bottom: 58px;
    }

    .ibc-topic legend {
        margin-bottom: 16px;
        font-size: 9px;
    }

    .ibc-topic-grid span {
        min-height: 78px;
        padding: 15px 10px;
        font-size: 8px;
        line-height: 1.4;
        letter-spacing: 0.1em;
    }

    .ibc-fields {
        grid-template-columns: 1fr;
        row-gap: 42px;
    }

    .ibc-field-full {
        grid-column: auto;
    }

    .ibc-field > span {
        margin-bottom: 10px;
        font-size: 9px;
    }

    .ibc-field input,
    .ibc-field textarea {
        padding: 13px 0 15px;
        font-size: 16px;
    }

    .ibc-field textarea {
        min-height: 135px;
    }

    .ibc-measurements {
        margin-top: 55px;
        padding: 28px 0;
        display: block;
    }

    .ibc-measurements p {
        margin-bottom: 9px;
        font-size: 20px;
        line-height: 1.25;
    }

    .ibc-measurements div > span {
        max-width: 300px;
        font-size: 11px;
        line-height: 1.65;
    }

    .ibc-measurements a {
        display: inline-flex;
        align-items: center;
        margin-top: 25px;
        font-size: 9px;
    }

    .ibc-submit {
        margin-top: 48px;
        padding: 20px 0;
    }

    .ibc-submit > span:first-child {
        font-size: 10px;
    }

    .ibc-submit-circle {
        width: 47px;
        height: 47px;
    }

    .ibc-faq {
        padding: 95px 0 105px;
    }

    .ibc-faq-heading {
        display: block;
        margin-bottom: 58px;
    }

    .ibc-faq-heading h2 {
        margin: 24px 0 0;
        max-width: 335px;
        font-size: clamp(48px, 14vw, 68px);
        line-height: 0.93;
    }

    .ibc-faq-list summary {
        min-height: 100px;
        grid-template-columns: 38px 1fr 28px;
        gap: 12px;
    }

    .ibc-faq-number {
        font-size: 8px;
    }

    .ibc-faq-list summary strong {
        font-size: 19px;
        line-height: 1.3;
    }

    .ibc-faq-list summary i {
        width: 26px;
        height: 26px;
    }

    .ibc-faq-list summary i::before,
    .ibc-faq-list summary i::after {
        width: 15px;
    }

    .ibc-faq-list details > div {
        max-width: none;
        margin-left: 50px;
        padding: 0 30px 32px 0;
    }

    .ibc-faq-list details > div p {
        font-size: 12px;
        line-height: 1.8;
    }

    .ibc-location {
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .ibc-location-info {
        padding: 88px 18px 65px;
        display: block;
    }

    .ibc-location-info h2 {
        margin: 25px 0 48px;
        font-size: clamp(54px, 15vw, 72px);
        line-height: 0.92;
        letter-spacing: -0.055em;
    }

    .ibc-address {
        padding-top: 22px;
    }

    .ibc-address > span {
        margin-bottom: 20px;
        font-size: 9px;
    }

    .ibc-address p {
        font-size: 20px;
        line-height: 1.5;
    }

    .ibc-map-link {
        margin-top: 40px;
        padding: 17px 0;
        font-size: 9px;
        line-height: 1.4;
    }

    .ibc-map-icon {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .ibc-map {
        min-height: 430px;
    }

    .ibc-map iframe {
        min-height: 430px;
    }

    .ibc-instagram {
        padding: 95px 0 100px;
    }

    .ibc-instagram-row {
        margin-top: 42px;
        display: block;
    }

    .ibc-instagram h2 {
        max-width: 100%;
        font-size: clamp(49px, 14.3vw, 68px);
        line-height: 0.94;
        letter-spacing: -0.055em;
    }

    .ibc-instagram-row > div > p {
        margin-top: 26px;
        font-size: 11px;
    }

    .ibc-instagram-row > a {
        margin-top: 58px;
        padding-top: 25px;
        border-top: 1px solid var(--line-light);
        justify-content: space-between;
    }

    .ibc-instagram-row svg {
        width: 55px;
        height: 55px;
    }

    .ibc-ending {
        padding: 115px 0 105px;
    }

    .ibc-ending p {
        margin-bottom: 45px;
        font-size: 8px;
    }

    .ibc-ending h2 {
        font-size: clamp(70px, 22vw, 100px);
        line-height: 0.82;
        letter-spacing: -0.06em;
    }

    .ibc-ending > .ibc-wrap > span {
        margin-top: 55px;
        font-size: 8px;
        line-height: 1.5;
    }
}

@media (max-width: 390px) {
    .ibc-hero h1 {
        font-size: 64px;
    }

    .ibc-form-heading h2,
    .ibc-faq-heading h2 {
        font-size: 49px;
    }

    .ibc-topic-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ibc-topic-grid span {
        min-height: 72px;
        font-size: 7.5px;
    }

    .ibc-location-info h2 {
        font-size: 55px;
    }

    .ibc-instagram h2 {
        font-size: 49px;
    }

    .ibc-ending h2 {
        font-size: 76px;
    }
}