/* ----------- CSS RESET & NORMALIZE ----------- */
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,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
    box-sizing: inherit;
}
ul, ol {
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
    color: inherit;
}
body {
    background: #F6F4F2;
    color: #37484A;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    min-height: 100vh;
}

/* ----------- BRAND COLORS AS CSS VARIABLES ----------- */
:root {
    --color-primary: #37484A;
    --color-secondary: #EFCFAE;
    --color-bg: #F6F4F2;
    --color-accent: #79A883;
    --color-accent-dark: #2A6042;
    --color-sand: #D1BFA2;
    --color-offwhite: #FFFDF9;
    --color-error: #a83232;
    --color-success: #388e3c;
    --color-testimonial-bg: #f8f6ef;
}

/* ----------- TYPOGRAPHY ----------- */
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:700&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab', serif;
    color: var(--color-primary);
    font-weight: 700;
}
h1 {
    font-size: 2.4rem;
    margin-bottom: 16px;
}
h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}
h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}
h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
p, ul, ol, li {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}
section ul, section ol {
    margin-bottom: 18px;
}

.subheadline {
    font-size: 1.15rem;
    color: var(--color-accent-dark);
    margin-bottom: 22px;
    font-family: 'Lato', Arial, sans-serif;
}

strong {
    font-weight: 700;
}

/* ----------- GENERAL LAYOUT STRUCTURE ----------- */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.content-wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 870px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.section {
    margin-bottom: 60px;
    padding: 40px 20px;
}

/* ----------- FLEXBOX PATTERNS ----------- */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    background: var(--color-offwhite);
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(55, 72, 74, 0.08);
    padding: 28px 18px;
    min-width: 250px;
    flex: 1 1 320px;
}

