/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #3c2f2f;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #8b4513;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 9999;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Prevent horizontal overflow on mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    html {
        overflow-x: hidden;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Mobile-first container adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* Enhanced mobile spacing and layout */
@media (max-width: 768px) {
    .newsletter {
        margin: 0 -16px;
        padding: 50px 16px;
    }
    
    .main-content {
        margin: 0 -16px;
        padding: 40px 16px;
    }
    
    .footer {
        margin: 0 -16px;
        padding: 30px 16px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

/* Mobile hero section fixes */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 400px;
        overflow: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }
    
    .hero-carousel {
        width: 100%;
        height: 100%;
        overflow: hidden;
        max-width: 100vw;
        position: relative;
    }
    
    .carousel-container {
        width: 100%;
        height: 100%;
        overflow: hidden;
        max-width: 100vw;
        position: relative;
    }
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 3;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Mobile carousel image fixes */
@media (max-width: 768px) {
    .carousel-slide img {
        object-fit: cover;
        object-position: center center;
        width: 100% !important;
        height: 100% !important;
        display: block;
        max-width: 100%;
        max-height: 100%;
    }
    
    .hero-carousel,
    .carousel-container {
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: relative;
    }
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
}

.carousel-prev,
.carousel-next {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: #8b4513;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.hero-content * {
    pointer-events: auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Main Content */
.main-content {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

/* Mobile main content adjustments */
@media (max-width: 768px) {
    .main-content {
        padding: 40px 0;
    }
}

.main-content::before,
.main-content::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(180deg, #8b4513 0%, #a0522d 100%);
    z-index: 1;
}

.main-content::before {
    left: 0;
}

.main-content::after {
    right: 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Left Column */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #8b4513;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.01em;
}

.image-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-large {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-small {
    width: 60%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    align-self: flex-end;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Column */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.description-text {
    font-size: 1.1rem;
    color: #6b5b73;
    line-height: 1.7;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #faf8f5;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #8b4513;
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1.2rem;
    color: white;
}

.service-item span {
    font-size: 0.9rem;
    color: #3c2f2f;
    font-weight: 500;
}

.additional-text {
    font-size: 1rem;
    color: #6b5b73;
    line-height: 1.6;
    margin: 10px 0;
}

.cta-buttons {
    margin-top: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
    text-align: center;
}

.btn-primary {
    background-color: #8b4513;
    color: #faf8f5;
    border-color: #8b4513;
}

.btn-primary:hover {
    background-color: #a0522d;
    border-color: #a0522d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #8b4513;
    border-color: #8b4513;
}

.btn-secondary:hover {
    background-color: #8b4513;
    color: #faf8f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: #faf8f5;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.newsletter-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.form-group input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #faf8f5;
    color: #3c2f2f;
}

.form-group input::placeholder {
    color: #6b5b73;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(250, 248, 245, 0.3);
}

.newsletter-privacy {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Mailchimp Form Styling */
#mc_embed_signup {
    background: transparent !important;
    clear: left;
    font: 14px Helvetica, Arial, sans-serif;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

#mc_embed_signup .mc-field-group {
    text-align: center;
    margin-bottom: 20px;
}

#mc_embed_signup .optionalParent {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

#mc_embed_signup .clear {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

/* Consolidated Mailchimp form structure - higher specificity to avoid !important */
#mc_embed_signup div.optionalParent div.clear,
#mc_embed_signup div.clear {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

#mc_embed_signup h2 {
    display: none;
}

#mc_embed_signup .mc-field-group {
    margin-bottom: 20px;
}

#mc_embed_signup .mc-field-group label {
    display: none;
}

#mc_embed_signup .mc-field-group input[type="email"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px 22px !important;
    border: 2px solid #e5e5e5 !important;
    border-radius: 12px !important;
    font-size: 1.1rem !important;
    background-color: #faf8f5 !important;
    color: #3c2f2f !important;
    box-sizing: border-box !important;
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
    margin: 0 !important;
    display: block !important;
    min-height: 58px !important;
    transition: all 0.3s ease !important;
}

#mc_embed_signup .mc-field-group input[type="email"]:focus {
    outline: none !important;
    border-color: #8b4513 !important;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.2) !important;
    background-color: #ffffff !important;
}

#mc_embed_signup .mc-field-group input[type="email"]::placeholder {
    color: #6b5b73 !important;
}

