/* ==================================================    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, main, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
    display: block;
}
body {
    line-height: 1.6;
    background: #fcf7ef;
    font-family: 'Roboto', Arial, sans-serif;
    color: #22252a;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img {
    border: 0;
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
ul, ol {
    list-style: none;
}
:focus {
    outline: 2px dashed #F7B32B;
    outline-offset: 2px;
}

/* =======================    FONTS - VINTAGE RETRO STYLE    ================================ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');
:root {
  --color-primary: #17405C;
  --color-secondary: #FAFAFA;
  --color-accent: #F7B32B;
  --color-bg: #fcf7ef;
  --color-muted: #f3e8d2;
  --color-error: #D7263D;
  --shadow-card: 0 4px 20px rgba(36,27,14,0.11);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --card-radius: 18px;
}

/* =================    RETRO COLORS + VINTAGE ACCENTS ==================== */
body {
  background: var(--color-bg);
  color: #22252a;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--color-primary);
    letter-spacing: 0.02em;
    margin-bottom: 0.5em;
    text-shadow: 1px 2px 0 #f3e8d2;
}
h1 {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 16px;
}
h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 18px;
}
h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #353329;
    margin-bottom: 8px;
}
h4, h5, h6 {
    font-size: 1.1rem;
    font-weight: 600;
}
p, ul, ol, li {
    font-family: var(--font-body);
    font-size: 1.06rem;
    margin-bottom: 1em;
    font-weight: 400;
    color: #22252a;
}
strong {
    color: var(--color-primary);
    font-weight: 700;
}
.tagline {
    font-family: var(--font-display);
    font-size: 1.19rem;
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-top: 12px;
    margin-bottom: 0;
}

/* ==================   SECTION SPACING & CONTAINERS =================== */
.container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 24px;
}
.section, section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: none;
}
.content-wrapper {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.text-section {
    background: var(--color-secondary);
    border-radius: var(--card-radius);
    padding: 32px 24px;
    box-shadow: 0 2px 10px rgba(36,27,14,0.05);
}

.feature-grid, .service-list, .features-section .content-wrapper, .testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.feature-item, .service-item {
    background: var(--color-muted);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-card);
    padding: 32px 24px 24px 24px;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    min-width: 210px;
    max-width: 320px;
    transition: box-shadow .2s, transform .2s;
}
.service-item img, .feature-item img {
    width: 45px;
    height: 45px;
    filter: drop-shadow(1px 4px 0 #fae0a3);
}
.feature-item:hover, .service-item:hover {
    box-shadow: 0 8px 24px rgba(23,64,92,0.19);
    transform: translateY(-4px) scale(1.025);
}
.features-section .content-wrapper, .feature-list {
    gap: 24px;
}
.feature-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.feature-list li {
    background: var(--color-muted);
    padding: 16px 18px;
    border-radius: 14px;
    box-shadow: var(--shadow-card);
    font-family: var(--font-display);
    font-size: 1.08rem;
    margin-right: 0;
    margin-bottom: 0;
}

/****** ============================    HERO SECTION ======================== *****/
.hero-section {
    background: linear-gradient(90deg,#f3e5bc 0%,#e6c888 50%,#fcf7ef 100%);
    border-bottom: 6px double var(--color-accent);
    margin-bottom: 60px;
    padding: 44px 0 44px 0;
    box-shadow: 0 2px 24px rgba(23,64,92,.04);
}
.hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-section .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.hero-section h1 {
    font-size: 2.45rem;
    color: #23241f;
    text-shadow: 2px 3px 0 #f7b32b70;
}
.hero-section p {
    color: #5a5132;
    font-size: 1.15rem;
    letter-spacing: 0.025em;
}

/************ CARD & TESTIMONIAL STYLES ************/
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    background: var(--color-muted);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-card);
    padding: 24px 20px;
    min-width: 245px;
    max-width: 340px;
    transition: box-shadow .2s;
}
.card:hover {
    box-shadow: 0 8px 20px rgba(35,36,31,0.16);
    z-index: 1;
}

/************ TESTIMONIAL STYLES ************/
.testimonials-section {
    background: #ede7cf;
    border-top: 4px dotted #e3c278;
    border-bottom: 4px dotted #e3c278;
    padding-top: 38px;
    padding-bottom: 38px;
}
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 24px 18px 24px;
    background: #fffefa;
    border-radius: 15px;
    box-shadow: 0 2px 12px rgba(23,64,92,.12);
    border: 2px dashed #e7c580;
    min-width: 210px;
    max-width: 355px;
    margin-bottom: 20px;
    transition: box-shadow 0.18s;
}
.testimonial-card:hover {
    box-shadow: 0 8px 22px #d9ca9a70;
}
.testimonial-card p {
    font-size: 1.13rem;
    font-family: var(--font-body);
    color: #22252a;
    margin-bottom: 4px;
}
.testimonial-meta {
    font-size: .98rem;
    color: #17405C !important;
    font-family: var(--font-display);
    letter-spacing: .01em;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}
