:root {
    --navy: #063b5c;
    --blue: #087ca5;
    --turquoise: #12a9c7;
    --turquoise-dark: #078fa9;
    --light-turquoise: #dff5f9;
    --very-light-blue: #f4fafc;
    --white: #ffffff;
    --grey: #617481;
    --dark: #173746;
    --dark-soft: #2d4c5b;
    --border: #dce8ed;
    --sand: #f6f8f9;
    --shadow: 0 20px 55px rgba(6, 59, 92, .10);
    --radius: 16px;
    --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "DM Sans", Arial, sans-serif; color: var(--dark); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.narrow { max-width: 860px; }
.centered-heading { text-align: center; margin-left: auto; margin-right: auto; }

.eyebrow { color: var(--turquoise); font-size: .75rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow-light { color: var(--light-turquoise); }

/* Skip-link is intentionally omitted from the visual layout. */

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 10000; isolation: isolate; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(220,232,237,.85); backdrop-filter: blur(10px); }
.header-inner { min-height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.logo { width: 116px; display: block; flex: 0 0 auto; }
.logo img { width: 100%; display: block; height: auto; }
.main-nav { display: flex; position: relative; z-index: 10001; align-items: center; gap: 28px; }
.main-nav a { color: var(--navy); font-size: .95rem; font-weight: 700; transition: .2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--turquoise); }
.nav-cta { padding: 13px 20px; background: var(--turquoise); color: var(--white) !important; border-radius: 8px; }
.nav-cta:hover { background: var(--blue); color: var(--white) !important; }
 .menu-toggle {
    display: none;
    position: relative;
    z-index: 10003;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    color: var(--navy);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.home-hero { position: relative; min-height: 720px; color: var(--white); overflow: hidden; }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media { background: url("../images/hero.jpg") center/cover no-repeat; transform: scale(1.02); }
.hero-shade { background: linear-gradient(90deg, rgba(6,59,92,.88) 0%, rgba(6,59,92,.64) 48%, rgba(6,59,92,.20) 100%); }
.hero-inner { min-height: 720px; display: flex; align-items: center; position: relative; z-index: 2; }
.hero-copy { max-width: 780px; padding: 90px 0; }
.hero-copy h1 { margin: 16px 0 24px; font-size: clamp(3rem, 6vw, 5.4rem); line-height: 1.04; letter-spacing: -.045em; }
.hero-copy h1 span { color: var(--light-turquoise); }
.hero-lead { max-width: 670px; font-size: 1.12rem; color: rgba(255,255,255,.9); line-height: 1.85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-note { position: absolute; right: 0; bottom: 42px; display: flex; align-items: center; gap: 12px; font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.8); }
.hero-note-line { width: 34px; height: 1px; background: rgba(255,255,255,.55); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 8px; font-weight: 800; font-size: .9rem; transition: .2s ease; border: 1px solid transparent; }
.btn-primary { background: var(--turquoise); color: var(--white); }
.btn-primary:hover { background: var(--blue); }
.btn-outline { border-color: rgba(255,255,255,.72); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--blue); }

/* SECTIONS */
.section { padding: 100px 0; }
.section-heading { max-width: 780px; margin-bottom: 48px; }
.section-heading h2 { margin: 12px 0 18px; color: var(--navy); font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: 1.1; letter-spacing: -.03em; }
.section-heading > p:last-child { color: var(--grey); font-size: 1.02rem; line-height: 1.8; }

/* SERVICES */
.intro-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--very-light-blue); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; box-shadow: 0 10px 30px rgba(6,59,92,.04); }
.service-icon { display: inline-flex; width: 46px; height: 46px; align-items: center; justify-content: center; margin-bottom: 24px; background: var(--light-turquoise); color: var(--navy); border-radius: 10px; font-weight: 800; font-size: .8rem; }
.service-card h3 { margin-bottom: 12px; color: var(--navy); font-size: 1.4rem; }
.service-card p { color: var(--grey); margin-bottom: 20px; }
.service-card a { color: var(--blue); font-weight: 800; font-size: .9rem; }