.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;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: var(--color-testimonial-bg);
    padding: 20px;
    border-radius: 18px;
    margin-bottom: 20px;
    box-shadow: 0 1px 10px rgba(42, 96, 66, 0.07);
    color: #1b2b21;
}
.testimonial-card p {
    font-size: 1.06rem;
    line-height: 1.7;
    color: #333b35;
}
.testimonial-card span {
    font-size: 0.98rem;
    color: var(--color-accent-dark);
    font-weight: bold;
    align-self: flex-end;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.features-grid, .service-cards, .blog-categories ul, .footer-content, .contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.features-grid {
    justify-content: space-between;
}
.service-cards {
    margin-bottom: 28px;
}

.feature, .service-card, .article-preview, .case-study {
    background: var(--color-offwhite);
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(55,72,74,0.05);
    padding: 24px 18px;
    flex: 1 1 255px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    min-width: 180px;
    transition: box-shadow 0.22s, transform 0.22s;
}
.feature img, .service-card img, .feature-list img, .contact-details img {
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
    object-fit: contain;
}
.feature:hover, .service-card:hover, .article-preview:hover, .case-study:hover {
    box-shadow: 0 6px 30px rgba(121,168,131,0.18);
    transform: translateY(-4px) scale(1.014);
    cursor: pointer;
}

.article-preview {
    border-left: 6px solid var(--color-accent);
}
.blog-list .content-wrapper {
    gap: 20px;
}
.category {
    color: var(--color-accent-dark);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.case-study {
    border-left: 6px solid var(--color-accent);
    margin-bottom: 20px;
}

.cta {
    background: var(--color-accent);
    padding: 50px 20px;
    border-radius: 24px;
    margin: 60px 0 40px 0;
    box-shadow: 0 4px 24px rgba(42,96,66,0.07);
    display: flex;
    justify-content: center;
}
.cta .content-wrapper {
    align-items: center;
    text-align: center;
}
.cta h2, .cta p {
    color: #fff;
}

.confirmation {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding-top: 40px;
}
.confirmation-message {
    padding: 18px 0;
    color: var(--color-accent-dark);
    font-size: 1.18rem;
}
.next-steps {
    margin-bottom: 28px;
}

.policy {
    background: var(--color-offwhite);
    border-radius: 22px;
    margin: 50px 0;
    padding: 36px 18px;
    box-shadow: 0 2px 14px rgba(121,168,131,0.039);
}

/****** FOOTER ********/
footer {
    margin-top: 42px;
    background: var(--color-primary);
    color: var(--color-offwhite);
    padding: 40px 0 10px 0;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 24px;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-brand {
    flex: 2 1 222px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 200px;
}
.footer-brand img { width: 48px; margin-bottom: 10px; }
.footer-menu,
.footer-menu-legal {
    flex: 1 1 173px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-menu a, .footer-menu-legal a {
    color: var(--color-offwhite);
    opacity: 0.89;
    font-size: 1rem;
    transition: opacity 0.16s;
}
.footer-menu a:hover, .footer-menu-legal a:hover {
    opacity: 1;
    text-decoration: underline;
}
.footer-contact {
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.98rem;
    color: var(--color-sand);
}
.footer-contact img { width: 18px; vertical-align: middle; margin-right: 7px; }
.footer-social {
    flex: 0 1 80px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
}
.footer-social a {
    opacity: 0.92;
    transition: opacity 0.18s;
}
.footer-social a:hover { opacity: 1; }
.footer-copy {
    margin-top: 32px;
    font-size: 0.99rem;
    color: var(--color-secondary);
    text-align: center;
    opacity: 0.76;
    letter-spacing: 0.02em;
}

/* ----------- HEADER & NAV ----------- */
header {
    background: var(--color-offwhite);
    box-shadow: 0 4px 16px rgba(55, 72, 74, 0.03);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 99;
}
header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    min-height: 76px;
    gap: 18px;
}
.logo img {
    height: 46px;
    border-radius: 12px;
    background: none;
}
.main-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 22px;
}
.main-nav a {
    color: var(--color-primary);
    font-family: 'Lato', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.03rem;
    position: relative;
    transition: color 0.16s;
}
.main-nav a:after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
    transition: width 0.18s;
    margin-top: 2px;
}
.main-nav a:hover {
    color: var(--color-accent-dark);
}
.main-nav a:hover:after {
    width: 24px;
}
.cta-btn {
    background: var(--color-accent);
    color: #fff;
    font-family: 'Lato', Arial, sans-serif;
    font-weight: 700;
    border: none;
    padding: 12px 30px;
    border-radius: 26px;
    font-size: 1.08rem;
    box-shadow: 0 3px 18px rgba(42,96,66,0.08);
    transition: background 0.21s, box-shadow 0.21s, transform 0.18s;
    margin-left: 18px;
    letter-spacing: 0.02em;
    cursor: pointer;
    display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
    background: var(--color-accent-dark);
    box-shadow: 0 5px 23px rgba(121,168,131,0.17);
    transform: translateY(-2px) scale(1.03) perspective(48px) skewY(-1.4deg);
    color: #fff;
}
.cta-secondary {
    background: none;
    color: var(--color-accent-dark);
    font-weight: 700;
    border: 2px solid var(--color-accent);
    padding: 10px 28px;
    border-radius: 23px;
    font-size: 1rem;
    margin-top: 16px;
    display: inline-block;
    cursor: pointer;
    transition: background 0.17s, color 0.17s;
}
.cta-secondary:hover, .cta-secondary:focus {
    background: var(--color-accent);
    color: #fff;
}

/* ----------- HAMBURGER & MOBILE MENU ----------- */
.mobile-menu-toggle {
    display: none;
    background: var(--color-accent-dark);
    color: #fff;
    font-size: 2rem;
    padding: 5px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s;
    margin-left: 12px;
    z-index: 111;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
    background: var(--color-accent);
}
.mobile-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(246,244,242,0.97);
    box-shadow: 0 0 80px 20px rgba(55,72,74,0.13);
    z-index: 200;
    display: flex;
    flex-direction: column;
    padding-top: 32px;
    transition: transform 0.34s cubic-bezier(.86,.01,.55,1.02);
    transform: translateX(-100vw);
    opacity: 1;
    pointer-events: none;
}
.mobile-menu.open {
    transform: translateX(0);
    pointer-events: auto;
}
.mobile-menu-close {
    align-self: flex-end;
    margin: 0 24px 24px 0;
    font-size: 2.2rem;
    background: none;
    border: none;
    color: var(--color-accent-dark);
    cursor: pointer;
    transition: color 0.14s;
    z-index: 210;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    color: var(--color-accent);
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding-left: 40px;
}
.mobile-nav a {
    color: var(--color-primary);
    font-family: 'Roboto Slab', serif;
    font-size: 1.21rem;
    font-weight: 700;
    padding: 10px 0 10px 8px;
    border-radius: 8px;
    transition: background 0.12s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: var(--color-accent);
    color: #fff;
}

