/* CSS RESET & BASE TYPOGRAPHY */
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;
    font-size: 16px;
    background: #F6F3EF;
    color: #1a1a1a;
    scroll-behavior: smooth;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    font-family: 'Lato', Arial, sans-serif;
    background: #F6F3EF;
    color: #232323;
    line-height: 1.7;
    font-weight: 400;
    min-height: 100vh;
    position: relative;
    overscroll-behavior: none;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Lato:wght@400;700&display=swap');

/* BRAND VARIABLE FALLBACKS */
:root {
  --color-primary: #191A1B; /* For monochrome override */
  --color-secondary: #EDAA43;
  --color-accent: #F6F3EF;
  --color-bg-dark: #111216;
  --color-bg: #FAFAFA;
  --color-text-body: #232323;
  --color-text-heading: #1b1b1d;
  --color-card-bg: #fff;
  --color-card-border: #2a3444;
  --color-link: #232323;
  --color-link-hover: #191A1B;
  --color-grey-light: #e6e6e6;
  --color-grey-medium: #bbb;
  --color-grey-dark: #3a3a3a;
  --box-radius: 16px;
}

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


/* TYPOGRAPHY SCALE (monochrome_sophisticated) */
h1, .hero h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 2.75rem;
    line-height: 1.15;
    color: #111216;
    letter-spacing: -1px;
    margin-bottom: 12px;
}
h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.25;
    color: #181818;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}
h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #242424;
    margin-bottom: 6px;
}
h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    color: #282828;
}
p, li, address, dl, dd {
    font-size: 1.0625rem;
    color: #232323;
    line-height: 1.7;
}
strong {
    font-weight: 700;
    color: #181818;
}
small {
    font-size: 0.94rem;
    color: #3a3a3a;
}
a {
    color: var(--color-link);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}
a:hover, a:focus {
    color: var(--color-primary);
    outline: none;
}
blockquote {
    border-left: 4px solid #191A1B;
    color: #232323;
    font-style: italic;
    padding-left: 20px;
    margin: 16px 0;
}

/* SECTION & GENERAL LAYOUT STYLES */
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: var(--color-card-bg);
    border: 1.5px solid var(--color-card-border);
    border-radius: var(--box-radius);
    box-shadow: 0 2px 12px rgba(36, 40, 50, 0.06), 0 1.5px 3px rgba(24,24,24,0.03);
    margin-bottom: 20px;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.2s;
    position: relative;
}
.card:hover, .card:focus-within {
    box-shadow: 0 4px 24px rgba(20,20,20,0.14);
    transform: translateY(-3px) scale(1.01);
    z-index: 2;
}
.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;
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid #2a2a2a;
    box-shadow: 0 2px 10px rgba(24,24,24,0.09);
    margin-bottom: 24px;
    padding: 20px 28px 20px 20px;
    min-width: 0;
    max-width: 640px;
    transition: box-shadow 0.2s;
}
.testimonial-card p {
    color: #232323;
    font-size: 1.16rem;
    font-style: italic;
}
.testimonial-card span {
    color: #3a3a3a;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.1px;
    margin-top: 3px;
    display: inline-block;
}
.testimonial-card:hover, .testimonial-card:focus-within {
    box-shadow: 0 2px 32px rgba(40, 40, 40, 0.10);
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/* HEADER & NAVIGATION */
header {
    background: #fff;
    border-bottom: 1.5px solid #DEDEDE;
    box-shadow: 0 2px 6px rgba(36,36,36,0.04);
    z-index: 50;
    position: relative;
}
header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    gap: 28px;
}
header nav {
    display: flex;
    align-items: center;
    gap: 26px;
}
header nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #191A1B;
    font-weight: 500;
    font-size: 1.08rem;
    letter-spacing: 0.02rem;
    padding: 4px 1px;
    transition: color 0.18s;
    border-bottom: 2px solid transparent;
}
header nav a:hover, header nav a:focus {
    color: #2A3444;
    border-bottom: 2px solid #2A3444;
}
header .cta-primary {
    margin-left: 30px;
}

.cta-primary {
    display: inline-block;
    background: #191A1B;
    color: #fff !important;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.19rem;
    padding: 12px 34px;
    border-radius: 99px;
    box-shadow: 0 2px 16px rgba(10,10,10,0.12);
    border: none;
    transition: background 0.2s, color 0.2s, transform 0.13s;
    text-align: center;
    cursor: pointer;
    letter-spacing: 0.1px;
}
.cta-primary:hover, .cta-primary:focus {
    background: #343B4D;
    color: #fff;
    transform: translateY(-2px) scale(1.03);
}
.link-secondary {
    color: #191A1B;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    text-decoration: underline;
    font-size: 1rem;
    transition: color 0.2s, text-decoration 0.2s;
}
.link-secondary:hover, .link-secondary:focus {
    color: #2A3444;
    text-decoration: none;
}

