/* =====================
   CSS RESET & BASELINE
   ===================== */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,main,menu,nav,output,ruby,section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
    box-sizing: border-box;
}
html {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #F4EFD3;
    color: #28344B;
    font-family: 'Open Sans', Arial, sans-serif;
    scroll-behavior: smooth;
}
body {
    min-height: 100vh;
    font-size: 16px;
    font-family: 'Open Sans', Arial, sans-serif;
    background: #F4EFD3;
    color: #28344B;
}
img {
    max-width: 100%;
    height: auto;
    border: 0;
    display: block;
}
a {
    color: #975E26;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #E08336;
    outline: none;
}
ul, ol {
    list-style-position: inside;
    margin-left: 0;
    padding-left: 0;
}

/* Font faces (retro-inspired) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;700&display=swap');

:root {
    --primary: #28344B;
    --secondary: #A3BAC5;
    --accent: #F4EFD3;
    --vintage-brown: #975E26;
    --vintage-camel: #E0B974;
    --vintage-orange: #E08336;
    --vintage-mint: #ADC1A8;
    --vintage-mustard: #EAC36E;
    --retro-shadow: 0 3px 16px rgba(40,52,75,0.10), 0 1.5px 0 #EAC36E inset;
    --retro-shadow-hover: 0 8px 20px rgba(151,94,38,0.18), 0 1.5px 0 #E09336 inset;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
    letter-spacing: 0.01em;
    color: #28344B;
    font-weight: 700;
}
h1 { font-size: 2.75rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; line-height: 1.2; }
h3 { font-size: 1.3rem; margin-bottom: 10px; line-height: 1.22; }
h4 { font-size: 1.12rem; margin-bottom: 8px; }
p, li {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #3A2C1A;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

strong, b { font-weight: 700; }

.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
}

/* ===== VINTAGE/RETRO VISUALS ===== */
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #FFF9ED;
    border-radius: 18px;
    box-shadow: var(--retro-shadow);
    /* Subtle retro pattern */
    background-image: repeating-linear-gradient(135deg, #F4EFD3, #F4EFD3 40px, #F7EBC3 41px, #F7EBC3 60px);
}
.hero-section {
    background: linear-gradient(100deg, #EAC36E 55%, #F4EFD3 100%);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 40px 0;
    border-radius: 0 0 28px 28px;
    box-shadow: 0 8px 32px rgba(151,94,38,0.08);
}
.features-section, .about-section, .process-section, .testimonials-section, .about-preview-section, .cta-section, .about-cta-section, .why-us-section, .services-section, .case-studies-section, .references-cta-section, .ideas-section, .color-palettes-section, .blog-list-section, .blog-cta-section, .contact-info-section, .contact-cta-section, .thank-you-section, .legal-section {
    margin-bottom: 60px;
    padding: 40px 20px;
    border-radius: 18px;
    box-shadow: var(--retro-shadow);
    background: #FFF9ED;
}

.subheadline {
    font-size: 1.25rem;
    font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
    color: #975E26;
    background: rgba(234,195,110,0.13);
    padding: 10px 18px;
    border-radius: 12px;
    margin-bottom: 18px;
    display: inline-block;
}

/* === HEADER & NAV RETRO === */
header {
    width: 100%;
    background: #A3BAC5;
    box-shadow: 0 4px 32px rgba(40, 52, 75, 0.04);
    position: sticky;
    top: 0;
    z-index: 980;
}
.branding {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 0 7px 0;
    flex-wrap: wrap;
}
.branding img {
    height: 48px;
    width: auto;
}
.brand-tagline {
    font-size: 1rem;
    letter-spacing: 0.04em;
    color: #975E26;
    font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
    font-weight: 600;
    text-shadow: 0 2px 0 #FFF9ED;
    background: #F7EBC3;
    padding: 6px 12px;
    border-radius: 10px;
    margin-left: 10px;
}
.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin: 9px 0 12px 0;
}
.main-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    color: #28344B;
    font-size: 1rem;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 15px;
    transition: background 0.2s, color 0.2s;
    background: transparent;
    border: none;
    position: relative;
}
.main-nav a:hover, .main-nav a:focus {
    color: #E08336;
    background: #FFF9ED;
    outline: none;
}
.main-nav .cta-btn {
    color: #fff;
    background: #975E26;
    border-radius: 16px;
    font-size: 1.04rem;
    padding: 10px 28px;
    margin-left: 10px;
    box-shadow: var(--retro-shadow);
    transition: background 0.18s, box-shadow 0.3s, color 0.18s;
    border: 2px solid #EAC36E;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
    background: #E08336;
    color: #fff2e6;
    box-shadow: var(--retro-shadow-hover);
    outline: none;
}

