/* --- 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; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1.5;
    font-family: 'Georgia', Times, 'Times New Roman', serif;
    background: #E9E6E2;
    color: #1A2634;
    min-height: 100vh;
}
ul, ol { list-style: disc; margin-left: 1.5em; }
li { margin-bottom: 10px; }
img { display: block; max-width: 100%; height: auto; }
a { color: #1A2634; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #D39A32; text-decoration: underline; }

/* --- BRAND TYPOGRAPHY --- */
:root {
  --color-primary: #1A2634;
  --color-secondary: #E9E6E2;
  --color-accent: #D39A32;
  --color-card: #fff;
  --color-muted: #ded9d1;
  --color-shadow: rgba(26, 38, 52, 0.09);
  --color-shadow-strong: rgba(26, 38, 52, 0.12);
  --font-serif: 'Georgia', Times, 'Times New Roman', serif;
  --font-sans: 'Open Sans', Arial, sans-serif;
  --font-display: 'Montserrat', 'Georgia', serif;
}

body {
    font-family: var(--font-serif);
    font-size: 16px;
    background: var(--color-secondary);
    color: var(--color-primary);
    line-height: 1.8;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1.15rem; margin-bottom: 12px; }
p, ul, ol {
    max-width: 700px;
    margin-bottom: 18px;
    color: #313535;
}
strong { font-weight: bold; color: var(--color-primary); }

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

/* --- HEADER/NAVIGATION --- */
header {
    background-color: var(--color-card);
    box-shadow: 0 2px 10px var(--color-shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}
header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    gap: 24px;
}
header img {
    height: 44px;
    width: auto;
}
.main-nav {
    display: flex;
    gap: 18px;
    align-items: center;
}
.main-nav a {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--color-primary);
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
    color: var(--color-accent);
    background: var(--color-muted);
}
.btn-primary {
    font-family: var(--font-display);
    background: var(--color-accent);
    color: #fff;
    border-radius: 6px;
    border: none;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 8px var(--color-shadow);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.25s, transform 0.18s;
    margin-left: 16px;
    text-align: center;
    display: inline-block;
    position: relative;
}
.btn-primary:hover, .btn-primary:focus {
    background: #c5881d;
    color: #fff;
    box-shadow: 0 4px 18px var(--color-shadow-strong);
    transform: translateY(-2px) scale(1.035);
}

.mobile-menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-primary);
    margin-left: 16px;
    z-index: 201;
    transition: color 0.2s;
}
.mobile-menu-toggle:focus {
    outline: 2px solid var(--color-accent);
}

/* --- MOBILE MENU --- */
.mobile-menu {
    display: none;
    position: fixed;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: var(--color-card);
    box-shadow: 0 5px 64px rgba(35,30,15,0.16);
    z-index: 500;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.36,1.01,.48,1), opacity 0.3s;
    opacity: 0;
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.mobile-menu.open {
    display: flex;
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.45s cubic-bezier(.24,1.17,.40,1), opacity 0.3s;
}
.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2.3rem;
    color: var(--color-primary);
    position: absolute;
    right: 21px;
    top: 21px;
    cursor: pointer;
    z-index: 9999;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    margin-top: 80px;
    align-items: center;
}
.mobile-nav a {
    font-family: var(--font-serif);
    font-size: 1.18rem;
    color: var(--color-primary);
    padding: 12px 0;
    width: 90%;
    text-align: left;
    border-radius: 5px;
    background: none;
    transition: background 0.2s, color 0.2s;
    display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: var(--color-muted);
    color: var(--color-accent);
}
@media (max-width: 992px) {
    .main-nav { display: none; }
    .btn-primary { margin-left: 8px; }
    .mobile-menu-toggle { display: block; }
}
@media (min-width: 993px) {
    .mobile-menu { display: none !important; }
}

/* --- SECTION LAYOUTS & FLEXBOX PATTERNS --- */
section, .section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: transparent;
}
.hero-section {
    background: #f7f6f3;
    border-radius: 0 0 12px 12px;
    min-height: 320px;
    box-shadow: 0 2px 10px var(--color-shadow);
    margin-bottom: 48px;
    display: flex; flex-direction: column; justify-content: center;
}
.cta-section {
    background: var(--color-muted);
    border-radius: 16px;
    box-shadow: 0 2px 10px var(--color-shadow-strong);
    margin-bottom: 40px;
}
.cta-section.accent {
    background: var(--color-accent);
    color: #fff;
}
.cta-section.accent h2,
.cta-section.accent p {
    color: #fff;
}