/* PORTFOLIO */
.portfolio-preview { background: var(--very-light-blue); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-grid.large { grid-template-columns: repeat(2, 1fr); }
.portfolio-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 30px rgba(6,59,92,.05); transition: transform .2s ease, box-shadow .2s ease; }
.portfolio-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.portfolio-card-image { aspect-ratio: 16 / 10; overflow: hidden; background: #e8f0f4; }
.portfolio-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.portfolio-card:hover .portfolio-card-image img { transform: scale(1.03); }
.portfolio-card-content { padding: 25px; }
.portfolio-card-content .card-category { color: var(--turquoise); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; }
.portfolio-card-content h3, .portfolio-card-content h2 { color: var(--navy); margin: 8px 0 10px; font-size: 1.45rem; }
.portfolio-card-content p { color: var(--grey); margin-bottom: 16px; }
.portfolio-card-content span { color: var(--blue); font-weight: 800; }
.empty-portfolio { padding: 38px; border: 1px dashed #b7cdd7; background: var(--white); border-radius: var(--radius); color: var(--grey); text-align: center; }
.centered-action { text-align: center; margin-top: 36px; }
.text-link { color: var(--blue); font-weight: 800; }

/* WHY */
.why-section { position: relative; min-height: 560px; display: flex; align-items: center; color: var(--white); overflow: hidden; }
.why-background { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,59,92,.90), rgba(6,59,92,.58)), url("../images/why-background.jpg") center/cover no-repeat; }
.why-inner { position: relative; z-index: 2; }
.why-copy { max-width: 720px; padding: 90px 0; }
.why-copy h2 { margin: 12px 0 22px; font-size: clamp(2.5rem, 5vw, 4.4rem); line-height: 1.05; letter-spacing: -.04em; }
.why-copy p { color: rgba(255,255,255,.9); margin-bottom: 18px; font-size: 1.04rem; line-height: 1.85; }

