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

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #F7F2E9;
    color: #2d2d2d;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*Header */
.header {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    padding: 24px 48px;
    background-color: #bbb6ad;
    flex-wrap: wrap;
}

.header-nav {
    display: -webkit-flex;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.header-nav a {
    text-decoration: none;
    color: #2d2d2d;
    font-size: 15px;
    font-weight: 400;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.header-nav a:hover {
    opacity: 0.7;
}

.header-nav a.active {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.header-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 24px;
    font-weight: 400;
    color: #2d2d2d;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.quote-btn {
    background-color: #3d3835;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    font-size: 14px;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
    border-radius: 12px;
    border: none;
    cursor: pointer;
}

.quote-btn:hover {
    background-color: #2a2725;
}

.social-btn {
    background-color: #2E2A26;
    color: #FFFFFF;
    padding: 16px 32px;
    text-decoration: none;
    font-size: 14px;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: inline-block;
    min-width: 220px;
    text-align: center;
}

.social-btn:hover {
    background-color: #1a1816;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #2d2d2d;
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* Banner */
.banner {
    background-color: #e8e2d9;
    padding: 32px 0;
    border-top: 3px solid #2d2d2d;
    overflow: hidden;
}

.banner-content {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 24px;
    color: #2d2d2d;
    font-family: Georgia, 'Times New Roman', serif;
    white-space: nowrap;
    position: relative;
    will-change: transform;
    width: max-content;
}

.banner-content > * {
    will-change: transform;
    margin-right: 10px;
}

.char {
    /* These properties help the browser optimize rendering for animation. */
    /* It hints that the transform property will change, allowing for GPU acceleration. */
    will-change: transform;
    /* Prevents flickering during CSS 3D transforms on some browsers. */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.banner-divider {
    color: #7b68a6;
    font-size: 30px;
    margin: 0 5px;
    font-weight: 300;
}


/* Main Content */

.main-content {
    display: -webkit-flex;
    display: flex;
    gap: 0;
    padding: 0;
    max-width: 100%;
    margin-bottom: 80px;
    background-color: #e8e2d9;
    flex-wrap: wrap;
}

.main-text {
    -webkit-flex: 1;
    flex: 1;
    max-width: 50%;
    padding: 120px 330px 120px 100px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
}

.main-text h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 72px;
    font-weight: 400;
    font-style: normal;
    color: #2d2d2d;
    line-height: 1.05;
    margin-bottom: 40px;
}

.main-text p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.main-text p strong {
    color: #2d2d2d;
    font-weight: 600;
}

.main-image {
    -webkit-flex: 1;
    flex: 1;
    max-width: 50%;
    overflow: hidden;
    padding: 48px 100px 48px 100px;
}

.main-image img {
    width: 80%;
    height: auto;
    aspect-ratio: 3 / 4;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

/* Featured Products */
.featured-products {
    background-color: #F7F2E9;
    padding: 80px 48px;
}

.featured-products h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 60px;
    font-weight: 400;
    color: #2d2d2d;
    margin-bottom: 60px;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-item {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.product-item img {
    width: 100%;
    height: 600px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 24px;
}

.product-item h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    font-weight: 400;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.product-item p {
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Additional Services */
.additional-services {
    background-color: #F7F2E9;
    padding: 100px 48px;
}

.additional-services h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 60px;
    font-weight: 400;
    color: #2F2A25;
    margin-bottom: 80px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.service-item img {
    width: 75%;
    height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 32px;
}

.service-item h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    font-weight: 700;
    color: #2F2A25;
    margin-bottom: 12px;
}

.service-item p {
    font-size: 16px;
    color: #6B6258;
    line-height: 1.6;
}

/* Q&A Section */
.q-and-a {
    background-color: #fbf9f4;
    padding: 100px 48px;
}

.qa-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    -webkit-align-items: start;
    align-items: start;
    background-color: #F7F2E9;
    padding: 48px 48px 300px 48px;
    border-radius: 24px;
}

.qa-left h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 64px;
    font-weight: 400;
    color: #2F2A25;
    line-height: 1.1;
}

.qa-list {
    width: 100%;
}

.qa-item {
    margin-bottom: 0;
    border-bottom: 1px solid #2F2A25;
}

.qa-question {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    color: #2F2A25;
    text-align: left;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.qa-question:hover {
    opacity: 0.7;
}

.qa-toggle {
    font-size: 20px;
    font-weight: 300;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    color: #2F2A25;
}

.qa-answer {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;
    padding: 0;
}

.qa-answer p {
    font-size: 16px;
    color: #6B6258;
    line-height: 1.6;
    padding-bottom: 24px;
}

.qa-item.active .qa-answer {
    max-height: 500px;
    padding: 0 0 24px 0;
}

.qa-item.active .qa-toggle {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Socials Section */
.socials {
    background-color: #F7F2E9;
    padding: 80px 48px;
}

.socials-wrapper {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.socials h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 45px;
    font-weight: 400;
    color: #2F2A25;
}

.social-icons {
    display: -webkit-flex;
    display: flex;
    gap: 24px;
}

/* Get in Touch Section */
.get-in-touch {
    background-color: #fbf9f4;
    padding: 80px 48px;
}

.get-in-touch-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.get-in-touch-left h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 60px;
    font-weight: 400;
    color: #2F2A25;
    margin-bottom: 24px;
}

.get-in-touch-left p {
    font-size: 14px;
    color: #6B6258;
    line-height: 1.6;
}

.get-in-touch-right {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.contact-form {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-bottom: 24px;
}

.form-group label {
    font-size: 13px;
    color: #2d2d2d;
    margin-bottom: 8px;
    font-weight: 500;
}

.required-text {
    color: #9A9085;
}

.form-group input,
.form-group textarea {
    padding: 16px;
    border: 1px solid #DED3C6;
    border-radius: 12px;
    background-color: #F7F2E9;
    font-size: 14px;
    color: #2d2d2d;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9A9085;
    font-size: 12px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2F2A25;
}

.form-group input[type="date"] {
    width: 200px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.section-label {
    font-size: 13px;
    color: #2d2d2d;
    margin-bottom: 16px;
    margin-top: 24px;
    font-weight: 500;
}

.checkbox-group,
.radio-group {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.checkbox-item,
.radio-item {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 8px;
}

.checkbox-item input,
.radio-item input {
    width: 16px;
    height: 16px;
    cursor: pointer;
    margin: 0;
    accent-color: #3d3835;
}

.checkbox-item input[type="checkbox"],
.radio-item input[type="radio"] {
    -webkit-appearance: auto;
    appearance: auto;
}

.checkbox-item label,
.radio-item label {
    font-size: 14px;
    color: #2d2d2d;
    cursor: pointer;
}

.submit-btn {
    background-color: #2E2A26;
    color: #fff;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
    margin-top: 24px;
    width: 100%;
}

.submit-btn:hover {
    background-color: #2a2725;
}

/* Schedule your Appointment */
.schedule-appointment {
    background-color: #F7F2E9;
    padding: 100px 48px;
}

.schedule-appointment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0;
    -webkit-align-items: start;
    align-items: start;
}

.schedule-appointment-left {
    padding-left: 60px;
}

.schedule-appointment-left h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 64px;
    font-weight: 400;
    color: #2F2A25;
    margin-bottom: 40px;
    line-height: 1.1;
}

.schedule-appointment-left p {
    font-size: 16px;
    color: #6B6258;
    line-height: 1.6;
    max-width: 480px;
}

.schedule-appointment-right {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    padding-left: 20px;
}

.schedule-appointment-right img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    -o-object-fit: cover;
    object-fit: cover;
}

/* About Us Section */
.about-us {
    background-color: #F7F2E9;
    padding: 80px 48px;
}

.about-us-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    -webkit-align-items: start;
    align-items: start;
}

.about-us-left {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.about-us-left img {
    width: 85%;
    height: auto;
    aspect-ratio: 4 / 5;
    -o-object-fit: cover;
    object-fit: cover;
}

.about-us-right {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.about-us-right h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 64px;
    font-weight: 400;
    color: #2F2A25;
    margin-bottom: 32px;
    line-height: 1.1;
}

.about-us-right p {
    font-size: 16px;
    color: #6B6258;
    line-height: 1.6;
    margin-bottom: 24px;
}

.about-us-right p strong {
    color: #2d2d2d;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #e8e2d9;
    padding: 60px 48px;
}

.footer-top {
    text-align: center;
    margin-bottom: 40px;
    padding-right: 0;
}

.footer-top h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 48px;
    font-weight: 400;
    color: #2d2d2d;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-section h4 {
    font-size: 13px;
    font-weight: 500;
    color: #2d2d2d;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.footer-section p a {
    color: #2d2d2d;
    text-decoration: underline;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.footer-section p a:hover {
    opacity: 0.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    font-size: 13px;
    color: #2d2d2d;
    text-decoration: underline;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.footer-section ul li a:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header {
        padding: 20px 32px;
    }

    .header-nav {
        gap: 24px;
    }

    .main-text,
    .main-image {
        max-width: 100%;
        padding: 60px 32px;
    }

    .product-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .schedule-appointment-wrapper,
    .get-in-touch-wrapper,
    .about-us-wrapper,
    .qa-wrapper {
        gap: 60px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 16px 24px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .header-nav {
        /* Collapsed by default for dropdown animation */
        max-height: 0;
        overflow: hidden;
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        border-top: none;
        transition: all 0.4s ease-out;

        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        order: 3;
    }

    .header-nav.active {
        max-height: 400px; /* Large enough to show all items */
        padding: 24px 0;
        margin-top: 16px;
        border-top: 1px solid rgba(0,0,0,0.1);
    }

    .header-title {
        position: static;
        transform: none;
        order: 1;
        margin: 0;
        flex: 1;
    }

    .banner-content {
        font-size: 18px;
        gap: 12px;
    }

    .main-text h1 {
        font-size: 48px;
        margin-bottom: 24px;
    }

    .main-text p {
        font-size: 14px;
    }

    .main-content,
    .schedule-appointment {
        flex-direction: column;
    }

    .main-text,
    .main-image,
    .schedule-appointment-text,
    .schedule-appointment-img {
        max-width: 100%;
        padding: 40px 24px;
    }

    .featured-products,
    .additional-services,
    .q-and-a,
    .get-in-touch,
    .about-us,
    .socials,
    .footer {
        padding: 60px 24px;
    }

    .featured-products h2,
    .additional-services h2,
    .q-and-a h2,
    .get-in-touch-left h2,
    .about-us-right h2,
    .schedule-appointment-left h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .product-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-item img,
    .service-item img {
        height: 200px;
    }

    .get-in-touch-wrapper,
    .schedule-appointment-wrapper,
    .about-us-wrapper,
    .qa-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .socials-wrapper {
        -webkit-flex-direction: column;
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .social-icons {
        -webkit-justify-content: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-top {
        text-align: center;
        margin-bottom: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .submit-btn {
        padding: 14px 24px;
    }

    .mobile-menu-btn {
        display: block;
        order: 2;
    }

    .quote-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 12px 16px;
    }

    .header-nav {
        gap: 12px;
        font-size: 13px;
    }

    .header-title {
        font-size: 20px;
    }

    .quote-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .banner-content {
        font-size: 14px;
        gap: 8px;
    }

    .banner-divider {
        font-size: 16px;
        margin: 0 6px;
    }

    .main-text h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .main-text p {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .main-text,
    .main-image,
    .schedule-appointment-text,
    .schedule-appointment-img {
        padding: 32px 16px;
    }

    .featured-products,
    .additional-services,
    .q-and-a,
    .get-in-touch,
    .about-us,
    .socials,
    .footer {
        padding: 40px 16px;
    }

    .featured-products h2,
    .additional-services h2,
    .qa-left h2,
    .get-in-touch-left h2,
    .about-us-right h2,
    .schedule-appointment-left h2 {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .product-item h3,
    .service-item h3 {
        font-size: 16px;
    }

    .product-item p,
    .service-item p {
        font-size: 13px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 13px;
        padding: 10px;
    }

    .section-label {
        font-size: 12px;
    }

    .checkbox-item label,
    .radio-item label {
        font-size: 13px;
    }

    .submit-btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .footer-top h2 {
        font-size: 20px;
    }

    .footer-section h4 {
        font-size: 12px;
    }

    .footer-section p,
    .footer-section ul li a {
        font-size: 12px;
    }

    .qa-question {
        font-size: 14px;
        padding: 16px 0;
    }

    .qa-toggle {
        font-size: 20px;
    }

    .about-us-right p {
        font-size: 13px;
    }

    .get-in-touch-left p {
        font-size: 13px;
    }
}

/* Print Styles */
@media print {
    body {
        background-color: #fff;
    }

    .header,
    .banner,
    .socials {
        display: none;
    }

    .main-content,
    .schedule-appointment {
        flex-direction: column;
    }

    .main-text,
    .main-image,
    .schedule-appointment-text,
    .schedule-appointment-img {
        max-width: 100%;
    }

    a {
        text-decoration: underline;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        -webkit-animation-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        -webkit-transition-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: subpixel-antialiased;
    }
}