/* MOBILE MENU SYSTEM */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 18px;
    right: 24px;
    z-index: 201;
    width: 46px;
    height: 46px;
    background: #191A1B;
    color: #fff;
    font-size: 2.2rem;
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 8px rgba(30,30,30,0.10);
    cursor: pointer;
    justify-content: center;
    align-items: center;
    transition: background 0.22s, color 0.17s, box-shadow 0.18s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
    background: #2A3444;
}
.mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(18,19,22,0.97);
    transform: translateX(100vw);
    transition: transform 0.37s cubic-bezier(.73,.09,.37,1.28);
    z-index: 202;
    padding: 0;
}
.mobile-menu.active {
    transform: translateX(0);
}
.mobile-menu-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.8rem;
    position: absolute;
    top: 18px;
    right: 28px;
    z-index: 204;
    cursor: pointer;
    transition: color 0.16s;
    padding: 0 10px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    color: #EDAA43;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
    gap: 20px;
    padding: 80px 40px 40px 40px;
}
.mobile-nav a {
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.1px;
    margin-bottom: 6px;
    transition: color 0.19s;
    padding: 12px 3px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    color: #EDAA43;
}

@media (max-width: 1024px) {
    header .container {
        flex-direction: row;
        gap: 16px;
    }
    header nav {
        gap: 18px;
    }
}
@media (max-width: 900px) {
    header nav {
        display: none;
    }
    header .cta-primary {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
}

/* HERO AND LISTS */
.hero {
    background: linear-gradient(92deg,#fff 70%, #e5e5e6 100%);
    padding: 54px 0 44px 0;
    margin-bottom: 48px;
    box-shadow: 0 4px 16px rgba(15,15,15,0.03);
}
.hero .container {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
}
.hero h1 {
    margin-bottom: 18px;
    color: #18191C;
}
.hero p {
    font-size: 1.18rem;
    color: #232323;
    margin-bottom: 32px;
}

ul, ol {
    margin-left: 22px;
    padding-left: 4px;
    margin-bottom: 18px;
}
ul li, ol li {
    margin-bottom: 11px;
    padding-left: 0.1em;
}
ul li > div, ol li > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

/* CONTACT INFO */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-info li {
    display: flex;
    align-items: center;
    font-size: 1.08rem;
    gap: 15px;
    color: #202024;
}
.contact-info img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    margin-bottom: 2px;
}
.social-icons a img {
    width: 29px;
    height: 29px;
    filter: grayscale(90%) contrast(116%);
    opacity: 0.77;
    transition: filter .17s, opacity .17s, transform .18s;
}
.social-icons a:hover img {
    opacity: 1;
    filter: grayscale(0%) contrast(130%) brightness(116%);
    transform: scale(1.07);
}

/* FOOTER */
footer {
    background: #18191C;
    color: #fafafa;
    padding: 40px 0 24px;
    margin-top: 48px;
    border-top: 1.5px solid #242529;
    box-shadow: 0 -2px 16px rgba(24,24,24,0.07);
}
footer .container {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}
footer .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}
footer nav a {
    color: #F6F3EF;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 1.08rem;
    opacity: 0.86;
    transition: color 0.16s, opacity 0.18s;
}
footer nav a:hover, footer nav a:focus {
    color: #EDAA43;
    opacity: 1;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 6px;
}
.footer-links a {
    color: #EDAA43;
    font-size: 0.97rem;
    text-decoration: underline;
    font-weight: 500;
    opacity: 0.75;
    transition: opacity 0.12s, color 0.17s;
}
.footer-links a:hover, .footer-links a:focus {
    opacity: 1;
    color: #fff;
}
footer address {
    text-align: center;
    color: #bbb;
    font-size: 1rem;
    margin: 5px 0 0 0;
    font-style: normal;
}
footer small {
    text-align: center;
    color: #505050;
    font-size: 0.92rem;
    opacity: 0.82;
    margin-top: 9px;
}

