:root{
    /* Palett – justera fritt */
    --cc-header: #D4C2AC;
    --cc-section: #F6F2ED;
    --cc-bg: #FFFFFF;
    --cc-text: #2E2C28;
    --cc-muted: #7A6A57;
    --cc-border: #E8E1D8;
    --cc-primary: #A58C73;
    --cc-primary-hover: #91785E;   /* rekommenderad hover för #A58C73 */
    --cc-ring: rgba(185,164,138,.35);
    --cc-soft: #FAF8F5;
}

    /* Reset lite gran */
    *,*::before,*::after{ box-sizing:border-box; }
    body {
        margin:0; 
        color:var(--cc-text); 
        background:#fff;
        font-family: "Manrope", sans-serif;
    }

    .cs-topper {
        font-size: var(--topperFontSize);
        line-height: 1.2em;
        text-transform: uppercase;
        text-align: inherit;
        letter-spacing: .1em;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 1.5rem;
        display: block;
        font-family: "Manrope", sans-serif;
    }

    .cs-title {
        font-size: var(--headerFontSize);
        font-weight: 700;
        line-height: 1.2em;
        text-align: inherit;
        max-width: 43.75rem;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
        position: relative;
        /* font-family: "Work Sans", sans-serif; */
        font-family: "Libre Baskerville", serif;
    }
    
    .cs-text {
        font-size: var(--bodyFontSize);
        line-height: 1.5em;
        text-align: inherit;
        width: 100%;
        max-width: 40.625rem;
        margin: 0;
        color: var(--bodyTextColor);
        font-family: "Manrope", sans-serif;
        font-weight: 400;
    }

    /* ===========================
            Boka städning
    =========================== */

    .cc-booking {
        background-color: #F0EDE7;     
        padding: var(--sectionPadding);
    }
    .cc-container {
        max-width: 1080px;  
        width: 100%;
        margin-inline: auto;    
    }
    .cc-header { 
        margin-bottom: 1.25rem; 
        margin-top: 60px;
        text-align: center;
    }
    .cc-header .cs-title,
    .cc-header .cs-text {
        margin-left: auto;
        margin-right: auto;
    }
    .cs-title {
        margin-top: 20px;
    }
    .cc-header .cs-text {
        max-width: 42ch;    
    }
    .cc-card {
        background: #fff;
        border: 1px solid #E8E1D8;
        border-radius: 16px;
        box-shadow: 0 1px 0 rgba(0,0,0,.02);
        padding: clamp(1.25rem, 2.4vw, 2rem);
    }
    .cc-grid {
        display: grid;
        gap: clamp(.8rem, 1.8vw, 1.1rem);
    }
    .cc-label { 
        display: block; 
        margin-top: 30px;
    }
    .cc-label span {
        display: block;
        font-weight: 600;
        margin: 0 0 .45rem;
        color: var(--headerColor);
    }
    .cc-label--full { 
        grid-column: 1 / -1; 
    }
    
    .cc-input {
        width: 100%;
        border: 1px solid #E8E1D8;
        border-radius: 12px;
        padding: .85rem 1rem;
        background: #fff;
        color: var(--bodyTextColor);
        outline: none;
        transition: box-shadow .15s ease, border-color .15s ease;
    }
    .cc-input::placeholder { color: #A5A09A; }
    .cc-input:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(185,164,138,.35); 
    }
    .cc-textarea { 
        min-height: 132px; 
        resize: vertical; 
    }
    .cc-fieldset {
        margin-top: 30px;
        border: 0;
        padding: 0;
    }
    .cc-fieldset legend {
        font-weight: 700;
        margin-bottom: .6rem;
        color: var(--headerColor);
    }
    .cc-checks {
        display: grid;
        gap: .6rem;
    }
    .cc-check {
        display: flex; 
        align-items: center; 
        gap: .55rem;
        cursor: pointer; 
        user-select: none; 
        color: var(--bodyTextColor);
    }
    .cc-check input { 
        width: 18px; 
        height: 18px; 
        accent-color: var(--primary); 
    }
    .cc-consent {
        margin-top: 1rem;
        border: 1px solid #E8E1D8;
        background: #FAF8F5;
        border-radius: 12px;
        padding: 1rem 1.1rem;
    }
    .cc-consent-row {
        display: flex; 
        align-items: flex-start; 
        gap: .65rem;
        color: var(--bodyTextColor);
    }
    .cc-consent-row input { 
        width: 18px; 
        height: 18px; 
        margin-top: .2rem; 
        accent-color: var(--primary); 
    }
    .cc-consent small { 
        display: block; 
        margin-top: .25rem; 
        color: #7A6A57; 
    }
    .cc-actions {
        margin-top: 1rem;
        display: flex; 
        align-items: center; 
        gap: .75rem; 
        flex-wrap: wrap;
    }
    /* .cc-btn {
        appearance: none; 
        border: 0; 
        border-radius: 12px;
        background: var(--primary); 
        color: #fff; 
        font-weight: 700;
        padding: .9rem 1.1rem; 
        cursor: pointer; 
        transition: all .15s ease;
        box-shadow: 0 1px 0 rgba(0,0,0,.05);
    } */
    .cc-btn {
        appearance: none;
        border: 0;
        border-radius: 0.25rem;
        background-color: #1e938a;
        color: #fff;
        font-weight: 700;
        font-size: 1rem;
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        padding: 0 1.5rem;
        cursor: pointer;
        position: relative;
        z-index: 1;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
        transition: color 0.3s;
    }
    .cc-btn::before {
        content: "";
        position: absolute;
        inset: 0;
        width: 0%;
        background-color: #197f77;
        border-radius: 0.25rem;
        z-index: -1;
        transition: width 0.3s;
    }
    .cc-btn:hover::before {
        width: 100%;
    } 
    .cc-btn:hover {
        color: #fff;
    }
    .cc-btn:active { 
        transform: translateY(1px); 
    }
    .cc-help { 
        color: #7A6A57; font-size: .9rem; 
    }
    .cc-check input,
    .cc-consent-row input {
        cursor: pointer;
    }

    
    @media (min-width: 40rem) {
        .cc-checks { 
        grid-template-columns: repeat(2, 1fr); 
        }
    }
    
    @media (min-width: 55rem) {
        .cc-grid { 
        grid-template-columns: repeat(3, minmax(0, 1fr)); 
        }
        .cc-checks { 
        grid-template-columns: repeat(3, 1fr); 
        }
    }

    