/* Hide main navigation & show burger on mobile */
@media (max-width: 1024px) {
    .main-nav, .cta-btn {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
}
@media (min-width: 1025px) {
    .mobile-menu {
        display: none !important;
    }
}

/* ----------- HERO & COMMON SECTIONS ----------- */
.hero {
    background: linear-gradient(120deg, #f6f4f2 70%, #EFCFAE 100%);
    padding: 60px 0 40px 0;
    position: relative;
    margin-bottom: 40px;
    border-radius: 0 0 52px 0/50px 0 50px 0;
    box-shadow: 0 12px 58px -22px rgba(121,168,131,0.14);
}
.hero .container, .hero .content-wrapper {
    align-items: flex-start;
    gap: 0;
}
.hero h1 {
    font-size: 2.7rem;
    letter-spacing: -0.02em;
    color: var(--color-accent-dark);
}
.hero .cta-btn {
    margin-top: 24px;
    background: var(--color-primary);
    color: #fff;
}
.hero .cta-btn:hover {
    background: var(--color-accent-dark);
}

/* ----------- SPECIAL ELEMENTS & COMPONENTS ----------- */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #ece6d6;
    font-size: 1.06rem;
}
.guide-list li, .faq-list li, .service-list li, .feature-list li {
    margin-bottom: 0;
}
.faq-list li {
    padding: 12px 0 18px 0;
    border-bottom: 1px solid #e7e0d4;
}
.faq-list {
    margin-bottom: 20px;
}
.service-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.service-details {
    margin-top: 20px;
    padding: 12px 0 0 0;
    border-top: 1px dashed var(--color-accent);
}
.contact-details {
    flex-direction: column;
    gap: 17px;
    margin-bottom: 16px;
}
.contact-details img {
    width: 22px;
    margin-right: 7px;
    vertical-align: middle;
}
.cta-panel {
    background: var(--color-testimonial-bg);
    color: var(--color-accent-dark);
    border-radius: 16px;
    padding: 16px 18px;
    margin: 22px 0;
    border-left: 4px solid var(--color-accent);
    box-shadow: 0 1px 10px rgba(121,168,131,0.04);
}

/****** BLOG CATEGORIES *****/
.blog-categories {
    margin-top: 32px;
}
.blog-categories h4 {
    margin-bottom: 0;
}
.blog-categories ul {
    flex-direction: row;
    gap: 12px;
    margin-top: 8px;
}
.blog-categories a {
    color: var(--color-primary);
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 7px;
    background: #efe7d7;
    transition: background 0.12s,color .12s;
}
.blog-categories a:hover {
    background: var(--color-accent);
    color: #fff;
}

/****** TESTIMONIALS/REVIEWS (ENSURE CONTRAST) *****/
.testimonials {
    background: #F1EEE4;
    padding: 38px 0;
    margin-bottom: 60px;
    border-radius: 32px;
}
.testimonials h2 {
    text-align: center;
    color: var(--color-accent-dark);
}
.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

/****** COOKIE BANNER & MODAL CONSENT *****/
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: var(--color-testimonial-bg);
    color: var(--color-accent-dark);
    box-shadow: 0 -4px 18px rgba(121,168,131,0.13);
    z-index: 3000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    animation: cookieSlideIn 0.72s cubic-bezier(.6,.1,.4,1.2);
}
@keyframes cookieSlideIn {
    0% { transform: translateY(100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-text {
    font-size: 1.01rem;
    max-width: 64vw;
}
.cookie-consent-actions {
    display: flex;
    flex-direction: row;
    gap: 14px;
    align-items: center;
}
.cookie-btn {
    border-radius: 15px;
    padding: 7px 20px;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border: 2px solid var(--color-accent);
    color: var(--color-accent-dark);
    background: #fff;
    cursor: pointer;
    transition: background 0.13s,color 0.13s;
}
.cookie-btn.accept {
    background: var(--color-accent);
    color: #fff;
    border: 2px solid var(--color-accent);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
}
.cookie-btn.reject {
    border: 2px solid var(--color-error);
    color: var(--color-error);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
    background: var(--color-error);
    color: #fff;
}
.cookie-btn.settings {
    border: 2px solid var(--color-accent);
    background: #fff;
    color: var(--color-accent-dark);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
    background: var(--color-secondary);
    color: var(--color-accent-dark);
}
/* COOKIE MODAL */
.cookie-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(34,44,19,0.26);
    z-index: 3100;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    animation: fadeInOverlay .26s linear;
}
@keyframes fadeInOverlay {
    0%{ opacity:0; }
    100%{ opacity:1; }
}
.cookie-modal {
    background: #fff;
    border-radius: 24px 24px 20px 20px/22px 22px 14px 14px;
    max-width: 420px;
    width: 96vw;
    min-height: 220px;
    box-shadow: 0 2px 32px 0 rgba(42,96,66,.21);
    padding: 36px 30px 28px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: modalAppear 0.38s cubic-bezier(.62,.02,.44,1.41);
}
@keyframes modalAppear {
    0%{ transform:scale(.86); opacity:0; }
    85%{ transform:scale(1.07); }
    100%{ transform:scale(1); opacity:1; }
}
.cookie-modal h2 {
    color: var(--color-accent-dark);
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.cookie-modal-close {
    position: absolute;
    top: 11px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2.1rem;
    color: var(--color-error);
    cursor: pointer;
    line-height: 1;
}
.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.7em 0;
    border-bottom: 1px solid #ede9db;
    font-size: 1rem;
}
.cookie-category input[type=checkbox] {
    accent-color: var(--color-accent);
    width: 20px; height: 20px;
}
.cookie-category.essential input[type=checkbox] {
    accent-color: var(--color-accent-dark);
}
.cookie-category.essential label {
    color: var(--color-accent-dark);
    font-weight: 700;
}
.cookie-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 13px;
    margin-top: 16px;
}

/* ----------- MEDIA QUERIES ----------- */
@media (max-width: 1200px) {
    .container {
        max-width: 95vw;
    }
}
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 27px;
    }
    .footer-menu, .footer-menu-legal, .footer-contact {
        min-width: 0;
    }
}
@media (max-width: 800px) {
    .features-grid,
    .service-cards {
        flex-direction: column;
        align-items: stretch;
    }
    .card-container, .content-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .testimonial-slider {
        flex-direction: column;
        gap: 16px;
    }
}
@media (max-width: 768px) {
    .section {
        margin-bottom: 38px;
        padding: 24px 8px;
    }
    .hero {
        padding: 34px 0 22px 0;
        border-radius: 0 0 32px 0/23px 0 38px 0;
    }
    .container {
        padding: 0 10px;
    }
    .content-wrapper {
        padding: 0 2px;
    }
    .text-image-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    .footer-contact, .footer-brand, .footer-menu, .footer-menu-legal {
        width: 100%;
    }
    .cta {
        padding: 23px 8px;
    }
    .policy {
        padding: 18px 7px;
        border-radius: 14px;
    }
    .blog-categories ul {
        flex-direction: column;
        gap: 8px;
    }
    header .container {
        min-height: 54px;
        gap: 5px;
    }
}
@media (max-width: 530px) {
    .container, .content-wrapper,
    .footer-content, .policy {
        padding: 0 2px;
    }
    h1 {
        font-size: 1.55rem;
    }
    h2 {
        font-size: 1.26rem;
    }
    .hero h1 {
        font-size: 1.55rem;
    }
    .cta {
        padding: 14px 2px;
        border-radius: 14px;
    }
    .cookie-consent {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 6px;
    }
    .cookie-consent-text {
        max-width: 99vw;
    }
}