.card-container, .card-grid, .feature_grid, .content-grid, .features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.card {
    background: var(--color-card);
    border-radius: 14px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px var(--color-shadow);
    overflow: hidden;
    position: relative;
    padding: 32px 24px;
    min-width: 280px;
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.feature_grid {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.feature_grid li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-serif);
    font-size: 1.09rem;
    color: #313535;
    background: var(--color-card);
    border-radius: 8px;
    padding: 16px 18px;
    box-shadow: 0 1px 6px var(--color-shadow);
    transition: box-shadow 0.2s, transform 0.18s;
}
.feature_grid li:hover {
    box-shadow: 0 5px 22px var(--color-shadow-strong);
    transform: translateY(-2px) scale(1.01);
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    color: #23272e;
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--color-shadow);
    padding: 20px;
    margin-bottom: 20px;
    font-size: 1.08rem;
    max-width: 600px;
    min-width: 240px;
}
.testimonial-card p {
    color: #23272e;
    font-family: var(--font-serif);
    font-size: 1.12rem;
    margin: 0 0 10px 0;
}
.testimonial-card strong {
    color: var(--color-accent);
    font-family: var(--font-display);
    font-size: 1rem;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.text-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.visual_identity {
    margin-top: 16px;
    display: flex;
    align-items: flex-end;
}

.brand_accolades {
    background: #fff8ea;
    border-left: 4px solid var(--color-accent);
    border-radius: 0 8px 8px 0;
    padding: 14px 24px;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: #694e16;
    margin-top: 16px;
}

.section:last-child { margin-bottom: 0; }

/* --- TIPS / FAQ / STRONG / LISTS --- */
.tips-section ul, .faq-section ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 22px;
}
.tips-section li, .faq-section li {
    margin-bottom: 14px;
    font-size: 1.04rem;
}

/* --- POLICY PAGES & LEGAL --- */
.policy-section {
    background: #faf9f7;
    border-radius: 12px;
    box-shadow: 0 1px 7px var(--color-shadow);
    margin-bottom: 44px;
}

/* --- THANK YOU PAGE --- */
.thankyou-section {
    margin: 0 auto 60px auto;
    padding: 56px 24px 80px 24px;
    background: #f7f5ec;
    border-radius: 18px;
    box-shadow: 0 2px 10px var(--color-shadow-strong);
    text-align: center;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- FOOTER --- */
footer {
    background: var(--color-primary);
    color: var(--color-secondary);
    padding: 44px 0 16px 0;
    font-size: 0.97rem;
    border-radius: 24px 24px 0 0;
    margin-top: 60px;
    box-shadow: 0 3px 32px var(--color-shadow-strong) inset;
}
footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
}
.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--color-secondary);
    margin-bottom: 12px;
}
.footer-menu a {
    color: var(--color-secondary);
    opacity: 0.85;
    font-family: var(--font-serif);
}
.footer-menu a:hover, .footer-menu a:focus {
    color: var(--color-accent);
    opacity: 1;
}
.footer-info {
    color: var(--color-secondary);
    opacity: 0.92;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 8px;
}
.footer-info address {
    font-style: normal;
}
.footer-branding {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}
.footer-branding img {
    height: 32px;
    width: auto;
}
.footer-branding span {
    color: #d8d5d1;
    font-size: 0.98rem;
    font-family: var(--font-serif);
}