#mc_embed_signup .button,
#mc_embed_signup input[type="submit"],
#mc_embed_signup input.button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px 32px !important;
    background-color: #8b4513 !important;
    color: #faf8f5 !important;
    border: 2px solid #8b4513 !important;
    border-radius: 12px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.2 !important;
    margin: 0 auto !important;
    display: block !important;
    height: auto !important;
    min-height: 58px !important;
    box-sizing: border-box !important;
    text-align: center !important;
    vertical-align: middle !important;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Ensure button container is centered */
#mc_embed_signup .clear .button,
#mc_embed_signup .optionalParent .button,
#mc_embed_signup .clear input[type="submit"],
#mc_embed_signup .optionalParent input[type="submit"],
#mc_embed_signup .clear input.button,
#mc_embed_signup .optionalParent input.button {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Force button centering with additional specificity */
#mc_embed_signup div.clear input[type="submit"],
#mc_embed_signup div.optionalParent input[type="submit"] {
    margin: 0 auto !important;
    display: block !important;
    width: 100% !important;
}

#mc_embed_signup .button:hover,
#mc_embed_signup input[type="submit"]:hover,
#mc_embed_signup input.button:hover {
    background-color: #a0522d !important;
    border-color: #a0522d !important;
    color: #faf8f5 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4) !important;
}

#mc_embed_signup .button:active,
#mc_embed_signup input[type="submit"]:active,
#mc_embed_signup input.button:active {
    background-color: #8b4513 !important;
    border-color: #8b4513 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 3px 8px rgba(139, 69, 19, 0.3) !important;
}

/* Additional overrides for Mailchimp button */
#mc_embed_signup .clear .button,
#mc_embed_signup .clear input[type="submit"],
#mc_embed_signup .clear input.button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px 32px !important;
    background-color: #8b4513 !important;
    color: #faf8f5 !important;
    border: 2px solid #8b4513 !important;
    border-radius: 12px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.2 !important;
    margin: 0 auto !important;
    display: block !important;
    height: auto !important;
    min-height: 58px !important;
    box-sizing: border-box !important;
    text-align: center !important;
    vertical-align: middle !important;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

#mc_embed_signup .optionalParent {
    margin-bottom: 25px;
}

#mc_embed_signup .response {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

#mc_embed_signup .response#mce-error-response {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

#mc_embed_signup .response#mce-success-response {
    background-color: #e8f5e8;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

#mc_embed_signup .asterisk {
    color: #c62828;
}

#mc_embed_signup .indicates-required {
    display: none;
}

/* Footer */
.footer {
    background-color: #3c2f2f;
    color: #faf8f5;
    padding: 30px 0;
    text-align: center;
    margin-top: auto;
}

.footer-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===========================================
   COMPREHENSIVE RESPONSIVE DESIGN SYSTEM
   =========================================== */

