/* =========================================================
   VITALWOLKE - INDUSTRIAL MODERN CSS THEME
   Author: Senior CSS Developer & UI Designer
   ========================================================= */
/* ======= 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 {
    scroll-behavior: smooth;
}
body {
    background: #23262d; /* Even darker "industrial" base for metallic contrast */
    color: #FAFAFA;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    min-height: 100vh;
    position: relative;
}
img {
    max-width: 100%;
    display: block;
    height: auto;
}
a {
    color: #5AB157;
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-word;
}
a:hover, a:focus {
    color: #8fd59d;
    text-decoration: underline;
}
button {
    font-family: 'Oswald', 'Roboto', Arial, sans-serif;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}
ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
strong {
    font-weight: 700;
}
hr {
    border: 0;
    border-top: 1px solid #55585f;
    margin: 32px 0;
}

/* ======= COLOR VARS & TYPOGRAPHY ======= */
:root {
    --color-primary: #2C3E50;  /* dark steel blue */
    --color-secondary: #5AB157; /* modern fresh green */
    --color-accent: #FAFAFA;   /* crisp whitish accent */
    --color-metallic: #b2bec3; /* metallic silver accent */
    --color-bg: #23262d;       /* dark background */
    --color-card: #282B32;     /* card background */
    --color-border: #4B4E57;   /* border */
    --color-shadow: 0 4px 18px rgba(17,21,26,0.10), 0 1.5px 8px rgba(81,97,109,0.14);
    --font-display: 'Oswald', Arial, sans-serif;
    --font-body: 'Roboto', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-metallic);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 32px; }
h2 { font-size: 1.85rem; margin-bottom: 28px; }
h3 { font-size: 1.4rem; margin-bottom: 20px; }
h4 { font-size: 1.1rem; margin-bottom: 12px; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.1rem; }
}

p, ul, ol, address, li {
    font-family: var(--font-body);
    color: var(--color-accent);
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.65;
}

