:root {
    --color-black: #161616;
    --color-white: #F8F8F8;
    --color-grey-1: #EFEFEF;
    --color-grey-2: #DADADA;
    --color-grey-3: #C5C5C5;
    --color-grey-4: #7C7C7C;
    --color-brown: #AC8E74;

    --font-size-normal: 1rem;
    --font-size-sml: .875rem;
    --font-size-bigger: 1.125rem;
    --font-size-h1: clamp(1.75rem, 3vw + 1.1rem, 2.7rem);
    --font-size-h2: clamp(1.5rem, 1vw + 1.05rem, 2.25rem);
    --font-size-h3: clamp(1.25rem, 1vw + 0.3rem, 1.5rem);
    --font-size-h4: clamp(1rem, 1vw + 0.25rem, 1.125rem);

    --page-width: 75rem;
    --compact-width: 50rem;
    --section-padding-x: 1.25rem;
    --section-padding-y-normal: 3.75rem;
    --section-padding-y-narrow: 0.625rem;
    --space-inner-content: 1.5rem;
    --space-xs: 1rem;
    --space-sml: 2.25rem;
    --space-normal: 3.125rem;
}


body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    color: var(--color-black);
    background-color: var(--color-white);
}

h1 {
    font-size: var(--font-size-h1);
    font-weight: 800;
    line-height: 1.16;
}

h2 {
    font-size: var(--font-size-h2);
    font-weight: 800;
    line-height: 1.16;
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: 600;
    line-height: 1.2;
}

p {
    line-height: 1.6;
}

h4 {
    font-size: var(--font-size-h4);
    font-weight: 500;
    line-height: 1.6;
}

button {
    cursor: pointer;
}

section:first-of-type {
    padding-top: 4.6rem;
}

footer {
    border-top: 1px solid var(--color-grey-2);
}