/* ----------- MISC ORGANIC/NATURE EFFECTS ----------- */
body, .section, .card, .feature, .service-card, .article-preview, .case-study, .policy, .hero, .testimonials, .cookie-modal {
    /* Subtle organic shadow */
    box-shadow: 0 2px 10px rgba(121,168,131,0.02), 0 1px 4px rgba(42,96,66,0.01);
}
.card, .feature, .service-card, .testimonial-card, .article-preview, .case-study, .policy {
    /* Soft organic shapes */
    border-radius: 20px 30px 15px 25px/16px 18px 32px 19px;
}
.section, .hero, .testimonials, .policy {
    /* Stylized organic section background edge */
    position: relative;
    overflow: hidden;
}
.section:after, .hero:after, .testimonials:after, .policy:after {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 200px; height: 140px;
    background: rgba(121,168,131,0.09);
    border-radius: 50% 50% 86% 54%/50% 68% 44% 100%;
    filter: blur(7px);
    z-index: 0;
    pointer-events: none;
}
.section:after { right:-40px; bottom:-60px; background:rgba(42,96,66,0.055); width:140px; height:96px; filter:blur(6px); }
.policy:after { right:-13px; bottom:-23px; background:rgba(121,168,131,0.13); width:88px; height:80px; filter:blur(3.5px); }

/****** FOCUS VISIBILITY ******/
:focus-visible {
    outline: 2px solid var(--color-accent-dark);
    outline-offset: 2px;
    border-radius: 3px;
}

/***** HIDE ACCESSIBILITY OUTLINES IF NOT VIA KEYBOARD *****/
:focus:not(:focus-visible) {
    outline: none;
}

/****** TRANSITIONS & MICRO-INTERACTIONS ******/
.card, .feature, .service-card, .cta-btn, .cta-secondary, .article-preview,
.case-study, .main-nav a, .mobile-menu-toggle, .mobile-nav a, .cookie-btn {
    transition: 
        box-shadow .18s cubic-bezier(.6,.07,.29,.9), 
        transform .19s,
        background .20s,
        color .18s;
}
/* --- Subtle hover-up on cards, features, testimonials --- */
.card:hover, .feature:hover, .service-card:hover, .testimonial-card:hover, .article-preview:hover, .case-study:hover {
    box-shadow: 0 9px 32px rgba(121,168,131,0.14);
    transform: translateY(-3px) scale(1.012);
    z-index: 6;
}

/****** PRINT STYLES *******/
@media print {
    header, footer, nav, .mobile-menu, .cookie-consent, .cookie-modal {
        display: none !important;
    }
}

/* Include temporary fallback for custom properties if needed */
html {
    background: var(--color-bg, #F6F4F2);
}