.testimonial-meta span {
    font-size: 1.12em;
    color: var(--color-accent);
    margin-left: 7px;
    letter-spacing: 0.08em;
}

/*******************  MAIN NAVIGATION  ********************/
header {
    background: #fffbe7;
    box-shadow: 0 2px 14px #c7b98b23;
    z-index: 99;
    position: sticky;
    top: 0;
    width: 100%;
    min-height: 70px;
    display: flex;
    align-items: center;
}
.header-logo {
    padding: 14px 0 14px 21px;
    display: flex;
    align-items: center;
}
.header-logo img {
    height: 46px;
}
.main-navigation {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 30px;
}
.main-navigation a {
    font-family: var(--font-display);
    font-size: 1.09rem;
    color: #3b2d1a;
    padding: 8px 16px;
    border-radius: 10px;
    transition: background .15s;
    background: transparent;
}
.main-navigation a:not(.cta-primary):hover {
    background: var(--color-accent);
    color: #fff;
    filter: drop-shadow(0 2px 6px #f7b32b56);
}
.main-navigation .cta-primary {
    background: var(--color-primary);
    color: #FAFAFA;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 12px;
    box-shadow: 0 4px 16px #17405c30;
    margin-left: 18px;
    letter-spacing: 0.04em;
    border: 2px solid #193d4c;
    transition: background .18s, color .18s, transform .16s;
}
.main-navigation .cta-primary:hover, .main-navigation .cta-primary:focus {
    background: var(--color-accent);
    color: #1b2030;
    border: 2px solid #f7b32b;
    transform: scale(1.04);
}

/*******************  BURGER MENU FOR MOBILE  ********************/
.mobile-menu-toggle {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 2.3rem;
    padding: 8px 16px;
    cursor: pointer;
    display: none;
    z-index: 1201;
    transition: color .19s, transform .19s;
}
.mobile-menu-toggle:active {
    color: #b05b11;
    transform: rotate(-17deg) scale(1.12);
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #F7B32B;
    background: linear-gradient(100deg,#f3e8d2 70%,#f7b32b 100%);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: stretch;
    box-shadow: 6px 0 34px #956c1a42;
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.48,0.26,0.36,1.01);
    z-index: 1200;
    opacity: 1;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    background: none;
    border: none;
    color: #815102;
    font-size: 2.3rem;
    align-self: flex-end;
    margin: 22px 22px 0 0;
    cursor: pointer;
    z-index: 1301;
    transition: color .21s, transform .21s;
}
.mobile-menu-close:active {
    color: var(--color-primary);
    transform: scale(1.09) rotate(-15deg);
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 52px 0 0 38px;
    gap: 18px;
}
.mobile-nav a {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: #2d230c;
    padding: 10px 20px 10px 0;
    background: none;
    border-radius: 8px;
    transition: background .13s, color .13s, transform .13s;
}
.mobile-nav a:hover {
    background: #f7b32bab;
    color: #fff;
    transform: scale(1.03);
}

/* =============== COOKIE CONSENT BANNER BOTTOM =============== */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ede7cf;
    border-top: 4px double #f7b32b;
    color: #42331a;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 -2px 17px #c7b98b3a;
    opacity: 1;
    transition: opacity .24s, transform .22s;
    transform: translateY(0);
    padding: 18px 18px 16px 18px;
    font-size: 1.03rem;
}
.cookie-banner.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateY(70px);
}
.cookie-banner .cookie-text {
    margin-bottom: 12px;
    color: #2d230d;
    font-family: var(--font-body);
}
.cookie-banner .cookie-actions {
    display: flex;
    gap: 15px;
}
.cookie-btn {
    font-family: var(--font-display);
    font-size: 1.08rem;
    border: none;
    border-radius: 10px;
    padding: 8px 22px;
    cursor: pointer;
    margin: 0;
    background: var(--color-secondary);
    color: var(--color-primary);
    font-weight: 700;
    transition: background .15s, color .15s;
    box-shadow: 0 0.5px 2px #cab56523;
}
.cookie-btn.accept {
    background: var(--color-accent);
    color: #212530;
    border: 2px solid #d28a17;
}
.cookie-btn.accept:hover {
    background: var(--color-primary);
    color: #fff;
}
.cookie-btn.reject {
    background: #f3e8d2;
    color: #7c1f19;
    border: 2px solid #d7263d31;
}
.cookie-btn.reject:hover {
    background: #D7263D;
    color: #fff;
}
.cookie-btn.settings {
    background: #fffefa;
    color: #623f1a;
    border: 2px dashed #bf9145;
}
.cookie-btn.settings:hover {
    background: #f7b32b;
    color: #fff;
    border: 2px solid #f7b32b;
}