/* ============== MOBILE NAV MENU ============== */
.mobile-menu-toggle {
    display: none;
    background: #975E26;
    color: #fff;
    font-size: 2rem;
    border: none;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    box-shadow: var(--retro-shadow);
    position: absolute;
    top: 25px;
    right: 20px;
    z-index: 1012;
    cursor: pointer;
    transition: background 0.15s;
}
.mobile-menu-toggle:focus {
    background: #E08336;
}
.mobile-menu {
    position: fixed;
    left: 0; top: 0;
    width: 100vw;
    height: 100vh;
    background: #A3BAC5;
    box-shadow: 0 28px 120px 12px rgba(40,52,75,0.25);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
    display: flex;
    flex-direction: column;
    z-index: 1060;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    align-self: flex-end;
    font-size: 2.1rem;
    background: #975E26;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 15px;
    margin: 20px 24px 16px 0;
    cursor: pointer;
    transition: background 0.15s;
    box-shadow: var(--retro-shadow);
}
.mobile-menu-close:focus {
    background: #E08336;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 25px 40px;
}
.mobile-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #1B2536;
    font-weight: 700;
    font-size: 1.2rem;
    background: #F7EBC3;
    border-radius: 16px;
    padding: 12px 28px;
    text-decoration: none;
    margin-bottom: 4px;
    box-shadow: var(--retro-shadow);
    transition: background 0.2s, color 0.18s;
    display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #EAC36E;
    color: #E08336;
    outline: none;
}
@media (max-width: 940px) {
    .main-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
}
@media (min-width: 941px) {
    .mobile-menu {
        display: none !important;
    }
}

/* =============== SECTIONS, CARDS, FLEXBOX ============= */
.feature-grid, .value-list, .usp-list, .trend-list, .palette-list, .lighting-list, .style-tips, .post-preview-list, .gdpr-rights, .service-list, .cookie-types {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
    margin-top: 5px;
    margin-bottom: 5px;
}
.feature-grid li, .value-list li, .usp-list li, .trend-list li, .palette-list li, .lighting-list li, .style-tips li, .post-preview-list li, .service-list li, .cookie-types li {
    background: #F7EBC3;
    border-radius: 17px;
    box-shadow: var(--retro-shadow);
    padding: 26px 18px 22px 18px;
    min-width: 210px;
    min-height: 130px;
    font-size: 1.02rem;
    color: #28344B;
    margin-bottom: 20px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    position: relative;
    border: 3px solid #EAC36E;
    transition: box-shadow 0.2s, border-color 0.18s, transform 0.15s;
}
.feature-grid li:hover, .usp-list li:hover, .palette-list li:hover, .trend-list li:hover, .post-preview-list li:hover, .service-list li:hover {
    border-color: #E08336;
    box-shadow: var(--retro-shadow-hover);
    transform: translateY(-2px) scale(1.01);
    z-index: 1;
}
.feature-grid li img, .usp-list li img, .value-list li img, .service-list li img {
    height: 38px;
    width: auto;
    margin-bottom: 8px;
}
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
    counter-reset: ps;
}
.process-steps li {
    flex: 1 1 200px;
    background: #F7EBC3;
    border: 3px solid #ADC1A8;
    border-radius: 19px;
    box-shadow: var(--retro-shadow);
    padding: 32px 20px 24px 20px;
    margin-bottom: 20px;
    position: relative;
}
.process-steps li:before {
    counter-increment: ps;
    content: counter(ps)'.';
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
    color: #E08336;
    font-size: 2.7rem;
    opacity: 0.11;
    pointer-events: none;
}
.process-steps li img {
    height: 38px;
    width: auto;
    margin-bottom: 8px;
}