/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #contact-322 {
        padding: var(--sectionPadding);
        position: relative;
        z-index: 1;

    }
    #contact-322 .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 34.375em;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 3.25rem;
    }
    #contact-322 .cs-content {
        text-align: left;
    }

    #contact-322 .cs-form {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
    }
    #contact-322 .cs-label {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        width: 100%;
        color: var(--headerColor);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 0.25rem;
    }
    #contact-322 .cs-input {
        font-size: 1rem;
        width: 100%;
        height: 3.5rem;
        padding: 0;
        padding-left: 1.5rem;
        border-radius: 0.5rem;
        color: var(--headerColor);
        background-color: #f7f7f7;
        border: 0.5px solid #A58C73;
        box-sizing: border-box;
    }
    #contact-322 .cs-input::placeholder {
        color: #7d799c;
        opacity: 0.6;
    }
    #contact-322 .cs-textarea {
        min-height: 7.5rem;
        padding-top: 1.5rem;
        margin-bottom: 0.75rem;
        font-family: inherit;
    }
    #contact-322 .cs-button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #fff;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        border-radius: 0.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        cursor: pointer;
    }
    #contact-322 .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        /* background: #000; */
        background: #8B735A;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }
    #contact-322 .cs-button-solid:hover:before {
        width: 100%;
    }
    #contact-322 .cs-submit {
        text-transform: uppercase;
        width: 17.6875rem;
        /* color: var(--headerColor); */
        color: #fff;
        /* color: #fff; */
        /* background-color: var(--secondaryLight); */
        /* background-color: #8CA88C; */
        border: none;
        transition: color 0.3s;
        cursor: pointer;
    }
    #contact-322 .cs-submit:hover {
        color: #000;
    }
    #contact-322 .cs-right {
        width: 100%;
        /* 16px - 24px */
        padding: clamp(1rem, 3.5vw, 1.5rem);
        border-radius: 1.5rem;
        background-color: var(--primary);
        display: flex;
        /* prevents padding from adding to height and width */
        box-sizing: border-box;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        /* 24px - 32px */
        gap: clamp(1.5rem, 4vw, 2rem);
    }
    #contact-322 .cs-map {
        width: 100%;
        /* 300px - 425px */
        height: clamp(18.75rem, 63.4vw, 26.5625rem);
        border-radius: 1.5rem;
        /* clips the corners of the img tag */
        overflow: hidden;
        position: relative;
        display: block;
    }
    #contact-322 .cs-map:before {
        content: "";
        position: absolute;
        display: block;
        /* 32px - 48px */
        width: clamp(2rem, 4vw, 3rem);
        height: clamp(2rem, 4vw, 3rem);
        background: url("https://csimg.nyc3.digitaloceanspaces.com/Contact-Page/pin-red.svg");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 1;
        /* 148px - 220px */
        top: clamp(9.25rem, 30.7vw, 13.75rem);
        /* push to the center line of the div */
        left: 50%;
        /* push X amount of pixels from it's current position off the center line */
        margin-left: 0.625rem;
        z-index: 10;
    }
    #contact-322 .cs-map img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    #contact-322 .cs-contact-group {
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }
    #contact-322 .cs-item {
        list-style: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    #contact-322 .cs-header {
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: 700;
        margin-bottom: 0.75rem;
        /* color: var(--secondaryLight); */
        color: #F6F3EC;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.25rem;
    }
    #contact-322 .cs-link,
    #contact-322 .cs-hours {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        text-decoration: none;
        /* color: var(--bodyTextColorWhite); */
        color: #F6F3EC;
        transition: color 0.3s;
    }
    #contact-322 .cs-link:hover {
        color: var(--secondaryLight);
    }
}
/* Tablet - 650px */
@media only screen and (min-width: 40.625rem) {
    #contact-322 .cs-contact-group {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #contact-322 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
        gap: 3.25rem;
    }
    #contact-322 .cs-content {
        max-width: 32.625rem;
    }
    #contact-322 .cs-title,
    #contact-322 .cs-topper {
        text-align: left;
        margin-left: 0;
    }
    #contact-322 .cs-title {
        max-width: 32.625rem;
    }
    #contact-322 .cs-email,
    #contact-322 .cs-phone {
        width: 48%;
    }
    #contact-322 .cs-button-solid {
        margin-left: 0;
    }
    #contact-322 .cs-right {
        width: 51.6%;
        max-width: 41.125rem;
        /* prevent flexbox from squishing it */
        flex: none;
    }
}
  