*,
*:before,
*:after{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root{
    --clr-red: #AD1835;
    --clr-text: #58585A;
    --clr-text-lt: #6f6f6f;
    --clr-white: #FFFFFF;
    --trns-default: all 150ms linear;
}

body{
	color: var(--clr-text);
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 16px;
    padding-top: clamp(1.5rem, 0.05rem + 7.25vw, 8.75rem);
	background-color: #fffdf4; 
}

img{
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

h1,h2,h3,h4,h5,h6,
.font-titillium {
    font-family: "Titillium Web", sans-serif;
	
}

.red{
    color: var(--clr-red);
}

.text-balance{
    text-wrap: balance;
}

a:not(.button){
    text-decoration-color: transparent;
    transition: var(--trns-default);
    &:hover{
        text-decoration-color: inherit;
    }
}

.button{
    background-color: var(--clr-red);
    color: var(--clr-white);
    text-decoration: none;
    padding: .25em 1.5em;
    border-radius: .625em;
    transition: var(--trns-default);
    border: 2px solid var(--clr-red);
    cursor: pointer;
    &.phone{
        font-size: clamp(1.125rem, 1.025rem + 0.5vw, 1.625rem);
    }
    &:hover{
        background-color: var(--clr-white);
        color: var(--clr-red);
    }
}

h1{
    font-size: clamp(1.75rem, 1.225rem + 2.625vw, 4.375rem);    
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 .5em;
}

h2{
    font-size: clamp(1.5rem, 1rem + 2.5vw, 4rem);
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 .25em;
    color: var(--clr-text-lt);
}

h3{
    color: var(--clr-text-lt);
}

p {
    font-size: clamp(1.125rem, 1rem + 0.625vw, 1.75rem);
    line-height: 1.4;
    &:not(:first-of-type){
        margin-top: 1.5rem;
    }
}

.container{
    /* width: min(calc(100% - 1.875rem), 61.875rem); */
    width: min(calc(100% - 1.875rem), 67.5rem);
    margin-inline: auto;
}

.columns{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.header{
    margin-bottom: clamp(2rem, 0.425rem + 7.875vw, 8.875rem);
    .container{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }
}

.logo{
	width: 24.625rem;
    max-width: 24.625rem;
	height: auto;
}

.gallery{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-block: clamp(1.5rem, 0.2rem + 6.5vw, 8rem);
    img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.content .columns{
    margin-block: clamp(1.5rem, 1rem + 2.5vw, 4rem);
    gap: 1.5rem 4rem;
    .column{
        flex: 1 1 calc(50% - 4rem);
    }
}

blockquote{
    font-size: clamp(1.5rem, 1.05rem + 2.25vw, 3.75rem);;
    font-weight: 600;
    font-style: italic;
    color: var(--clr-text-lt);
}

.container:has(.faq){
    margin-block: clamp(1.5rem, 1rem + 2.5vw, 4rem);
    h2{
        font-size: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);
        margin-bottom: .5em;
    }
}

.faq-item{
    margin-bottom: 1.25rem;
    label{
        display: block;
        font-size: clamp(1.125rem, 1.025rem + 0.5vw, 1.625rem);
        padding-block: .5em;
    }
    input{
        display: none;
    }
    .faq-answer{
        display: none;
        padding: 1em 1.5em 0 1.5em;
    }
    &:has(input:checked){
        .faq-answer{
            display: block;
        }
    }
}

.contact-us{
    text-align: right;
    font-weight: 600;
    margin-right: 1.5rem;
}

.footer{
    background: var(--clr-red);
    color: var(--clr-white);
    padding: 5rem 0 6.25rem;
    .container{
        width: min(calc(100% - 1.875rem), 84.375rem);
    }
    a{
        color: var(--clr-white);
    }
    h3{
        font-size: clamp(1.125rem, 1rem + 0.625vw, 1.75rem);
        color: var(--clr-white);
        margin: 0 0 1em;
    }
    .line{
        font-size: clamp(1.125rem, 1rem + 0.625vw, 1.75rem);
    }
}