.case-study {
    margin-bottom: 35px;
    padding: 26px 24px 18px 24px;
    border-radius: 16px;
    background: #F4EFD3;
    box-shadow: var(--retro-shadow);
    border: 2px solid #EAC36E;
    position: relative;
}
.case-study h3 {
    color: #975E26;
    margin-bottom: 10px;
}
.testimonial-snippet {
    font-style: italic;
    margin-top: 10px;
    color: #3A2C1A;
}
/* Testimonials LIVE */
.testimonials-section h2 { margin-bottom: 10px; }
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 28px;
    margin-bottom: 28px;
    background: #fffdf7;
    border-radius: 18px;
    border: 2.5px solid #EAC36E;
    box-shadow: 0 7px 32px rgba(234,195,110,0.08), 0 1.5px 0 #ADC1A8 inset;
    font-size: 1.13rem;
    transition: box-shadow 0.2s, border-color 0.15s;
}
.testimonial-card:hover {
    border-color: #E08336;
    box-shadow: 0 10px 40px 0 rgba(234,195,110,0.14);
}
.testimonial-card p {
    color: #28344B;
    font-size: 1.13rem;
    margin-bottom: 0px;
}
.testimonial-meta {
    color: #975E26;
    font-size: 1.04rem;
    font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
    font-weight: 600;
}

/* =================== CTA Button Styles ===================== */
.cta-btn, .newsletter-signup button {
    display: inline-block;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #E08336;
    color: #fff;
    border: 2.5px solid #975E26;
    border-radius: 16px;
    padding: 12px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    margin: 10px 0 8px 0;
    box-shadow: var(--retro-shadow);
    transition: background 0.18s, box-shadow 0.28s, color 0.18s, border 0.18s, transform 0.25s;
    letter-spacing: 0.02em;
}
.cta-btn:hover, .cta-btn:focus, .newsletter-signup button:hover {
    background: #975E26;
    color: #fff2e6;
    box-shadow: var(--retro-shadow-hover);
    border-color: #E08336;
    outline: none;
    transform: scale(1.04) translateY(-1px);
}

/* ============ FORMS =========== */
.newsletter-signup {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 12px;
}
.newsletter-signup input[type="email"] {
    padding: 10px 18px;
    font-size: 1rem;
    border-radius: 13px;
    border: 2px solid #A3BAC5;
    background: #FFF9ED;
    transition: border-color 0.18s;
    font-family: 'Open Sans', Arial, sans-serif;
    width: 225px;
    margin-right: 8px;
}
.newsletter-signup input[type="email"]:focus {
    border-color: #E08336;
    outline: none;
}
.newsletter-signup button {
    margin-right: 0;
}

/* ===== SERVICE/ABOUT/VALUES CARDS ===== */
.service-list li {
    min-width: 230px;
    max-width: 400px;
}
.service-price {
    color: #E08336;
    background: #F7EBC3;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    padding: 3px 9px;
    margin-left: 8px;
}
.value-list li, .usp-list li {
    gap: 0px;
    padding-left: 49px;
    position: relative;
}
.value-list li img, .usp-list li img {
    position: absolute;
    left: 16px;
    top: 24px;
    height: 25px;
    width: 25px;
    margin: 0;
    border-radius: 8px;
    background: #eac36e;
    box-shadow: 0 2px 11px #eac36e55;
}

/* ===== BLOG LIST/CATEGORIES ===== */
.categories-list {
    margin-top: 10px;
    font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
    font-weight: 600;
    color: #975E26;
}

