/* --------------------------------------------------------------------
   GOOGLE FONT — DM Sans
   -------------------------------------------------------------------- */
:root {
    --bs-font-sans-serif: "DM Sans", system-ui, -apple-system, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans",
        sans-serif;
    --bs-body-font-family: var(--bs-font-sans-serif);
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

/* --------------------------------------------------------------------
   Primary color - Bootstrap override
   -------------------------------------------------------------------- */

:root {
    --default-dark-color: #181717;
    --bs-primary: #5e2028;
    --bs-primary-rgb: 94, 32, 40;
    --bs-link-color: var(--bs-primary);
    --bs-link-color-rgb: var(--bs-primary-rgb);
    --bs-link-hover-color: color-mix(in srgb, var(--bs-primary) 85%, #000);
    --bs-link-hover-color-rgb: 113, 61, 68;
    --bs-focus-ring-color: rgba(var(--bs-primary-rgb), 0.25);
    --bs-primary-text-emphasis: color-mix(in srgb, var(--bs-primary) 55%, #000);
    --bs-primary-bg-subtle: color-mix(in srgb, var(--bs-primary) 15%, #fff);
    --bs-primary-border-subtle: color-mix(in srgb, var(--bs-primary) 35%, #fff);
}

/* --------------------------------------------------------------------
   Links - Bootstrap override
   -------------------------------------------------------------------- */

a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    text-decoration: underline;
}
a:hover {
    --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

a.link-primary {
    color: var(--bs-primary);
}
a.link-reset:hover,
.list-nav li a:hover {
    color: var(--bs-primary);
}

/* --------------------------------------------------------------------
   Navbar - Bootstrap override
   -------------------------------------------------------------------- */

.navbar {
    --bs-navbar-hover-color: var(--bs-primary);
    --bs-navbar-active-color: var(--bs-primary);
    --bs-navbar-brand-color: var(--bs-primary);
    --bs-navbar-brand-hover-color: var(--bs-primary);
}

/* --------------------------------------------------------------------
   Buttons - Bootstrap override
   -------------------------------------------------------------------- */
.btn {
    --bs-btn-border-radius: 0;
    --bs-btn-padding-x: 1.5rem;
}

.btn-primary {
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-bg: color-mix(in srgb, var(--bs-primary) 90%, #fff);
    --bs-btn-hover-border-color: color-mix(
        in srgb,
        var(--bs-primary) 85%,
        #fff
    );
    --bs-btn-active-bg: color-mix(in srgb, var(--bs-primary) 80%, #fff);
    --bs-btn-active-border-color: color-mix(
        in srgb,
        var(--bs-primary) 75%,
        #fff
    );

    --bs-btn-disabled-bg: var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn-primary:hover {
    color: #fff;
}

.btn-outline-primary {
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);

    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-border-color: var(--bs-primary);
}

/* --------------------------------------------------------------------
   Navs / Tabs / Pills - Bootstrap override
   -------------------------------------------------------------------- */

.nav-pills {
    --bs-nav-pills-link-active-bg: var(--bs-primary);
}
.nav-tabs {
    --bs-nav-tabs-link-active-border-color: var(--bs-primary);
}

/* --------------------------------------------------------------------
   Pagination - Bootstrap override
   -------------------------------------------------------------------- */

.pagination {
    --bs-pagination-active-bg: var(--bs-primary);
    --bs-pagination-active-border-color: var(--bs-primary);
    --bs-pagination-focus-color: var(--bs-primary);
}

/* --------------------------------------------------------------------
   Dropdowns - Bootstrap override
   -------------------------------------------------------------------- */

.dropdown-menu {
    --bs-dropdown-link-active-bg: var(--bs-primary);
    --bs-dropdown-link-active-color: #fff;
}

/* --------------------------------------------------------------------
   List group - Bootstrap override
   -------------------------------------------------------------------- */

.list-group {
    --bs-list-group-active-bg: var(--bs-primary);
    --bs-list-group-active-border-color: var(--bs-primary);
}

/* --------------------------------------------------------------------
   Forms & focus rings - Bootstrap override
   -------------------------------------------------------------------- */

.form-check-input {
    --bs-form-check-input-checked-bg-color: var(--bs-primary);
    --bs-form-check-input-checked-border-color: var(--bs-primary);
}
.form-range {
    --bs-form-range-thumb-bg: var(--bs-primary);
}
.form-control {
    --bs-focus-ring-color: rgba(var(--bs-primary-rgb), 0.25);
}

/* --------------------------------------------------------------------
   Progress / Accordion - Bootstrap override
   -------------------------------------------------------------------- */

.progress {
    --bs-progress-bar-bg: var(--bs-primary);
}

.accordion {
    --bs-accordion-btn-active-color: var(--bs-primary);
    --bs-accordion-btn-active-bg: color-mix(
        in srgb,
        var(--bs-primary) 12%,
        transparent
    );
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem
        rgba(var(--bs-primary-rgb), 0.25);
}

/* --------------------------------------------------------------------
   Close button - Bootstrap override
   -------------------------------------------------------------------- */

.btn-close {
    --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

/* --------------------------------------------------------------------
   Global page loader (only between header and footer)
-------------------------------------------------------------------- */
.page-loader {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 100vh;
    z-index: 500;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.25s ease-out;
}

.page-loader--hidden {
    opacity: 0;
    pointer-events: none;
}

.page-loader__spinner {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: 0.375rem solid rgba(0, 0, 0, 0.15);
    border-top-color: var(--bs-primary);
    animation: page-loader-spin 0.6s linear infinite;
}

@keyframes page-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

/* --------------------------------------------------------------------
   Top bar
-------------------------------------------------------------------- */
.top-bar {
    background-color: #f5f5f7;
    z-index: 501;
}

/* --------------------------------------------------------------------
   Header
-------------------------------------------------------------------- */
.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #fff;
}

/* ----- Header height ----- */
:root {
    --masthead-h: 110px;
}
@media (max-width: 991.98px) {
    :root {
        --masthead-h: 100px;
    }
}

/* ----- Navbar ----- */
.navbar-nav {
    gap: 0.5rem;
}

.navbar-nav .nav-link.nav-link--active {
    color: var(--bs-primary);
    -webkit-text-stroke: 0.5px var(--bs-primary);
    background-color: #f7f7f9;
}

/* --------------------------------------------------------------------
   Hero section
-------------------------------------------------------------------- */
.home-hero {
    position: relative;
    display: grid;
    align-items: center;
    min-block-size: calc(100vh - var(--masthead-h));
    overflow: hidden;
}

.home-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 33.333%;
}

.home-hero__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to left,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.33) 56.73%,
        rgba(0, 0, 0, 0.47) 74.52%,
        rgba(0, 0, 0, 0.65) 100%
    );
}

.home-hero__title {
    line-height: 1.05;
    font-weight: 800;
    font-size: clamp(2.25rem, 6vw, 4.75rem);
    letter-spacing: 0.01em;
}

.home-hero__mark {
    position: absolute;
    right: 5vw;
    bottom: 6vh;
    opacity: 0.33;
    filter: grayscale(1);
}
.home-hero__mark svg {
    width: min(32vw, 224px);
    height: auto;
}

/* --------------------------------------------------------------------
   Footer
-------------------------------------------------------------------- */
.site-footer {
    container-type: inline-size;
    background: var(--bs-primary);
    color: #fff;
    overflow: clip;
}

.footer-watermark {
    position: relative;
}

.footer-watermark span {
    display: block;
    transform-origin: top center;
    transform: scaleY(1.5);
    font-size: clamp(2.5rem, 12cqi, 16rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    opacity: 0.9;
    color: #fff;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    text-align: center;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", system-ui,
        sans-serif;
}

.icon-lg {
    width: 1.75rem;
    height: 1.75rem;
}

/* --------------------------------------------------------------------
   Explore the Looks
-------------------------------------------------------------------- */
.explore-looks__title {
    font-weight: 700;
    line-height: 1.1;
    font-size: clamp(2rem, 2.75vw, 2.5rem);
}

.explore-looks-item {
    aspect-ratio: 16 / 9;
}

@media (min-width: 576.98px) {
    .explore-looks-item {
        aspect-ratio: 1 / 1;
    }
}

@media (min-width: 767.98px) {
    .explore-looks-item {
        aspect-ratio: 4 / 3;
    }
}

@media (min-width: 991.98px) {
    .explore-looks-item {
        aspect-ratio: 3 / 4;
    }
}

@media (min-width: 1599.98px) {
    .explore-looks-item {
        aspect-ratio: 9 / 16;
    }
}

.explore-looks-item::before {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 992px) {
    .explore-looks-item::before {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
    }
}

.explore-looks-item img {
    transition: transform 0.22s ease-out;
}

.explore-looks-item:hover img,
.explore-looks-item:focus-visible img {
    transform: scale(1.04);
}

.explore-looks__label {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.explore-looks__more {
    font-size: 1rem;
}

.explore-looks__more:hover {
    text-decoration: underline;
}

/* Grayscale variant for Explore the Looks (e.g. About page) */
.explore-looks--grayscale .explore-looks-item img {
    filter: grayscale(100%) !important;
}

/* Optional – back to color on hover/focus if you want */
.explore-looks--grayscale .explore-looks-item:hover img,
.explore-looks--grayscale .explore-looks-item:focus-visible img {
    filter: none;
}

/* --------------------------------------------------------------------
   Partners banner
-------------------------------------------------------------------- */
.partners-banner {
    background-color: #4b161e;
}

.partners-banner__logo svg {
    display: block;
    max-width: 220px;
    height: auto;
    opacity: 0.9;
}

@media (max-width: 575.98px) {
    .partners-banner__logo svg {
        max-width: 180px;
    }
}

/* --------------------------------------------------------------------
   Love the style section
-------------------------------------------------------------------- */
@media (max-width: 1399.98px) {
    .love-style .container {
        max-width: 100%;
    }
}

.love-style__copy {
    max-width: 32rem;
    margin: 0 auto;
}

.love-style__title {
    color: var(--bs-primary);
    font-weight: 700;
    line-height: 1.1;
    font-size: clamp(2rem, 3vw, 2.75rem);
}

.love-style__image-wrapper {
    position: relative;
    margin-left: auto;
    height: calc(100vh - calc(var(--masthead-h) * 2));
    max-height: 830px;
    max-width: 720px;
}

.love-style__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

@media (max-width: 991.98px) {
    .love-style__image-wrapper {
        margin-right: auto;
        height: calc(75vh - calc(var(--masthead-h) * 2));
        max-width: 100%;
    }

    .love-style__image {
        object-position: center top;
    }
}

/* --------------------------------------------------------------------
   Masters of Style
-------------------------------------------------------------------- */
.masters-style__title {
    font-weight: 700;
    line-height: 1.1;
    font-size: clamp(2.25rem, 3.75vw, 3.5rem);
}

.masters-style__lead {
    max-width: 34rem;
    margin-inline: auto;
}

.masters-style__image-wrapper {
    margin-top: 3rem;
}

.masters-style__image {
    display: block;
    height: 100%;
    max-height: calc(100vh - calc(var(--masthead-h) * 3));
    margin-inline: auto;
    object-fit: cover;
}

/* --------------------------------------------------------------------
   Gallery section
-------------------------------------------------------------------- */
.gallery-section {
    background-color: #fff;
}

.gallery-hero-title {
    font-weight: 700;
    font-size: clamp(2.25rem, 3.75vw, 3.5rem);
    line-height: 1.1;
}

.gallery-hero-number {
    color: var(--bs-primary);
    font-weight: 700;
    line-height: 0.8;
    font-size: clamp(10rem, 22vw, 24rem);
}

.gallery-copy {
    max-width: 28rem;
    margin-inline: auto;
}

.gallery-grid-wrapper {
    background-color: #fff;
}

.gallery-grid {
    display: flex;
    width: 100%;
    height: calc(100vh - calc(var(--masthead-h) * 3));
}

.gallery-col {
    flex: 1 1 0;
}

.gallery-cell {
    position: relative;
    overflow: hidden;
}

.gallery-cell img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%);
}

.gallery-col--single {
    display: flex;
}
.gallery-col--single .gallery-cell {
    flex: 1 1 auto;
}

.gallery-col .gallery-cell a img {
    transition: transform 0.22s ease-out;
}

.gallery-col .gallery-cell a:hover img {
    transform: scale(1.04);
}

.gallery-col--two-50 {
    display: flex;
    flex-direction: column;
}
.gallery-col--two-50 .gallery-cell {
    flex: 1 0 50%;
}

.gallery-col--40-60 {
    display: flex;
    flex-direction: column;
}
.gallery-col--40-60 .gallery-cell:first-child {
    flex: 0 0 40%;
}
.gallery-col--40-60 .gallery-cell:last-child {
    flex: 0 0 60%;
}

@media (max-width: 991.98px) {
    .gallery-grid {
        flex-direction: column;
        height: auto;
    }

    .gallery-col {
        min-height: 25vh;
    }

    .gallery-col--two-50,
    .gallery-col--40-60 {
        flex-direction: row;
    }

    .gallery-col--two-50 .gallery-cell,
    .gallery-col--40-60 .gallery-cell {
        flex: 1 1 100%;
    }

    .gallery-cell img {
        object-position: top center;
    }
}

/* --------------------------------------------------------------------
   FAQ section (Bootstrap accordion)
-------------------------------------------------------------------- */

.faq-section {
    background-color: #fff;
}

.faq__title {
}

.faq-accordion .accordion-item {
    border-radius: 0;
}

.faq-accordion .accordion-item.border-top {
    border-top: 1px solid #e5e5e5 !important;
}

.faq-accordion .accordion-item.border-bottom {
    border-bottom: 1px solid #e5e5e5 !important;
}

.faq-accordion .accordion-button {
    background-color: transparent;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
    align-items: center;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: transparent;
}

.faq-question-index {
    min-width: 3rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.faq-question-text {
    font-size: clamp(1.25rem, 2.1vw, 1.6rem);
    font-weight: 500;
    color: #181717;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-question-text {
    -webkit-text-stroke: 0.5px #181717;
}

.faq-answer {
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    line-height: 1.7;
    color: #444;
    max-width: 42rem;
    margin-left: 4rem;
}

.faq-accordion .accordion-button::after {
    flex-shrink: 0;
    width: auto;
    height: auto;
    margin-left: 1.5rem;
    background-image: none;
    content: "→";
    font-size: 1rem;
    transform: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: "↑";
}

@media (max-width: 991.98px) {
    .faq-answer {
        margin-left: 3rem;
    }
}

@media (max-width: 575.98px) {
    .faq-question-index {
        min-width: 2.5rem;
    }
}

/* --------------------------------------------------------------------
   About / Pricing
-------------------------------------------------------------------- */

.home-hero--page {
    background-color: #f5f5f7;
}

.home-hero--page .home-hero__overlay {
    background: linear-gradient(
        to right,
        rgba(224, 224, 224, 0.98) 0%,
        rgba(224, 224, 224, 0.95) 35%,
        rgba(224, 224, 224, 0.75) 55%,
        rgba(224, 224, 224, 0) 100%
    );
}

.home-hero--page .home-hero__img {
    filter: grayscale(100%);
    opacity: 0.9;
    object-position: center;
}

.home-hero--page .home-hero__title,
.home-hero--page .home-hero__subtitle,
.home-hero--page .home-hero__body {
    color: #181717;
}

.home-hero--page .home-hero__body {
    font-size: 0.98rem;
    max-width: 30rem;
}

.home-hero--pricing .home-hero__title {
}

.home-hero--about .home-hero__title {
}

.page-hero__link {
    font-size: 0.95rem;
}

/* --------------------------------------------------------------------
   Price list
-------------------------------------------------------------------- */

.price-list-section {
    background-color: #f3f3f3;
}

.price-list__meta {
    letter-spacing: 0.12em;
}

.price-list-card {
    background-color: #fff;
    border-radius: 2px;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.75rem;
    margin-bottom: 0.55rem;
    border-radius: 5px;
    background-color: #f9f9fb;
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);

    /* hover animation */
    transition: background-color 0.125s ease-out;
}

.price-row:hover {
    background-color: #f2f2f7;
}

.price-row--group {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: clamp(0.9rem, 1vw, 1rem);
}

.price-row--group:hover {
    box-shadow: none;
    transform: none;
    background-color: #f3f3f8;
}

.price-row--group:not(:first-child) {
    margin-top: 1.1rem;
}

.price-row__name {
    flex: 1 1 auto;
}

.price-row__price {
    flex: 0 0 auto;
    margin-left: 1rem;
    white-space: nowrap;
    font-weight: 600;
}

/* --------------------------------------------------------------------
   Gallery Swiper (Bridal / Editorial etc.)
-------------------------------------------------------------------- */

.gallery-swiper-section {
    scroll-margin-top: 3rem;
    background-color: #f5f5f7;
}

.gallery-swiper__header {
    padding-inline: 0.5rem;
}

.gallery-swiper__nav .gallery-nav-btn {
    font-size: 1.75rem;
    line-height: 1;
    text-decoration: none;
}

.gallery-swiper__nav .gallery-nav-btn:disabled {
    opacity: 0.35;
}

.gallery-swiper-section .js-gallery-swiper {
    height: calc(100vh - calc(var(--masthead-h) * 3));
}

.gallery-swiper-section .swiper-slide {
    height: 100%;
    display: flex;
}

.gallery-slide {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: transparent;
}

.gallery-slide--single .gallery-slide__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-slide--split {
}

.gallery-split__row {
    width: 100%;
}

.gallery-split__row--top {
    flex: 0 0 50%;
    max-height: 50%;
    padding-bottom: 0.5rem;
}

.gallery-split__row--bottom {
    flex: 0 0 50%;
    max-height: 50%;
    display: flex;
    gap: 1rem;
    padding-top: 0.5rem;
}

.gallery-split__cell {
    flex: 1 1 50%;
}

.gallery-split__row img,
.gallery-split__cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-slide--split {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-swiper__pagination {
    text-align: center;
}

.gallery-swiper__pagination .swiper-pagination-bullet {
    width: 28px;
    height: 5px;
    border-radius: 999px;
    background-color: #d0d0d5;
    opacity: 1;
    margin: 0 4px !important;
}

.gallery-swiper__pagination .swiper-pagination-bullet-active {
    background-color: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .gallery-swiper-section {
        scroll-margin-top: 5rem;
    }

    /* .gallery-swiper-section .js-gallery-swiper {
        height: calc(100vh - calc(var(--masthead-h) * 2));
    } */

    .gallery-split__row--top {
        padding-bottom: 0.375rem;
    }

    .gallery-split__row--bottom {
        gap: 0.75rem;
        padding-top: 0.375rem;
    }
}

/* @media (max-width: 575.98px) {
    .gallery-swiper-section .js-gallery-swiper {
        height: calc(75vh - var(--masthead-h));
    }
} */

.gallery-lightbox {
    display: block;
    height: 100%;
    overflow: hidden;
}

.gallery-slide__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.22s ease-out;
}

.gallery-lightbox:hover .gallery-slide__img,
.gallery-lightbox:focus-visible .gallery-slide__img {
    transform: scale(1.04);
}

/* --------------------------------------------------------------------
   About intro section
-------------------------------------------------------------------- */

.about-intro {
    background-color: #fff;
}

.about-intro__title {
    font-weight: 700;
    line-height: 1.1;
    font-size: clamp(2rem, 2.75vw, 2.5rem);
}

.about-intro__text {
    max-width: 52rem;
    margin-inline: auto;
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.7;
    color: #181717;
}

@media (max-width: 575.98px) {
    .about-intro__title {
        margin-bottom: 1.5rem;
    }

    .about-intro__text {
        padding-inline: 1rem;
    }
}

/* --------------------------------------------------------------------
   Contact page
-------------------------------------------------------------------- */

.contact-page {
    background-color: #f5f5f7;
}

.contact-page .h2 {
    font-weight: 700;
    line-height: 1.1;
    font-size: clamp(2rem, 2.75vw, 2.5rem);
}

.contact-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.contact-card__info {
}

.contact-info-inner {
    margin: 10px;
    padding: 1.75rem 1.55rem;
    border-radius: 10px;
    background-color: #f7f7f9;
}

@media (min-width: 992px) {
    .contact-info-inner {
        padding: 2rem 2rem;
    }
}

.contact-info__title {
    font-weight: 700;
}

.contact-info__item {
    font-size: 0.97rem;
    color: #333;
}

.contact-info__icon {
    width: 1.4rem;
    height: 1.4rem;
    flex: 0 0 auto;
    color: #000;
}

.contact-info__map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    background-color: #e5e5ea;
}

.contact-info__map-wrapper iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.contact-info__map-img {
    display: block;
    width: 100%;
    height: auto;
}

.contact-card__form {
    background-color: #ffffff;
}

.contact-form-inner {
    height: 100%;
    padding: 2rem 1.75rem;
}

.contact-form-inner form {
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .contact-form-inner {
        padding: 2.5rem 2.5rem;
    }
}

.contact-page .d-grid {
    margin-top: auto;
}

.contact-page .field {
    margin-bottom: 1.75rem;
}

.contact-page .form-label {
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: 0.03em;
    color: #888;
    margin-bottom: 0.4rem;
}

.contact-page .form-control {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #d6d6dc;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
    box-shadow: none;
    background-color: transparent;
}

.contact-page .form-control:focus {
    border-color: #b6b6c5;
    box-shadow: none;
}

.contact-page textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-page #contact-send.btn-primary {
    margin-top: auto;
    align-self: flex-end;
}

@media (min-width: 768px) {
    .contact-page .d-grid {
        display: flex !important;
        justify-content: flex-end;
    }
}