/* FORMS & INPUTS (if any appear) */
input, textarea, select, button {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 1rem;
    outline: none;
}
input, textarea, select {
    background: #f6f6f6;
    border: 1.5px solid #bbb;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    transition: border-color 0.16s, background 0.13s;
}
input:focus, textarea:focus {
    border-color: #191A1B;
    background: #fff;
}
button {
    cursor: pointer;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; width: 100vw;
    background: #18191C;
    color: #fafafa;
    box-shadow: 0 -2px 14px rgba(16,16,16,0.12);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 22px 32px;
    z-index: 302;
    transition: transform 0.45s cubic-bezier(.62,.36,.34,1.4), opacity 0.19s;
    animation: cookieBannerSlideIn .6s cubic-bezier(.46,.89,.68,1.15);
}
@keyframes cookieBannerSlideIn {
    from { transform: translateY(120%); opacity: 0; }
    to {   transform: translateY(0); opacity: 1; }
}
.cookie-banner.hide {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
}
.cookie-banner .cookie-text {
    flex: 1 1 0%;
    color: #fafafa;
    font-size: 1.06rem;
    margin-right: 32px;
    line-height: 1.5;
}
.cookie-banner .cookie-actions {
    display: flex;
    gap: 14px;
}
.cookie-banner .cookie-btn {
    padding: 10px 28px;
    border-radius: 99px;
    font-family: 'Montserrat', Arial, sans-serif;
    border: none;
    font-weight: 600;
    font-size: 1.02rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.09);
    outline: none;
    transition: background 0.17s, color 0.18s, box-shadow 0.18s;
}
.cookie-banner .cookie-btn.accept {
    background: #2A3444;
    color: #fff;
}
.cookie-banner .cookie-btn.accept:hover, .cookie-banner .cookie-btn.accept:focus {
    background: #191A1B;
    color: #fff;
}
.cookie-banner .cookie-btn.reject {
    background: #fff;
    color: #2A3444;
    border: 1.5px solid #2A3444;
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
    background: #E4E4E4;
    color: #191A1B;
}
.cookie-banner .cookie-btn.settings {
    background: transparent;
    color: #fff;
    border: 1.2px solid #bbb;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
    background: #242629;
    color: #EDAA43;
    border-color: #EDAA43;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(16,16,20,0.74);
    z-index: 304;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cookieModalIn .37s cubic-bezier(.42,.92,.56,1.12);
}
@keyframes cookieModalIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.cookie-modal {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.19);
    padding: 38px 32px 32px;
    min-width: 320px;
    max-width: 99vw;
    min-height: 220px;
    max-height: 85vh;
    color: #232323;
    font-family: 'Lato', Arial, sans-serif;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.cookie-modal h2 {
    font-size: 1.32rem;
    color: #1b1b1b;
}
.cookie-modal .close {
    position: absolute;
    top: 14px;
    right: 22px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #202024;
    cursor: pointer;
    transition: color 0.19s;
}
.cookie-modal .close:hover,
.cookie-modal .close:focus { color: #EDAA43; }
.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-bottom: 10px;
}
.cookie-category {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f4f4f6;
    padding: 14px 12px 12px;
    border-radius: 12px;
    border: 1px solid #e2e2e2;
}
.cookie-category label {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    color: #18191C;
    font-size: 1rem;
    margin-bottom: 3px;
}
.cookie-category input[type=checkbox],
.cookie-category input[type=radio] {
    accent-color: #2a3444;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    cursor: pointer;
}
.cookie-category .category-desc {
    color: #555;
    font-size: 0.98rem;
    gap: 2px;
}
.cookie-modal .modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}
.cookie-modal .cookie-btn {
    padding: 10px 26px;
    font-size: 1rem;
    border-radius: 99px;
    border: none;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    background: #2A3444;
    color: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.10);
    transition: background 0.18s, color 0.19s;
}
.cookie-modal .cookie-btn.alt {
    background: transparent;
    color: #191A1B;
    border: 1.3px solid #2A3444;
}
.cookie-modal .cookie-btn.alt:hover, .cookie-modal .cookie-btn.alt:focus {
    background: #f0f0f2;
    color: #2A3444;
}
.cookie-modal .cookie-btn:not(.alt):hover, .cookie-modal .cookie-btn:not(.alt):focus {
    background: #1a1a1e;
}

/* MEDIA QUERIES: RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .container {
        max-width: 950px;
    }
    .section {
        padding: 32px 10px;
        margin-bottom: 40px;
    }
    .hero {
        padding: 40px 0 32px 0;
    }
}
@media (max-width: 900px) {
    .hero .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
}
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    .content-grid, .card-container {
        gap: 14px;
    }
    .content-wrapper {
        gap: 20px;
    }
    .section {
        margin-bottom: 32px;
        padding: 24px 4px;
    }
    .hero {
        padding: 24px 0 20px 0;
        margin-bottom: 24px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    header .container {
        gap: 0;
        height: 62px;
    }
    .card, .testimonial-card {
        min-width: 0;
        max-width: 98vw;
        padding: 16px !important;
    }
    .testimonial-card {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        padding: 14px 9px 14px 12px;
    }
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 16px 8px 19px 16px;
    }
    .cookie-banner .cookie-text {
        margin-right: 0;
        font-size: 0.97rem;
    }
    .cookie-modal {
        padding: 24px 9px 16px 13px;
    }
    .mobile-nav {
        padding: 68px 16px 20px 18px;
        gap: 14px;
    }
    .footer-links {
        gap: 5px;
    }
}
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    h1, .hero h1 { font-size: 1.44rem; }
    h2 { font-size: 1.11rem; }
    .cta-primary {
        padding: 10px 16px;
        font-size: 1rem;
    }
}

/* VISUAL & MICRO-INTERACTIONS */
.card, .testimonial-card, .cookie-modal, .cookie-banner {
    transition: box-shadow 0.23s, background 0.19s, color 0.13s;
}
.cta-primary, .cookie-btn {
    transition: background 0.19s, color 0.17s, border 0.16s, box-shadow 0.14s, transform 0.15s;
}

/* MONOCHROME BRAND PERSONALITY ADJUST */
body, .section, .hero {
    background: #F6F3EF;
}
h1, h2, h3, h4, h5, h6, strong, .cta-primary {
    color: #191A1B;
}
.card, .testimonial-card, .cookie-modal {
    background: #fff;
    border-color: #d3d3d7;
}

/* COMPATIBILITY AND ACCESSIBILITY OVERRIDES */
:focus {
    outline: 2px solid #EDAA43;
    outline-offset: 2px;
}