/* ===== FOOTER STYLES ===== */
footer {
    background: #28344B;
    color: #F4EFD3;
    padding: 0;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -3px 32px rgba(40,52,75,0.07);
    font-size: 1.0rem;
    margin-top: 44px;
}
.footer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    max-width: 1160px;
    margin: 0 auto;
    padding: 35px 20px 22px 20px;
}
.footer-wrapper img {
    width: 60px;
    height: auto;
    margin-bottom: 6px;
}
.footer-tagline {
    color: #EAC36E;
    font-size: 1.11rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 2px;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    margin-bottom: 12px;
}
.footer-nav a {
    color: #EAC36E;
    font-family: 'Montserrat', Arial, sans-serif;
    text-decoration: underline;
    font-weight: 600;
    font-size: 1rem;
    text-underline-offset: 2px;
    padding: 5px 10px;
    border-radius: 10px;
    transition: background 0.14s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
    background: #FFF9ED;
    color: #975E26;
    outline: none;
}
.footer-info p, .footer-info a {
    color: #F4EFD3;
    opacity: 0.94;
    font-size: 1rem;
    margin-bottom: 2px;
}
.footer-info a {
    color: #EAC36E;
    text-decoration: underline;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 80px 0 70px 0;
    background: repeating-linear-gradient(-32deg,#F4EFD3 0,#FFF9ED 19px,#E9DDC5 43px);
    border-radius: 24px;
}

/* ===== LEGAL SECTIONS ===== */
.legal-section {
    background: #FFF9ED;
    border-radius: 18px;
    padding: 40px 20px;
    margin-bottom: 60px;
    box-shadow: var(--retro-shadow);
}
.legal-section h1, .legal-section h2, .legal-section h3 {
    color: #975E26;
    margin-bottom: 14px;
}
.legal-section a {
    color: #E08336;
    text-decoration: underline;
}

/* =================== COOKIE BANNER ================== */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: #FFF9ED;
    color: #28344B;
    box-shadow: 0 -4px 28px 0 rgba(151,94,38,0.10);
    border-top: 3px solid #E08336;
    z-index: 1204;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 16px 22px 16px;
    font-size: 1.05rem;
    gap: 12px;
    animation: slideUp 0.7s cubic-bezier(.67,.02,.37,1.01);
    will-change: transform,opacity;
}
@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 8px;
}
.cookie-btn {
    font-family: 'Montserrat', Arial, sans-serif;
    padding: 10px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid #E08336;
    background: #EAC36E;
    color: #975E26;
    margin-right: 2px;
    margin-left: 2px;
    box-shadow: var(--retro-shadow);
    transition: background 0.14s, color 0.14s, box-shadow 0.18s;
}
.cookie-btn.accept {
    background: #975E26;
    color: #fff;
    border-color: #EAC36E;
}
.cookie-btn.reject {
    background: #E08336;
    color: #fff;
    border-color: #F7EBC3;
}
.cookie-btn.settings {
    background: #FFF9ED;
    color: #975E26;
    border-color: #EAC36E;
}
.cookie-btn:hover, .cookie-btn:focus {
    background: #E08336;
    color: #fff2e6;
    box-shadow: var(--retro-shadow-hover);
    outline: none;
}

/* ===== COOKIE MODAL ===== */
.cookie-preferences-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 96vw;
    max-width: 420px;
    background: #FFF9ED;
    border-radius: 16px;
    box-shadow: 0 18px 70px 0 rgba(40,52,75,0.22);
    padding: 34px 28px 28px 28px;
    z-index: 1250;
    transform: translate(-50%,-50%) scale(1);
    opacity: 1;
    transition: transform 0.36s, opacity 0.26s;
    animation: fadeInCookieModal 0.85s cubic-bezier(.64,.03,.27,.96);
    display: flex;
    flex-direction: column;
    gap: 22px;
}
@keyframes fadeInCookieModal {
    from { transform: translate(-50%,-38%) scale(0.84); opacity: 0; }
    to   { transform: translate(-50%,-50%) scale(1); opacity: 1; }
}
.cookie-preferences-modal h2 {
    color: #975E26;
    font-size: 1.24rem;
    margin-bottom: 10px;
    text-align: left;
}
.cookie-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 9px;
    padding: 11px 0;
    border-bottom: 1px solid #EAC36E;
}
.cookie-category:last-child {
    border-bottom: none;
}
.cookie-category label {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.01rem;
    color: #28344B;
    font-weight: 500;
    cursor: pointer;
}
.cookie-toggle {
    width: 38px;
    height: 22px;
    border-radius: 11px;
    background: #EAC36E;
    display: inline-block;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
}
.cookie-toggle input {
    display: none;
}
.cookie-toggle span {
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #975E26;
    position: absolute;
    left: 2px;
    top: 2px;
    transition: left 0.3s, background 0.2s;
}
.cookie-toggle input:checked + span {
    left: 18px;
    background: #E08336;
}
.cookie-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 11px;
}
.cookie-modal-close {
    background: none;
    border: none;
    color: #975E26;
    font-size: 1.3rem;
    cursor: pointer;
    position: absolute;
    top: 13px;
    right: 18px;
}