/* ======= CONTAINER STRUCTURE ======= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: none;
}
@media (max-width: 600px) {
    .section {
        padding: 24px 6px;
        margin-bottom: 36px;
    }
}

/* ====== HEADER & NAVIGATION ======= */
header {
    background: #23262d;
    box-shadow: 0 3px 18px rgba(23,27,35,0.10);
    position: sticky;
    top: 0;
    z-index: 100;
}
header nav {
    display: flex;
    align-items: center;
    gap: 18px;
    height: 68px;
}
header nav a {
    font-family: var(--font-display);
    color: var(--color-accent);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    position: relative;
    border-radius: 3px;
    transition: background 0.15s, color 0.2s;
    font-weight: 500;
}
header nav a:hover, header nav a:focus {
    background: linear-gradient(90deg, #2C3E50 70%, #44495e 100%);
    color: var(--color-secondary);
}
header nav a.cta-primary {
    background: linear-gradient(90deg, #5AB157 70%, #3a8039 100%);
    color: #23262d;
    font-weight: 700;
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(51,66,59,0.20);
    border: none;
    border-radius: 4px;
    transition: background 0.22s, box-shadow 0.22s;
}
header nav a.cta-primary:hover,header nav a.cta-primary:focus {
    background: #67CE62;
    color: #161718;
    box-shadow: 0 4px 16px rgba(80,163,86,0.12), 0 1.5px 10px 1px rgba(81,97,109,0.14);
}

header nav a img {
    height: 42px;
    width: auto;
    margin-right: 18px;
    vertical-align: middle;
}
header nav a:first-child {
    margin-right: 18px;
    padding: 0;
}

/* ======= MOBILE NAVIGATION ======= */
.mobile-menu-toggle {
    display: none;
    background: none;
    color: var(--color-metallic);
    font-size: 2.2rem;
    padding: 6px 18px 6px 10px;
    z-index: 102;
    border-radius: 3px;
    transition: background 0.18s;
}
.mobile-menu-toggle:focus {
    outline: 2px solid var(--color-secondary);
}

@media (max-width: 900px) {
    header nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 14px;
        right: 16px;
    }
}
/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(28,32,38,0.98);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(.7,.18,.27,1.15);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    pointer-events: none;
    opacity: 0;
}
.mobile-menu.active {
    transform: translateX(0);
    pointer-events: auto;
    opacity: 1;
}
.mobile-menu-close {
    align-self: flex-end;
    margin: 23px 28px 10px 0;
    font-size: 2.6rem;
    color: var(--color-metallic);
    border-radius: 2px;
    background: none;
    transition: background 0.18s;
}
.mobile-menu-close:focus {
    outline: 2px solid var(--color-secondary);
}
.mobile-menu-close:hover {
    background: #23262d;
    color: var(--color-secondary);
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    margin-top: 34px;
}
.mobile-nav a {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-metallic);
    text-transform: uppercase;
    letter-spacing: 1.1px;
    margin-bottom: 2px;
    border-radius: 4px;
    padding: 12px 28px;
    width: 100%;
    text-align: center;
    transition: background 0.17s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: var(--color-secondary);
    color: #23262d;
}
@media (min-width: 901px) {
    .mobile-menu {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* ======= HERO ======= */
.hero {
    margin-bottom: 60px;
    padding: 40px 20px 56px 20px;
    background: linear-gradient(110deg,#23262d 60%, #2C3E50 100%);
    box-shadow: 0 3px 16px rgba(38,41,50,0.16);
    border-bottom: 2px solid var(--color-metallic);
}
.hero .content-wrapper {
    align-items: flex-start;
}
.hero h1,
.hero h2 {
    color: #e2e6ea;
    margin-bottom: 18px;
    letter-spacing: 2px;
    text-shadow: 0 1px 8px #11130f38;
}
.hero p {
    font-size: 1.10rem;
    color: #e8f5e9;
    margin-bottom: 26px;
}
.hero .cta-primary {
    margin-top: 8px;
}

/* ======= FLEX PATTERN: FEATURES & GRIDS ======= */
.features, .feature-grid, .step-grid, .card-container, .content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.feature-grid, .content-grid, .step-grid {
    justify-content: space-between;
}
.feature, .step {
    background: var(--color-card);
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    box-shadow: var(--color-shadow);
    padding: 22px 18px;
    min-width: 190px;
    min-height: 190px;
    flex: 1 1 220px;
    align-items: flex-start;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.25s;
    position: relative;
}
.feature:hover, .step:hover {
    transform: translateY(-6px) scale(1.018);
    box-shadow: 0 6px 26px rgba(91,177,87,0.10), 0 2.5px 12px 1px rgba(81,97,109,0.18);
    border-color: var(--color-secondary);
}
.feature img, .step img {
    height: 44px;
    width: 44px;
    margin-bottom: 13px;
    filter: grayscale(0.6) brightness(1.18);
}
.feature h3, .step h3 {
    color: var(--color-secondary);
    margin-bottom: 7px;
    margin-top: 0;
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .feature, .step {
        flex: 1 1 100%;
        min-width: 90%;
    }
    .feature-grid, .step-grid {
        flex-wrap: wrap;
        flex-direction: column;
        gap: 20px;
    }
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: var(--color-shadow);
    margin-bottom: 20px;
    padding: 24px;
    flex: 1 1 300px;
    transition: box-shadow 0.2s, border 0.17s;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 260px;
    max-width: 420px;
}
.card:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 9px 24px rgba(91,177,87,0.07), 0 3.5px 16px 2px rgba(81,97,109,0.15);
}
@media (max-width: 700px) {
    .card-container { flex-direction: column; gap: 18px; }
    .card { min-width: unset; max-width: unset; }
}

/* ======= SECTION PATTERNING & FLEXBOX ALIGNMENTS ======= */
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.text-image-section, .testimonial-card {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .text-image-section, .testimonial-card {
        flex-direction: column;
        gap: 18px;
        align-items: flex-start;
    }
}
.testimonial-card {
    background: var(--color-accent);
    color: #23262d;
    border-radius: 7px;
    border: 1.5px solid #e1e1e2;
    box-shadow: 0 2px 9px rgba(44,62,80,0.13);
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: box-shadow 0.22s, border 0.18s;
}
.testimonial-card p {
    color: #23262d;
    font-size: 1rem;
    margin-bottom: 10px;
}
.testimonial-card span {
    color: #5AB157;
    font-style: italic;
    font-size: 1rem;
}
.testimonial-card:hover {
    box-shadow: 0 6px 16px rgba(44,62,80,0.17);
    border-color: var(--color-secondary);
}

.rating-summary {
    color: var(--color-metallic);
    font-size: 1.09rem;
    margin-top: 16px;
    margin-bottom: 12px;
}
.rating-summary strong {
    color: var(--color-primary);
}
.rating-summary span {
    color: #6d7784;
    font-size: 0.98rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

/* ======= BUTTONS & CTA ======= */
.cta-primary, .cta-secondary, .cookie-btn, .mobile-nav a, .mobile-menu-close, .mobile-menu-toggle {
    font-family: var(--font-display);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    text-transform: uppercase;
    padding: 9px 26px;
    box-shadow: 0 2px 7px rgba(54,75,71,0.11);
    margin: 12px 6px 0 0;
    letter-spacing: 1.5px;
    cursor: pointer;
    outline: none;
    transition: background 0.23s, color 0.23s, box-shadow 0.22s;
    font-weight: 600;
    display: inline-block;
}
.cta-primary {
    background: linear-gradient(85deg, #5AB157 85%, #398438 100%);
    color: #23262d;
}
.cta-primary:hover, .cta-primary:focus {
    background: #72db6d;
    color: #161718;
    box-shadow: 0 4px 16px rgba(80,163,86,0.15);
}
.cta-secondary {
    background: none;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    margin-top: 12px;
}
.cta-secondary:hover, .cta-secondary:focus {
    background: var(--color-secondary);
    color: #23262d;
}

/* ======== LISTS & CONTENT UI ======== */
ul, ol {
    margin: 0 0 22px 0;
    padding-left: 18px;
}
ul li, ol li {
    line-height: 1.7;
    margin-bottom: 9px;
    list-style-type: disc;
    color: #f1f1f1;
    font-size: 1rem;
    font-family: var(--font-body);
}
ul li strong, ol li strong {
    color: var(--color-secondary);
}

.category-list ul, .categories ul {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.category-list li, .categories li {
    background: #292D36;
    color: var(--color-metallic);
    border-radius: 3px;
    padding: 7px 19px;
    font-size: 1rem;
    font-family: var(--font-display);
    text-transform: uppercase;
    margin-bottom: 7px;
    border: 1px solid #4B4E57;
}

/* ====== FORMS & NEWSLETTER SIGNUP ====== */
.signup-form p {
    color: var(--color-accent);
    margin-bottom: 16px;
}
.signup-form ul {
    margin: 12px 0 20px 0;
    padding-left: 24px;
    color: var(--color-secondary);
}
.signup-form li {
    margin-bottom: 8px;
}

/* ====== FOOTER ====== */
footer {
    background: linear-gradient(120deg, #23262d 80%, #2C3E50 100%);
    border-top: 1.5px solid #3F4652;
    padding: 38px 0 20px 0;
    color: #AAB5BD;
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-top: 48px;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}
.footer-brand img {
    height: 39px;
    width: auto;
    margin-bottom: 5px;
}
.footer-brand span {
    color: #b2bec3;
    font-family: var(--font-display);
    letter-spacing: 1px;
    font-size: 1rem;
    margin-bottom: 0;
}
.footer-brand address, .footer-brand div {
    font-family: var(--font-body);
    color: #dfe6e9;
    font-size: 1rem;
}
.footer-nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.footer-nav a {
    color: #b2bec3;
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 3px 13px;
    transition: background 0.16s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
    background: var(--color-secondary);
    color: #23262d;
}
.footer-legal {
    color: #7b8b99;
    font-size: 0.98rem;
    margin-top: 10px;
}
@media (max-width: 768px) {
    footer {
        align-items: flex-start;
        gap: 22px;
        padding: 28px 0 10px 0;
        font-size: 0.97rem;
    }
    .footer-nav { gap: 10px; }
}


/* ====== COOKIES BANNER & MODAL ====== */
.cookie-consent-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: #23262d;
    color: #fafafa;
    border-top: 2.5px solid var(--color-secondary);
    box-shadow: 0 -5px 16px rgba(39,44,52,0.11);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 22px 16px 14px 16px;
    font-size: 1rem;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: transform 0.4s ease, opacity 0.35s;
}
.cookie-consent-banner.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.cookie-consent-banner p {
    color: var(--color-accent);
    margin-bottom: 8px;
    max-width: 680px;
    font-size: 1rem;
}
.cookie-btn {
    background: var(--color-secondary);
    color: #23262d;
    margin-right: 9px;
    font-size: 1rem;
    border: none;
    padding: 9px 17px;
}
.cookie-btn.secondary {
    background: none;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    margin-right: 9px;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
    background: var(--color-secondary);
    color: #23262d;
}
.cookie-btn.reject {
    background: #353c48;
    color: #fab1a0;
    border: 1.5px solid #ff7675;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
    background: #fd5e53;
    color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
    position: fixed;
    left: 0; right: 0; top: 0; bottom: 0;
    background: rgba(44,62,80,0.81);
    z-index: 10002;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.30s;
}
.cookie-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.cookie-modal {
    position: fixed;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%) scale(0.97);
    background: #23262d;
    border: 2.5px solid var(--color-metalic,#b2bec3);
    border-radius: 12px;
    box-shadow: 0 10px 28px 5px rgba(44,62,80,0.23);
    z-index: 10003;
    min-width: 320px;
    max-width: 430px;
    width: 95%;
    padding: 36px 24px 28px 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.37s cubic-bezier(.7,.2,.25,1.2);
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.cookie-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h3 {
    font-size: 1.22rem;
    color: var(--color-metallic);
}
.cookie-modal-category {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 7px;
}
.cookie-modal-category label {
    font-size: 1rem;
    color: var(--color-accent);
}
.cookie-modal .cookie-btn {
    margin-top: 12px;
}
.cookie-modal-close {
    position: absolute;
    top: 13px; right: 20px;
    background: none;
    color: var(--color-metallic);
    font-size: 2rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.1s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
    background: #353e48;
    color: #5AB157;
}
@media (max-width:500px) {
    .cookie-modal { min-width: 80vw; padding: 32px 10px 20px 10px; }
}

/* ===== CARD-BASED & MAIN PATTERNS ===== */
.about-short, .about, .why-choose-us, .services-overview,
.consulting-details, .faq, .recipe-overview, .recipe-tips, .article-list,
.map-hours, .contact-form, .newsletter-signup, .next-steps {
    background: var(--color-card);
    border-radius: 10px;
    box-shadow: var(--color-shadow);
    margin-bottom: 60px;
    padding: 36px 24px;
    border: 1.5px solid var(--color-border);
}

@media (max-width:600px) {
    .about-short, .about, .why-choose-us, .services-overview, .consulting-details, .faq,
    .recipe-overview, .recipe-tips, .article-list, .map-hours, .contact-form, .newsletter-signup,
    .next-steps {
        padding: 20px 7px;
        border-radius: 6px;
    }
}

.text-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.blog-post-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 18px;
}
.blog-post-list article {
    background: var(--color-card);
    border: 1px solid #353e4d;
    border-radius: 6px;
    box-shadow: 0 1.5px 8px rgba(41, 43, 52, 0.09);
    padding: 18px 18px 14px 18px;
    flex: 1 1 270px;
    min-width: 210px;
    transition: box-shadow 0.2s, border 0.18s;
}
.blog-post-list article:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 4px 20px 2px rgba(91,177,87,0.10);
}
.blog-post-list h3 {
    color: var(--color-secondary);
    font-size: 1.12rem;
    margin-bottom: 12px;
}
.blog-post-list p {
    color: var(--color-accent);
    font-size: 1rem;
}
.categories ul {
    gap: 12px;
}
.next-steps {
    background: #23292d;
    border-radius: 8px;
    padding: 15px 16px 8px 16px;
    margin: 18px 0 22px 0;
    box-shadow: none;
    border: 1.2px solid #383d45;
}

/* ===== MAPS + DETAILS ===== */
.map-embed {
    background: #232b32;
    border-radius: 8px;
    padding: 13px 18px;
    margin-top: 14px;
    border: 1px solid #4B4E57;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.map-embed img {
    border-radius: 7px;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 14px;
}
.contact-details img {
    vertical-align: middle;
    margin-right: 8px;
    height: 20px;
}
.map-hours, .contact-form {
    margin-bottom: 60px;
}

/* ===================================
     SPACING, GAPS & FLEX LAYOUTS
   =================================== */
/* Spacing patterns per requirements */
.section { margin-bottom: 60px; padding: 40px 20px; }
.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; }

/* Ensure no overlapping & proper white-space */
main, section, .about-short, .about, .why-choose-us, .services-overview, .consulting-details, .faq, .recipe-overview, .category-list, .recipe-tips, .newsletter-signup, .next-steps {
    margin-bottom: 60px;
}
@media (max-width: 900px) {
    .card-container, .content-grid {
        flex-direction: column;
        gap: 22px;
    }
}

/* Micro-interactions */
.cta-primary, .cta-secondary, .cookie-btn, .footer-nav a {
    transition: background 0.22s, color 0.22s, box-shadow 0.23s, letter-spacing 0.11s;
}
.cta-primary:active, .cta-secondary:active, .cookie-btn:active {
    transform: scale(0.97);
}

/* ====== RESPONSIVE BREAKPOINTS ====== */
@media (max-width: 1200px) {
    .container { max-width: 1000px; }
}
@media (max-width: 900px) {
    .container { max-width: 98vw; }
    .hero { padding: 30px 5px 40px 5px; }
}
@media (max-width: 600px) {
    .container { padding: 0 2vw; }
    h1 { font-size: 1.25rem; }
}

/* ====== UTILS ====== */
.hide { display: none !important; }

/* =========== Custom Scrollbar ========== */
::-webkit-scrollbar {
    width: 10px;
    background: #282b32;
}
::-webkit-scrollbar-thumb {
    background: #353c48;
    border-radius: 8px;
}

/* =========== Misc ========== */
.thanks-message {
    background: #292F33;
    color: var(--color-accent);
    border-radius: 6px;
    padding: 16px 14px;
    margin-bottom: 20px;
    border: 1px solid #434c5a;
    font-size: 1.02rem;
}
.thanks-message strong {
    color: var(--color-secondary);
}

/* ---- Accessibility & Focus States ---- */
a:focus-visible, button:focus-visible, .cookie-btn:focus-visible {
    outline: 2.5px dashed var(--color-secondary);
    outline-offset: 1.5px;
    background: #242c1e;
}

/* ======= INDUSTRIAL FONT IMPORTS ======= */
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