/* ===== COOKIE MODAL ===== */
.cookie-modal-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(60,54,36,0.35);
    z-index: 3998;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    pointer-events: all;
    transition: opacity .18s;
}
.cookie-modal-backdrop.hide {
    opacity: 0;
    pointer-events: none;
}
.cookie-modal {
    background: #fffefa;
    border: 2px solid #f7b32b;
    border-radius: 18px;
    padding: 28px 32px 24px 32px;
    max-width: 410px;
    z-index: 3999;
    box-shadow: 0 14px 50px #a9905b35;
    display: flex;
    flex-direction: column;
    gap: 17px;
    animation: modalPop 0.4s cubic-bezier(.73,-0.08,.48,1.4);
}
@keyframes modalPop {
  0% { transform: scale(0.87) translateY(44px); opacity:0; }
  90% { transform: scale(1.04) translateY(-6px); }
  100% { transform: scale(1.0) translateY(0); opacity:1; }
}
.cookie-modal h3 {
    font-size: 1.27rem;
    color: var(--color-primary);
    margin-bottom: 0.15em;
}
.cookie-modal .modal-close {
    background: none;
    border: none;
    color: #bb890d;
    font-size: 1.8rem;
    position: absolute;
    top: 17px; right: 17px;
    cursor: pointer;
    transition: color .12s;
    z-index: 5001;
}
.cookie-modal .modal-close:hover {
    color: #efbd2a;
}
.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cookie-category label {
    font-size: 1.06rem;
    font-family: var(--font-body);
    color: #3a342a;
}
.cookie-category input[type=checkbox]{
    accent-color: #f7b32b;
    width: 19px;
    height: 19px;
    margin: 0 8px 0 0;
    border: 1.8px solid #f7b32b;
    border-radius: 3px;
}
.cookie-category input[disabled],
.cookie-category input[disabled] + label {
    opacity: 0.5;
    cursor: not-allowed;
}
.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 18px;
}

/*****************   FOOTER    *****************/
footer {
    background: linear-gradient(100deg, #fffbe7 65%, #F7B32B10 100%);
    border-top: 6px double #f7b32b;
    color: #2a222e;
    margin-top: 56px;
    padding: 38px 0 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.footer-logo {
    margin-bottom: 12px;
}
.footer-logo img {
    height: 33px;
}
.footer-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-bottom: 10px;
}
.footer-navigation a {
    font-family: var(--font-display);
    font-size: 1.07rem;
    color: #674e17;
    text-decoration: underline dashed #f7b21b44 1.5px;
    transition: color .18s, background .18s;
}
.footer-navigation a:hover {
    background: var(--color-accent);
    color: #fff;
    padding: 3px 8px;
    border-radius: 6px;
}
.footer-meta {
    font-size: 1rem;
    color: #745c31;
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: center;
}
.footer-meta a {
    color: #426b96;
    text-decoration: underline wavy #e4c34a;
}
.footer-meta a:hover {
    color: #f7b32b;
}

/*****************  CONTACT PAGE SPECIALS  *****************/
.contact-info-section ul.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 26px;
}
.contact-info-section ul.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.13rem;
    background: #faedd8;
    border-radius: 12px;
    padding: 12px 19px;
    color: #173447;
    letter-spacing: 0.02em;
    box-shadow: 0 1px 8px #e6c8881F;
}
.contact-info-section ul.contact-list img {
    width: 24px;
    height: 24px;
}
.privacy-hint {
    margin-top: 18px;
    font-size: 0.98rem;
    color: #9e7b36;
    background: #fff2c5;
    padding: 7px 14px;
    border-radius: 5px;
}

/**** CONFIRMATION ****/
.confirmation-section .content-wrapper {
    align-items: center;
    text-align: center;
}
.confirmation-section h1 {
    font-size: 2.4rem;
}

/****************  GENERAL BUTTONS  *****************/
.btn, .cta-primary {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #f4f2e9;
    background: var(--color-accent);
    border: 2.2px solid #e1a123;
    border-radius: 16px;
    text-shadow: 0 2px 4px #9e7b3611;
    box-shadow: 0 2px 10px #f7b32b29;
    margin-top: 15px;
    cursor: pointer;
    transition: background .20s, color .20s, transform .15s, box-shadow .18s;
}
.btn:hover, .cta-primary:hover, .cta-primary:focus {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 7px 18px #0a2056cc;
    transform: translateY(-2px) scale(1.04);
}