/* =============== UTILITIES =============== */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.d-none { display: none !important; }

/* ================= RESPONSIVE LAYOUTS =================== */
@media (max-width: 1100px) {
    .container {
        max-width: 970px;
    }
    .footer-wrapper {
        max-width: 740px;
    }
}
@media (max-width: 900px) {
    .container { max-width: 99vw; }
    .footer-wrapper { max-width: 99vw; }
    h1   { font-size: 2rem; }
    h2   { font-size: 1.21rem; }
    .feature-grid li, .service-list li, .trend-list li, .palette-list li, .usp-list li, .case-study {
        min-width: 148px; max-width: 100%;
    }
}
@media (max-width: 768px) {
    .hero-section, .features-section, .process-section, .about-section, .testimonials-section, .about-preview-section, .cta-section, .about-cta-section, .why-us-section, .services-section, .case-studies-section, .references-cta-section, .ideas-section, .color-palettes-section, .blog-list-section, .blog-cta-section, .contact-info-section, .contact-cta-section, .thank-you-section, .legal-section {
        padding: 26px 5.5vw;
    }
    h1 { font-size: 1.37rem; }
    h2 { font-size: 1.05rem; }
    .brand-tagline {
        font-size: 0.97rem;
        padding: 5px 9px;
    }
    .feature-grid, .value-list, .usp-list, .trend-list, .palette-list, .lighting-list, .style-tips, .post-preview-list, .service-list, .cookie-types {
        gap: 13px;
        flex-direction: column;
        align-items: stretch;
    }
    .feature-grid li, .case-study, .service-list li, .trend-list li, .palette-list li, .usp-list li, .value-list li, .style-tips li, .lighting-list li, .post-preview-list li {
        min-width: 1px;
        width: 100%;
        padding: 18px 11px 15px 11px;
        font-size: 0.97rem;
    }
    .testimonial-card {
        padding: 16px 10px;
    }
    .main-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
}
@media (max-width: 540px) {
    .container, .footer-wrapper {
        padding-left: 5px;
        padding-right: 5px;
    }
    .branding {
        gap: 7px;
    }
    .hero-section, .features-section, .process-section, .about-section, .testimonials-section, .about-preview-section, .cta-section, .about-cta-section, .why-us-section, .services-section, .case-studies-section, .references-cta-section, .ideas-section, .color-palettes-section, .blog-list-section, .blog-cta-section, .contact-info-section, .contact-cta-section, .thank-you-section, .legal-section {
        padding: 18px 2.5vw;
    }
    .footer-wrapper {
        gap: 9px;
        padding-top: 12px;
        padding-bottom: 9px;
    }
    .brand-tagline {
        margin: 0 0 0 0;
        padding: 3px 5px;
    }
}
/* ========== VINTAGE PATTERNS (add subtle flair) ========== */
.section {
    background-image: repeating-linear-gradient(135deg, #F4EFD3, #F4EFD3 36px, #F7EBC3 37px, #F7EBC3 57px);
    position: relative;
}
.section:before {
    content: "";
    display: block;
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    pointer-events: none;
    opacity: 0.17;
    background: url('data:image/svg+xml;utf8,<svg width="30" height="30" xmlns="http://www.w3.org/2000/svg"><rect x="12" y="12" width="6" height="6" fill="%23E0B974"/></svg>') repeat;
    z-index: 0;
}

/* Keep content above the pattern overlay */
.section > *, .hero-section > * { position: relative; z-index: 1; }

/* Fix for content containers */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

@media (max-width: 768px) {
.text-image-section { flex-direction: column; align-items: stretch; gap: 18px; }
.card-container, .content-grid { gap: 9px; }
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
    outline: 2.5px dashed #E08336;
    outline-offset: 2px;
}


/* ================== END OF STYLES ================== */