/** Utilities **/
.rotate-15 {
    transform: rotate(15deg);
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-white {
    color: var(--color-white);
}

.text-brown {
    color: var(--color-brown);
}

.text-black {
    color: var(--color-black);
}

.text-red {
    color: red;
}

.text-upper {
    text-transform: uppercase;
}

.font-size-normal {
    font-size: var(--font-size-normal);
}

.font-size-h3 {
    font-size: var(--font-size-h3);
}

.font-size-bigger {
    font-size: var(--font-size-bigger);
}

.text-grey4 {
    color: var(--color-grey-4);
}

.no-break {
    white-space: nowrap;
}

.grid-center {
    display: grid;
    place-items: center;
}

.border-top {
    border-top: 1px solid var(--color-grey-2);
}

.pt-0 {
    padding-top: 0px !important;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.full-width {
    width: 100% !important;
}

/** Components **/
.page-section {}

.breadcrumb {
    color: var(--color-grey-3);
    font-size: var(--font-size-sml);
}

.hero-breadcrumbs {
    background-color: var(--color-white);
}

.page-section__wrapper {
    width: calc(100% - 2*var(--section-padding-x));
    max-width: var(--page-width);
    padding: var(--section-padding-y-normal) var(--section-padding-x);
    margin-left: auto;
    margin-right: auto;
}

.page-section--grey1 {
    background-color: var(--color-grey-1);
}

.page-section__wrapper--narrow {
    padding: var(--section-padding-y-narrow) var(--section-padding-x);
}


.page-section__wrapper--breadcrumbs {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.page-section__wrapper--compact {
    max-width: var(--compact-width);
}

.page-section--black {
    background-color: var(--color-black);
}

.page-section__header {
    padding-bottom: 0.375rem;
}

.page-section__description {
    margin-top: var(--section-padding-y-narrow);
    color: var(--color-grey-4);
}

.page-section__content {
    padding: var(--space-inner-content) 0;
}

.page-section__footer {
    padding-top: 0.375rem;
}

.page-section__col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.heading--compact {
    max-width: 40rem;
}

.hero-section {
    position: relative;
    height: calc(60vh - 4.6rem);
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-section__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.above-title {
    font-size: var(--font-size-normal);
    text-transform: uppercase;
    color: var(--color-brown);
    padding-bottom: calc(var(--space-xs) / 2);
}

.hero-section__title {
    z-index: 10;
    max-width: 65rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list__item {
    display: flex;
    gap: 0.9rem;
}

.feature-list__icon {
    min-width: 48px;
}


.feature-list__text {
    color: var(--color-grey-4);
}

.feature-list__content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.popular-category__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.popular-category__item {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 250px;
    overflow: hidden;
}

.category__heading {
    color: var(--color-black);
}

.popular-category__image {
    background-size: cover;
    min-height: 250px;
    max-width: 350px;
}

.popular-category__image--desktop-top {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.popular-category__name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 1rem;
}

.inspiration__image {
    aspect-ratio: 3.8/4;
    background-size: cover;
}

.inspiration__item {
    position: relative;
}

.inspiration__heading {
    position: absolute;
    bottom: var(--space-inner-content);
    left: var(--space-inner-content);
    color: var(--color-white);
}

.footer-contact__header {
    font-weight: 600;
    margin-bottom: var(--space-xs);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.footer-contact__info {
    color: var(--color-grey-4);
    display: flex;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    flex-direction: column;
    gap: 0.375rem;
}

.footer-contact__info p:last-child {
    padding-bottom: var(--space-inner-content);
}

.footer-contact.is-visible .footer-contact__info {
    max-height: 500px;

}

.expand-contact__image {
    transition: transform 0.3s ease-in-out;
}

.footer-contact.is-visible .expand-contact__image {
    transform: rotate(180deg);
}

.footer-socials {
    display: flex;
    justify-content: space-between;
}

.footer-socials__info {
    display: flex;
    flex-direction: row;
    gap: var(--space-inner-content);
}

.copyright-section__col,
.copyright-section__col a {
    color: var(--color-grey-4);
}

.copyright-section__wrapper {
    max-width: var(--page-width);
    margin-left: auto;
    margin-right: auto;
    padding: 1.25rem var(--section-padding-x);
}

.copyright-section__col {
    display: flex;
    gap: var(--space-sml);
    justify-content: center;
}

.footer-contact {
    border-bottom: 1px solid var(--color-grey-2);
}

.btn {
    font-family: 'Raleway', sans-serif;
    color: var(--color-brown);
    border: 1px solid var(--color-brown);
    padding: 0.875rem 1.75rem;
    display: inline-block;
    background-color: var(--color-white);
    font-size: 1rem;
}

.btn--white {
    color: var(--color-white);
    border: 1px solid var(--color-white);
    background-color: transparent;
}

.btn--full {
    width: 100%;
    text-align: center;
}


.btn--filled {
    background-color: var(--color-brown);
    color: var(--color-white);
}

.btn--full\@xs {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.row {
    display: flex;
    flex-direction: column;
    gap: 1.9rem;
}

.row--reverse {
    flex-direction: column-reverse;
}

.col__image {
    align-items: center;
}

.desktop-only {
    display: none !important;
}

.contact-form__ssubject {
    display: none;
}

.flash {
    width: 20rem;
    display: block;
    margin-left: -10rem;
    padding: 1.5rem 3rem;
    position: fixed;
    z-index: 9;
    left: 50%;
    top: 30%;
    text-align: center;
    font-size: 0.875rem;
    color: #000000;
    border: 1px solid #000000;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    background: #FFFFFF;
}

a.btn, input.btn {
    cursor: pointer;
}

/*sm*/
@media (min-width:36em) {}

/*md*/
@media (min-width:48em) {
    .hero-section {
        height: calc(100vh - 4.6rem);
    }

    .hero-breadcrumbs {
        background-color: transparent;
    }

    .btn--full\@xs {
        width: auto;
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }

    .popular-category__item {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-list {
        place-items: center;
    }

    .feature-list__item {
        flex-direction: column;
        text-align: center;
        max-width: 12.5rem;
    }

    .feature-list__item--wide\@md {
        max-width: 21rem;
    }

    .popular-category__list {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
    }

    .popular-category__name {
        justify-content: end;
        padding-bottom: 1rem;
    }

    .row {
        display: grid;
    }

    .col-5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .col-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .col-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .col-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .text-center\@md {
        text-align: center;
    }

    .mx-auto\@md {
        margin-left: auto;
        margin-right: auto;
    }

    .popular-category__item--desktop-rows {
        grid-template-rows: 80% 20%;
        grid-template-columns: 1fr;
    }

    .popular-category__image--desktop-top {
        order: -1;
        min-height: auto;
        background-position: center;
    }

    .header-col__right\@md {
        display: flex;
        justify-content: end;
        align-items: start;
    }

    .copyright-section__col:first-child {
        justify-content: start;
    }

    .copyright-section__col:last-child {
        flex-direction: row;
        justify-content: end;
        align-items: baseline;
    }

    .footer-contact__header {
        cursor: auto;
    }

    .footer-contact__info {
        max-height: 500px;
    }

    .footer-socials {
        justify-content: start;
        flex-direction: column;
    }

    .footer-contact {
        padding-bottom: 0px;
        border-bottom: 0;
    }

    .expand-contact {
        display: none;
    }

    .desktop-only {
        display: block !important;
    }

    .desktop-only--grid {
        display: grid !important;
    }

    .desktop-only--flex {
        display: flex !important;
    }

    .mobile-only {
        display: none !important;
    }
}

/*lg*/
@media (min-width:62em) {}

/*xl*/
@media (min-width:75em) {}