/*****************    LINKS  **********************/
a {
    color: #225694;
    transition: color .14s, border-bottom .14s;
}
a:hover, a:focus {
    color: #f7b32b;
}

/*****************   LISTS  *********************/
ul, ol {
    margin-bottom: 14px;
    padding-left: 18px;
}
ul li, ol li {
    margin-bottom: 10px;
    list-style: disc inside;
}
.text-section ul {
    margin-bottom: 14px;
}

/*****************    RETRO BORDERS AND ACCENTS   *********************/
section, .card, .feature-item, .service-item {
    border: none;
    position: relative;
}
.feature-item:before, .service-item:before {
    content: '';
    position: absolute;
    left: 12px;
    top: 10px;
    width: 32px;
    height: 8px;
    background: #f7b32b33;
    border-radius: 6px;
    filter: blur(2px);
    z-index: 0;
}
.card:hover:after, .feature-item:hover:after, .service-item:hover:after {
    content: '';
    position: absolute;
    right: 10px;
    bottom: 12px;
    width: 22px;
    height: 8px;
    background: #b6a05b44;
    border-radius: 4px;
    filter: blur(1px);
    z-index: 0;
}

/*****************     SPACING, GAPS     *********************/
.card-container, .content-grid, .feature-grid, .service-list, .testimonials-grid {
    gap: 20px;
}
.card, .feature-item, .service-item, .testimonial-card {
    margin-bottom: 20px;
}
.section, section {
    margin-bottom: 60px;
    padding: 40px 20px;
}
.testimonials-section, .features-section, .services-section {
    margin-bottom: 60px;
}

/********************   FLEXBOX RESPONSIVE LAYOUTS   **********************/
.content-wrapper, .content-grid, .feature-grid, .service-list, .testimonials-grid, .feature-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    flex-direction: column;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/***************   RESPONSIVE DESIGN - MOBILE FIRST, MEDIA QUERIES *************/
@media (max-width: 1024px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    header, .main-navigation {
        gap: 10px;
    }
}
@media (max-width: 900px) {
    .feature-grid, .service-list, .testimonials-grid, .card-container {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 5vw;
    }
    .section, section {
        padding: 30px 3vw;
        margin-bottom: 38px;
    }
    .hero-section {
        padding: 34px 0 34px 0;
    }
    .footer-navigation, .content-wrapper, .feature-list ul, .feature-grid, .service-list, .testimonials-grid, .card-container {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .feature-item, .service-item, .testimonial-card, .card {
        max-width: 100%;
        min-width: 0;
    }
    .main-navigation {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: block !important;
    }
    .header-logo {
        padding-left: 13px;
    }
    .text-image-section {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}
@media (max-width: 530px) {
    .container {
        padding: 0 6px;
    }
    .section, section {
        padding: 20px 2.5vw;
    }
    h1 { font-size: 1.65rem; }
    h2 { font-size: 1.19rem; }
}

/********  HIDE ON DESKTOP, SHOW ON MOBILE (MENU)  *******/
@media (min-width: 769px) {
    .main-navigation {
        display: flex !important;
    }
    .mobile-menu-toggle, .mobile-menu {
        display: none !important;
    }
}

/*****************   PRINT STYLES   *******************/
@media print {
    .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal, .footer-navigation, .footer-meta {
        display: none !important;
    }
}

/* ================= VINTAGE DECORATIVE ELEMENTS ================= */
section::before {
    content: '';
    display: block;
    width: 60px;
    height: 8px;
    background: #f7b32b28;
    border-radius: 8px 8px 0 0;
    margin: 0 auto 16px auto;
    box-shadow: 0 1px 4px #b3933d22;
}

/* =============== ACCESSIBILITY FOCUS ================ */
:focus-visible {
    outline: 3px dashed #F7B32B;
    outline-offset: 1.5px;
}

/* ================= SCROLLBAR RETRO =============== */
::-webkit-scrollbar {
    width: 9px;
    background: #e6c888;
}
::-webkit-scrollbar-thumb {
    background: #f7b32b;
    border-radius: 11px;
    border: 2px solid #e6c888;
}

/* =================  RETRO SHADOW EFFECT ============ */
.card, .feature-item, .service-item, .testimonial-card {
    box-shadow: 0 3px 11px #4c487815;
}

/* ==================  ANIMATION =============== */
.card, .feature-item, .service-item, .testimonial-card, .btn, .cta-primary {
    transition: box-shadow 0.17s, transform 0.16s;
}