/* Base responsive utilities */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Touch-friendly interactive elements */
button, 
.btn, 
input[type="submit"], 
input[type="button"],
.carousel-prev,
.carousel-next {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Carousel dots - smaller touch targets */
.dot {
    min-height: 8px;
    min-width: 8px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Enhanced mobile form elements */
@media (max-width: 768px) {
    input[type="email"],
    input[type="text"],
    button,
    .btn {
        -webkit-appearance: none;
        appearance: none;
        border-radius: 12px;
    }
    
    input[type="email"]:focus,
    input[type="text"]:focus {
        -webkit-appearance: none;
        appearance: none;
    }
}

/* Fluid typography system */
html {
    font-size: clamp(14px, 2.5vw, 18px);
}

/* Container improvements */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}

/* ===========================================
   LARGE TABLETS AND SMALL DESKTOPS (1025px+)
   =========================================== */
@media (min-width: 1025px) {
    .hero-title {
        font-size: clamp(3rem, 5vw, 4.5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(3rem, 5vw, 4.5rem);
    }
    
    .main-title {
        font-size: clamp(2rem, 3vw, 2.8rem);
    }
    
    .content-grid {
        grid-template-columns: 1fr 1fr;
        gap: clamp(60px, 8vw, 100px);
        align-items: start;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .newsletter {
        padding: clamp(80px, 10vw, 120px) 0;
    }
    
    .newsletter-title {
        font-size: clamp(2rem, 3vw, 3rem);
    }
    
    .image-large {
        height: clamp(350px, 25vw, 450px);
    }
    
    .image-small {
        height: clamp(250px, 18vw, 320px);
        width: 60%;
        margin-top: -50px;
    }
}

/* ===========================================
   TABLETS (768px - 1024px)
   =========================================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }
    
    .carousel-nav {
        padding: 0 20px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .main-title {
        font-size: clamp(1.8rem, 4vw, 2.3rem);
        text-align: center;
    }
    
    .main-content {
        padding: clamp(60px, 8vw, 90px) 0;
    }
    
    .image-large {
        height: clamp(300px, 35vw, 400px);
    }
    
    .image-small {
        height: clamp(220px, 25vw, 280px);
        width: 70%;
        margin-top: -40px;
        align-self: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .newsletter {
        padding: 70px 0;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.15rem;
    }
    
    .description-text {
        font-size: 1.05rem;
        text-align: center;
        max-width: 600px;
        margin: 0 auto 20px auto;
    }
    
    .additional-text {
        text-align: center;
        max-width: 500px;
        margin: 20px auto;
    }
    
    .cta-buttons {
        text-align: center;
        margin-top: 30px;
    }
}

/* ===========================================
   MOBILE LANDSCAPE & LARGE PHONES (481px - 768px)
   =========================================== */
@media (max-width: 768px) {
    .hero {
        height: 65vh;
        min-height: 400px;
        padding: 0;
        overflow: hidden;
    }
    
    .hero-carousel,
    .carousel-container {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .carousel-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        z-index: 1;
    }
    
    .carousel-slide.active {
        opacity: 1;
        z-index: 3;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 2.2rem;
        line-height: 1.1;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .hero-content {
        padding: 25px;
        text-align: center;
        z-index: 4;
    }
    
    .carousel-nav {
        padding: 0 20px;
        z-index: 10;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 42px;
        height: 42px;
        font-size: 22px;
        z-index: 11;
        position: relative;
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .hero-dots {
        gap: 10px;
        margin-top: 25px;
        justify-content: center;
    }
    
    .dot {
        width: 8px !important;
        height: 8px !important;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .main-title {
        font-size: 1.8rem;
        text-align: center;
        line-height: 1.2;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .main-content {
        padding: 40px 0;
    }
    
    .image-stack {
        margin-bottom: 35px;
    }
    
    .image-large {
        height: 280px;
        border-radius: 12px;
        margin-bottom: 20px;
    }
    
    .image-small {
        height: 200px;
        width: 80%;
        margin-top: -30px;
        align-self: center;
        border-radius: 12px;
    }
    
    .right-column {
        padding: 0 15px;
    }
    
    .description-text {
        font-size: 1.05rem;
        text-align: center;
        line-height: 1.6;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 30px 0;
    }
    
    .service-item {
        padding: 22px 18px;
        text-align: center;
        flex-direction: column;
        gap: 15px;
        border-radius: 12px;
        background-color: #f8f6f3;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        align-self: center;
    }
    
    .service-item span {
        font-size: 1.05rem;
        font-weight: 500;
    }
    
    .additional-text {
        text-align: center;
        font-size: 1rem;
        margin: 25px 0;
        padding: 0 15px;
    }
    
    .cta-buttons {
        text-align: center;
        margin-top: 35px;
    }
    
    .btn {
        padding: 16px 35px;
        font-size: 1.15rem;
        min-width: 220px;
        width: auto;
        display: inline-block;
        border-radius: 10px;
        font-weight: 600;
    }
    
    .newsletter {
        padding: 60px 0;
        margin: 50px 0;
    }
    
    .newsletter-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
        text-align: center;
        padding: 0 20px;
        line-height: 1.5;
    }
    
    .newsletter-content {
        max-width: 100%;
        padding: 0 25px;
    }
    
    #mc_embed_signup {
        max-width: 100%;
    }
    
    #mc_embed_signup .mc-field-group input[type="email"] {
        padding: 18px 24px !important;
        font-size: 1.15rem !important;
        border-radius: 12px !important;
        margin-bottom: 20px !important;
        min-height: 60px !important;
    }
    
    #mc_embed_signup .button,
    #mc_embed_signup input[type="submit"],
    #mc_embed_signup input.button {
        padding: 18px 35px !important;
        font-size: 1.2rem !important;
        border-radius: 12px !important;
        font-weight: 700 !important;
        min-height: 62px !important;
    }
    
    .form-group {
        flex-direction: column;
        gap: 18px;
        max-width: 100%;
    }
    
    .form-group input {
        width: 100%;
    }
    
    .newsletter-privacy {
        font-size: 0.9rem;
        line-height: 1.5;
        max-width: 380px;
        margin: 25px auto 0 auto;
        text-align: center;
        padding: 0 15px;
    }
}

/* ===========================================
   SMALL MOBILE DEVICES (320px - 480px)
   =========================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        height: 60vh;
        min-height: 350px;
        padding: 0;
        overflow: hidden;
    }
    
    .hero-carousel,
    .carousel-container {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .carousel-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        z-index: 1;
    }
    
    .carousel-slide.active {
        opacity: 1;
        z-index: 3;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 10px;
        line-height: 1.1;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 2rem;
        margin-bottom: 30px;
        line-height: 1.1;
        text-align: center;
    }
    
    .hero-content {
        padding: 20px;
        text-align: center;
        z-index: 4;
    }
    
    .carousel-nav {
        padding: 0 15px;
        z-index: 10;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
        z-index: 11;
        position: relative;
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .hero-dots {
        gap: 10px;
        margin-top: 20px;
        justify-content: center;
    }
    
    .dot {
        width: 8px !important;
        height: 8px !important;
    }
    
    .main-content {
        padding: 30px 0;
    }
    
    .main-title {
        font-size: 1.6rem;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .image-stack {
        margin-bottom: 30px;
    }
    
    .image-large {
        height: 220px;
        border-radius: 12px;
        margin-bottom: 15px;
    }
    
    .image-small {
        height: 160px;
        width: 85%;
        margin-top: -25px;
        border-radius: 12px;
        align-self: center;
    }
    
    .right-column {
        padding: 0 10px;
    }
    
    .description-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .services-grid {
        margin: 25px 0;
        gap: 12px;
    }
    
    .service-item {
        padding: 20px 15px;
        text-align: center;
        flex-direction: column;
        gap: 12px;
        border-radius: 12px;
        background-color: #f8f6f3;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        align-self: center;
    }
    
    .service-item span {
        font-size: 0.95rem;
        font-weight: 500;
    }
    
    .additional-text {
        font-size: 0.95rem;
        margin: 20px 0;
        text-align: center;
        padding: 0 10px;
    }
    
    .cta-buttons {
        margin-top: 30px;
        text-align: center;
    }
    
    .btn {
        padding: 16px 30px;
        font-size: 1.1rem;
        min-width: auto;
        width: 100%;
        max-width: 260px;
        border-radius: 10px;
        font-weight: 600;
    }
    
    .newsletter {
        padding: 50px 0;
        margin: 40px 0;
    }
    
    .newsletter-content {
        padding: 0 20px;
    }
    
    .newsletter-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .newsletter-subtitle {
        font-size: 1.05rem;
        margin-bottom: 35px;
        line-height: 1.5;
        text-align: center;
        padding: 0 10px;
    }
    
    #mc_embed_signup {
        max-width: 100%;
    }
    
    #mc_embed_signup .mc-field-group input[type="email"] {
        padding: 18px 22px !important;
        font-size: 1.1rem !important;
        border-radius: 12px !important;
        margin-bottom: 18px !important;
        min-height: 58px !important;
    }
    
    #mc_embed_signup .button,
    #mc_embed_signup input[type="submit"],
    #mc_embed_signup input.button {
        padding: 18px 32px !important;
        font-size: 1.15rem !important;
        border-radius: 12px !important;
        font-weight: 700 !important;
        min-height: 60px !important;
    }
    
    .newsletter-privacy {
        font-size: 0.85rem;
        line-height: 1.4;
        margin: 20px auto 0 auto;
        max-width: 320px;
        text-align: center;
        padding: 0 10px;
    }
    
    .footer {
        padding: 30px 0;
        margin-top: 40px;
    }
    
    .footer-text {
        font-size: 0.9rem;
        text-align: center;
    }
}

/* ===========================================
   EXTRA SMALL DEVICES (320px and below)
   =========================================== */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .main-title {
        font-size: 1.3rem;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .newsletter-title {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* ===========================================
   LANDSCAPE ORIENTATION OPTIMIZATIONS
   =========================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 5px;
    }
    
    .hero-subtitle {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 20px;
    }
    
    .main-content {
        padding: 30px 0;
    }
    
    .newsletter {
        padding: 30px 0;
    }
    
    .newsletter-title {
        font-size: clamp(1.6rem, 5vw, 2rem);
        margin-bottom: 10px;
    }
    
    .newsletter-subtitle {
        margin-bottom: 20px;
    }
}

/* ===========================================
   HIGH DPI / RETINA DISPLAYS
   =========================================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .carousel-slide img,
    .image-large img,
    .image-small img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ===========================================
   REDUCED MOTION PREFERENCES
   =========================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .carousel-slide {
        transition: none;
    }
}

/* ===========================================
   DARK MODE SUPPORT (Future Enhancement)
   =========================================== */
@media (prefers-color-scheme: dark) {
    /* Dark mode styles can be added here if needed */
}

/* ===========================================
   PRINT STYLES
   =========================================== */
@media print {
    .hero,
    .carousel-nav,
    .newsletter,
    .footer {
        display: none;
    }
    
    .main-content {
        padding: 20px 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .btn {
        border: 1px solid #000;
        background: transparent;
        color: #000;
    }
}

/* ===========================================
   ACCESSIBILITY & INTERACTION IMPROVEMENTS
   =========================================== */

/* Focus styles for accessibility */
.btn:focus,
button:focus,
input:focus,
.carousel-prev:focus,
.carousel-next:focus,
.dot:focus {
    outline: 3px solid #a0522d;
    outline-offset: 2px;
}

/* Enhanced touch feedback */
.btn:active,
button:active,
.carousel-prev:active,
.carousel-next:active {
    transform: scale(0.98);
}

/* Improved button states for touch devices */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none;
        box-shadow: none;
    }
    
    .btn:active,
    .btn-primary:active,
    .btn-secondary:active {
        transform: scale(0.95);
        background-color: #a0522d;
        color: #faf8f5;
    }
    
    .carousel-prev:hover,
    .carousel-next:hover {
        transform: none;
        box-shadow: none;
    }
    
    .carousel-prev:active,
    .carousel-next:active {
        transform: scale(0.9);
        background-color: rgba(255, 255, 255, 0.95);
    }
    
    .dot:hover {
        background-color: rgba(255, 255, 255, 0.7);
    }
    
    .dot:active {
        background-color: rgba(255, 255, 255, 1);
        transform: scale(1.2);
    }
}

/* Improved text selection */
::selection {
    background-color: #8b4513;
    color: #faf8f5;
}

::-moz-selection {
    background-color: #8b4513;
    color: #faf8f5;
}

/* Better scrollbar styling for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #8b4513;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a0522d;
}

/* Improve form input accessibility */
input[type="email"]:focus {
    outline: 3px solid #a0522d;
    outline-offset: 2px;
    border: 2px solid #8b4513;
}

/* Better contrast for better accessibility */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #000;
    }
    
    .btn-secondary {
        border: 2px solid #000;
        color: #000;
    }
    
    .service-item {
        border: 1px solid #000;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading state */
body:not(.loaded) {
    opacity: 0.9;
}

body.loaded {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Loading spinner */
.loading-spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #8b4513;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1000;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

body:not(.loaded) .loading-spinner {
    display: block;
}

/* ===========================================
   PERFORMANCE OPTIMIZATIONS
   =========================================== */

/* Optimize rendering performance */
* {
    will-change: auto;
}

.btn,
.carousel-prev,
.carousel-next,
.dot {
    will-change: transform;
}

/* GPU acceleration for smooth animations */
.hero-carousel,
.carousel-slide,
.image-large,
.image-small {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Optimize image rendering */
img {
    image-rendering: optimizeSpeed;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Reduce layout thrashing */
.carousel-slide {
    contain: layout style paint;
}

/* Optimize font loading */
@font-face {
    font-family: 'Inter';
    font-display: swap;
}

/* Critical resource hints */
.hero-carousel img:first-child {
    content-visibility: auto;
}

/* Reduce paint complexity */
.service-item,
.btn,
.newsletter {
    contain: layout style;
}

/* Optimize scrolling performance */
body {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Improve text rendering */
body,
input,
button {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}