/* --- COOKIE BANNER & MODAL --- */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fffefb;
    border-top: 1.5px solid var(--color-accent);
    box-shadow: 0 -3px 16px var(--color-shadow-strong);
    padding: 22px 26px;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    transition: transform 0.35s cubic-bezier(.24,1.17,.40,1), opacity 0.3s;
    font-family: var(--font-serif);
}
.cookie-banner .cookie-text { max-width: 540px; color: #664a15; }
.cookie-banner .cookie-actions { display: flex; gap: 14px; }
.cookie-banner button {
    font-family: var(--font-display);
    border-radius: 6px;
    border: none;
    padding: 8px 24px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    background: var(--color-accent);
    color: #fff;
    transition: background 0.19s, color 0.19s, box-shadow 0.21s;
    box-shadow: 0 1px 6px var(--color-shadow);
}
.cookie-banner button.cookie-reject {
    background: #ded9d1;
    color: var(--color-primary);
    font-weight: 500;
}
.cookie-banner button.cookie-settings {
    background: var(--color-primary);
    color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
    background: #b47c15;
    color: #fff;
    box-shadow: 0 2px 10px var(--color-shadow-strong);
}
.cookie-banner.hide {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-modal-overlay {
    position: fixed;
    z-index: 10001;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(26,38,52,0.48);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s;
}
.cookie-modal-overlay.hide { opacity: 0; pointer-events: none; }
.cookie-modal {
    background: #fff;
    color: #23272e;
    border-radius: 12px;
    box-shadow: 0 6px 32px var(--color-shadow-strong);
    padding: 32px 26px 22px 26px;
    min-width: 310px; max-width: 98vw;
    font-family: var(--font-serif);
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
}
.cookie-modal h2 {
    font-size: 1.30rem;
    margin-bottom: 13px;
}
.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    color: #23272e;
}
.cookie-category input[type="checkbox"] {
    width: 20px; height: 20px;
}
.cookie-category .always-on {
    color: #bbb;
    font-size: 0.95em;
    margin-left: 4px;
}
.cookie-modal .cookie-modal-buttons {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
    margin-top: 24px;
}
.cookie-modal button {
    font-family: var(--font-display);
    border-radius: 6px;
    border: none;
    padding: 8px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    background: var(--color-accent);
    color: #fff;
    transition: background 0.19s;
}
.cookie-modal button.cookie-cancel {
    background: #ded9d1; color: var(--color-primary); font-weight: 500;
}
.cookie-modal button:hover, .cookie-modal button:focus {
    background: #b47c15; color: #fff;
}
.cookie-modal .cookie-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    border: none;
    background: none;
    font-size: 2rem;
    color: var(--color-primary);
    cursor: pointer;
}

/* --- GENERAL BUTTONS & HOVER --- */
button, .btn, .btn-primary {
    outline: none;
}
button:focus, .btn-primary:focus {
    outline: 2px solid var(--color-accent);
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.card, .testimonial-card, .feature_grid li, .btn-primary, .cookie-banner, .cookie-modal {
    transition: box-shadow 0.20s, transform 0.19s;
}
.card:hover, .testimonial-card:hover, .feature_grid li:hover {
    box-shadow: 0 8px 32px var(--color-shadow-strong);
    transform: translateY(-2px) scale(1.017);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 991px) {
    .container { padding-left: 12px; padding-right: 12px; }
    header .container { flex-direction: row; gap: 12px; }
    section, .section, .hero-section { padding: 28px 8px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.3rem; }
    .card, .testimonial-card { padding: 24px 12px; }
}
@media (max-width: 768px) {
    header .container { flex-direction: row; align-items: center; padding: 14px 8px; }
    .main-nav, .footer-menu { flex-direction: column; gap: 10px; }
    .content-wrapper, .container { gap: 14px; }
    section, .section { margin-bottom: 36px; padding: 22px 6px; }
    .hero-section, .policy-section, .cta-section, .thankyou-section { padding: 22px 6px; }
    .feature_grid, .card-container, .card-grid, .content-grid, .features { flex-direction: column; gap: 18px; }
    .card, .testimonial-card { min-width: 180px; }
    .footer-menu { gap: 7px; }
    .footer-info, .footer-branding { gap: 8px; }
    .visual_identity img { height: 42px; }
    .mobile-menu { padding-bottom: 64px; }
    .cta-section, .cta-section.accent { border-radius: 10px; }
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 15px 6px;
    }
}
@media (max-width: 500px) {
    h1 { font-size: 1.25rem; }
    h2 { font-size: 1.07rem; }
    .policy-section, .hero-section, .thankyou-section {
        padding: 14px 2px;
    }
    .btn-primary, .cookie-modal button, .cookie-banner button {
        padding: 8px 12px;
        font-size: 0.99rem;
    }
}

/* --- ACCESSIBILITY / UTILITY --- */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(1px,1px,1px,1px);
    border: 0 !important;
}

/* --- CUSTOM CLASSES SPECIFIC TO HTML STRUCTURE --- */
.services-section ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 22px;
}
.services-section ul li span { color: var(--color-accent); margin-left: 9px; font-weight: 600; }

.project-types-section ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 22px;
}
.process-section ol {
    list-style: decimal;
    margin-left: 22px;
    margin-bottom: 22px;
}
.brand_accolades {
    margin-bottom: 0;
}

/* --- END OF CSS --- */