/* PRICING */
.pricing-preview { background: var(--white); }
.price-strip { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.price-strip > div { padding: 30px 24px; text-align: center; border-right: 1px solid var(--border); }
.price-strip > div:last-child { border-right: 0; }
.price-strip span { display: block; color: var(--grey); font-size: .9rem; margin-bottom: 8px; }
.price-strip strong { display: block; color: var(--navy); font-size: 2rem; }

/* PROCESS */
.process-section { background: var(--very-light-blue); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.process-grid > div { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.process-grid span { color: var(--turquoise); font-weight: 800; font-size: .78rem; letter-spacing: .15em; }
.process-grid h3 { margin: 12px 0 10px; color: var(--navy); }
.process-grid p { color: var(--grey); font-size: .94rem; }

/* CTA */
.cta-section { padding: 100px 20px; background: var(--light-turquoise); }
.cta-section h2 { margin: 12px 0 18px; color: var(--navy); font-size: clamp(2.3rem, 4vw, 3.5rem); line-height: 1.08; }
.cta-section > .container > p:not(.eyebrow) { max-width: 700px; margin: 0 auto 30px; color: var(--grey); font-size: 1.05rem; }

/* PAGE HERO */
.page-hero { padding: 100px 0; color: var(--white); text-align: center; background: linear-gradient(135deg, rgba(6,59,92,.95), rgba(8,124,165,.88)), url("../images/hero.jpg") center/cover no-repeat; }
.page-hero h1 { margin: 14px auto 18px; max-width: 900px; font-size: clamp(2.6rem, 5vw, 4.8rem); line-height: 1.05; letter-spacing: -.04em; }
.page-hero > .container > p:last-child { max-width: 740px; margin: 0 auto; color: rgba(255,255,255,.9); font-size: 1.08rem; line-height: 1.8; }

/* ABOUT */
.about-main { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.about-copy h2 { margin: 12px 0 20px; color: var(--navy); font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: 1.08; }
.about-copy p { color: var(--grey); margin-bottom: 18px; line-height: 1.85; }
.values-section { background: var(--very-light-blue); }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.values-grid > div { padding: 28px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.values-grid span { color: var(--turquoise); font-weight: 800; font-size: .78rem; letter-spacing: .15em; }
.values-grid h3 { margin: 12px 0 10px; color: var(--navy); }
.values-grid p { color: var(--grey); font-size: .93rem; }

/* SERVICES PAGE */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pricing-card { position: relative; padding: 36px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 35px rgba(6,59,92,.05); }
.pricing-card.featured { border: 2px solid var(--turquoise); box-shadow: var(--shadow); }
.popular-badge { position: absolute; top: 18px; right: 18px; padding: 6px 10px; border-radius: 999px; background: var(--light-turquoise); color: var(--blue); font-size: .65rem; font-weight: 800; letter-spacing: .1em; }
.pricing-card h3 { color: var(--navy); margin: 8px 0 4px; font-size: 1.7rem; }
.price { color: var(--turquoise); font-size: 2.4rem; font-weight: 800; margin: 12px 0 16px; }
.pricing-card > p:not(.eyebrow) { color: var(--grey); margin-bottom: 20px; }
.pricing-card ul, .care-card ul { list-style: none; margin: 20px 0 26px; }
.pricing-card li, .care-card li { padding: 9px 0 9px 26px; border-bottom: 1px solid #edf2f4; color: var(--dark-soft); position: relative; font-size: .93rem; }
.pricing-card li::before, .care-card li::before { content: "✓"; position: absolute; left: 0; top: 9px; color: var(--turquoise); font-weight: 800; }
.price-note, .care-rules { margin-top: 24px; color: var(--grey); font-size: .9rem; line-height: 1.75; }
.add-ons { background: var(--very-light-blue); }
.addon-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.addon-grid > div { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.addon-grid h3 { color: var(--navy); margin-bottom: 8px; }
.addon-grid strong { display: block; color: var(--turquoise); margin-bottom: 10px; }
.addon-grid p { color: var(--grey); }
.care-section { background: var(--white); }
.care-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.care-card { position: relative; border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; background: var(--very-light-blue); }
.care-card.featured { border: 2px solid var(--turquoise); background: var(--white); box-shadow: var(--shadow); }
.care-card h3 { color: var(--navy); font-size: 2.4rem; margin: 10px 0; }
.care-card h3 span { font-size: .95rem; font-weight: 600; color: var(--grey); }
.care-intro { color: var(--grey); min-height: 74px; }
.client-responsibilities { background: var(--very-light-blue); }
.client-responsibilities h2 { color: var(--navy); font-size: clamp(2.2rem, 4vw, 3.6rem); margin: 12px 0 20px; line-height: 1.1; }
.client-responsibilities p { color: var(--grey); margin-bottom: 18px; }

/* PORTFOLIO DETAIL */
.project-hero { background: var(--very-light-blue); padding: 100px 0; }
.project-hero-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
.project-hero h1 { margin: 10px 0 18px; color: var(--navy); font-size: clamp(3rem, 5vw, 5rem); line-height: 1; }
.project-hero p { color: var(--grey); margin-bottom: 25px; }
.project-featured { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.project-featured img { width: 100%; display: block; }
.project-gallery { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-bottom: 30px; }
.gallery-grid img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 12px; border: 1px solid var(--border); }
.gallery-empty { padding: 30px; border: 1px dashed #b7cdd7; border-radius: var(--radius); color: var(--grey); margin-bottom: 30px; }

/* CONTACT */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.contact-copy h2 { color: var(--navy); margin: 12px 0 20px; font-size: clamp(2.3rem, 4vw, 3.5rem); line-height: 1.08; }
.contact-copy > p { color: var(--grey); line-height: 1.85; }
.contact-note { margin-top: 28px; display: grid; gap: 5px; padding: 22px; border-left: 3px solid var(--turquoise); background: var(--very-light-blue); }
.contact-note strong { color: var(--navy); }
.contact-note span, .contact-note a { color: var(--grey); }
.form-card { padding: 36px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--very-light-blue); box-shadow: var(--shadow); }
.form-card form > div, .form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-card label { display: block; color: var(--navy); font-weight: 800; font-size: .88rem; margin-bottom: 8px; }
.form-card input, .form-card select, .form-card textarea { width: 100%; border: 1px solid #c9dbe3; border-radius: 10px; background: var(--white); padding: 13px 14px; color: var(--dark); outline: none; transition: .2s; }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { border-color: var(--turquoise); box-shadow: 0 0 0 3px rgba(18,169,199,.12); }
.form-note { margin-top: 10px; color: var(--grey); font-size: .8rem; }
.form-success { margin-bottom: 18px; padding: 14px 16px; background: #e8f7ee; border: 1px solid #bddfc9; color: #256c43; border-radius: 10px; }

/* CONTACT OPTIONS */
.contact-options { background: var(--very-light-blue); }
.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.contact-option-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(6,59,92,.06);
}
.contact-option-number {
    display: block;
    color: var(--turquoise);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .15em;
    margin-bottom: 18px;
}
.contact-option-card h3 { color: var(--navy); font-size: 1.4rem; margin-bottom: 12px; }
.contact-option-card p { color: var(--grey); line-height: 1.7; margin-bottom: 18px; }
.contact-option-card a { color: var(--blue); font-weight: 800; word-break: break-word; }
.contact-option-card a:hover { color: var(--turquoise); }

/* FAQ */
.faq-section { background: var(--white); }
.faq-section .section-heading { max-width: 750px; margin-left: 0; margin-right: 0; }
.faq-list {
    max-width: 850px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 22px 5px;
    border: none;
    background: transparent;
    color: var(--navy);
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: left;
}
.faq-question:hover { color: var(--turquoise); }
.faq-icon {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-turquoise);
    color: var(--turquoise);
    font-size: 1.25rem;
    line-height: 1;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.faq-answer p {
    color: var(--grey);
    line-height: 1.8;
    padding: 0 45px 22px 5px;
}

/* LEGAL */
.legal h2 { margin: 34px 0 10px; color: var(--navy); }
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--grey); line-height: 1.85; margin-bottom: 16px; }
.legal a { color: var(--blue); font-weight: 700; }
.legal-note { margin-top: 36px; padding: 18px; background: var(--very-light-blue); border-left: 3px solid var(--turquoise); }

/* FOOTER */
.site-footer { padding: 70px 0 25px; background: var(--navy); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 45px; padding-bottom: 55px; }
.footer-brand img { width: 160px; margin-bottom: 18px; display: block; background: transparent; }
.footer-brand p, .footer-links p { color: rgba(255,255,255,.68); font-size: .9rem; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; }
.footer-links h3 { margin-bottom: 17px; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--light-turquoise); }
.footer-links a { margin-bottom: 10px; color: rgba(255,255,255,.72); font-size: .9rem; }
.footer-links a:hover { color: white; }
.footer-email { margin-top: 12px; color: white !important; font-weight: 800; }
.footer-cta { margin-top: 4px; color: var(--light-turquoise) !important; font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.45); font-size: .78rem; }
.footer-bottom div { display: flex; gap: 18px; }
.footer-bottom a:hover { color: white; }

/* ADMIN-FRIENDLY PLACEHOLDERS */
body.admin-preview { background: #fff; }

/* RESPONSIVE */
@media (max-width: 1000px) {
    .main-nav { gap: 18px; }
    .main-nav a { font-size: .88rem; }
    .logo { width: 108px; }
    .services-grid, .portfolio-grid { grid-template-columns: repeat(2,1fr); }
    .portfolio-grid.large { grid-template-columns: 1fr 1fr; }
    .process-grid, .values-grid { grid-template-columns: repeat(2,1fr); }
    .price-strip { grid-template-columns: repeat(2,1fr); }
    .price-strip > div:nth-child(2) { border-right: 0; }
    .price-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
    .pricing-grid, .care-grid, .addon-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-note { display: none; }
}

@media (max-width: 900px) {
    body.nav-open { overflow: hidden; }
    .container { width: calc(100% - 32px); }
    .site-header { position: sticky; z-index: 10000; }
    .header-inner { min-height: 88px; }
    .logo { width: 98px; }
    .menu-toggle { display: inline-flex; }
    .main-nav {
        position: absolute;
        z-index: 10002;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - 78px);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 22px 20px 35px;
        background: #fff;
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform .2s ease, opacity .2s ease, visibility 0s linear .2s;
        border-top: 1px solid var(--border);
        overflow-y: auto;
        box-shadow: 0 24px 45px rgba(6,59,92,.18);
    }
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: transform .2s ease, opacity .2s ease;
    }
    .main-nav a {
        width: 100%;
        padding: 16px 8px;
        border-bottom: 1px solid #edf2f4;
        font-size: 1.05rem;
    }
    .main-nav .nav-cta {
        margin-top: 16px;
        padding: 15px 20px;
        text-align: center;
        border-bottom: 0;
    }
    .home-hero, .hero-inner { min-height: 700px; }
    .hero-copy { padding: 100px 0 80px; }
    .hero-copy h1 { font-size: clamp(2.8rem, 12vw, 4.4rem); }
    .hero-lead { font-size: 1rem; }
    .hero-actions { flex-direction: column; align-items: stretch; max-width: 330px; }
    .section { padding: 76px 0; }
    .section-heading { margin-bottom: 36px; }
    .services-grid, .portfolio-grid, .portfolio-grid.large, .process-grid, .values-grid, .pricing-grid, .care-grid, .addon-grid, .about-grid, .project-hero-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
    .price-strip { grid-template-columns: 1fr 1fr; }
    .price-strip > div { border-right: 0; border-bottom: 1px solid var(--border); }
    .price-strip > div:nth-child(odd) { border-right: 1px solid var(--border); }
    .price-strip > div:nth-last-child(-n+2) { border-bottom: 0; }
    .page-hero { padding: 78px 0; }
    .about-grid, .contact-grid, .project-hero-grid { gap: 38px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-options-grid { grid-template-columns: 1fr; }
    .contact-option-card { padding: 30px 25px; }
    .faq-section .section-heading { text-align: left; }
    .faq-list { width: 100%; }
    .faq-question { font-size: 1rem; padding: 19px 0; }
    .faq-answer p { padding-right: 10px; }
    .footer-bottom { flex-direction: column; }
    .footer-bottom div { flex-wrap: wrap; }
}


/* FORM PRIVACY / SPAM */
.form-consent { margin: 8px 0 18px; }
.form-consent label { display: flex; gap: 10px; align-items: flex-start; font-size: .84rem; line-height: 1.6; color: var(--grey); }
.form-consent input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--turquoise); }
.form-consent a { color: var(--blue); font-weight: 700; }
.hp-field { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

/* COOKIE CONSENT */
.cookie-banner { position: fixed; z-index: 20000; left: 0; right: 0; bottom: 0; padding: 18px 20px; background: rgba(6,59,92,.98); color: white; box-shadow: 0 -8px 30px rgba(0,0,0,.18); }
.cookie-banner-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cookie-copy { max-width: 760px; }
.cookie-copy h2 { margin: 0 0 6px; font-size: 1.05rem; }
.cookie-copy p { margin: 0 0 6px; color: rgba(255,255,255,.82); font-size: .86rem; line-height: 1.55; }
.cookie-copy a { color: #fff; text-decoration: underline; font-weight: 700; font-size: .84rem; }
.cookie-actions { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 8px; }
.cookie-actions .btn { white-space: nowrap; }
.cookie-actions .btn-light { background: #fff; color: var(--navy); border: 1px solid #fff; }
.cookie-manage, .footer-cookie-button { border: 0; background: transparent; cursor: pointer; font: inherit; }
.cookie-manage { color: white; text-decoration: underline; padding: 8px 4px; }
.footer-cookie-button { color: rgba(255,255,255,.72); font-size: .9rem; padding: 0; margin-bottom: 10px; text-align: left; }
.footer-cookie-button:hover { color: white; }
.cookie-modal[hidden], .cookie-banner[hidden] { display: none; }
.cookie-modal { position: fixed; inset: 0; z-index: 21000; display: grid; place-items: center; padding: 20px; }
.cookie-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.58); }
.cookie-modal-card { position: relative; z-index: 1; width: min(620px, 100%); max-height: min(90vh, 760px); overflow: auto; background: white; border-radius: 14px; padding: 30px; box-shadow: 0 25px 80px rgba(0,0,0,.28); }
.cookie-close { position: absolute; top: 12px; right: 14px; border: 0; background: transparent; font-size: 1.8rem; cursor: pointer; color: var(--grey); }
.cookie-option { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; border-top: 1px solid #e5e9ed; }
.cookie-option > div { display: flex; flex-direction: column; gap: 5px; }
.cookie-option span { color: var(--grey); font-size: .86rem; line-height: 1.5; }
.cookie-modal-actions { margin-top: 18px; display: flex; justify-content: flex-end; }
.switch { position: relative; width: 48px; height: 28px; flex: 0 0 auto; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch-slider { position: absolute; inset: 0; border-radius: 30px; background: #cbd3d8; cursor: pointer; transition: .2s; }
.switch-slider:before { content: ''; position: absolute; width: 20px; height: 20px; left: 4px; top: 4px; border-radius: 50%; background: white; transition: .2s; box-shadow: 0 1px 4px rgba(0,0,0,.2); }
.switch input:checked + .switch-slider { background: var(--turquoise); }
.switch input:checked + .switch-slider:before { transform: translateX(20px); }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.inline-button { border: 0; padding: 0; background: transparent; color: var(--blue); font: inherit; font-weight: 700; text-decoration: underline; cursor: pointer; }
.cookie-modal-open { overflow: hidden; }

@media (max-width: 800px) {
    .cookie-banner-inner { align-items: flex-start; flex-direction: column; gap: 14px; }
    .cookie-actions { width: 100%; justify-content: flex-start; }
    .cookie-actions .btn { flex: 1 1 180px; }
}
@media (max-width: 520px) {
    .cookie-banner { padding: 16px; }
    .cookie-actions { display: grid; grid-template-columns: 1fr; }
    .cookie-actions .btn { width: 100%; }
    .cookie-manage { text-align: left; padding-left: 0; }
    .cookie-modal-card { padding: 25px 20px; }
}
