﻿/* ====== Base / Tokens ====== */
:root {
    --bg: #ffffff;
    --ink: #0a0a0a;
    --muted: #6b7280;
    --accent: #0ea5e9; /* cyan-blue accent */
    --accent-ink: #053245;
    --card: #fafafa;
    --line: #ececec;
    --radius: 14px;
    --shadow: 0 4px 24px rgba(2, 6, 23, .08);
    --shadow-soft: 0 2px 12px rgba(2, 6, 23, .06);
    --container: 1120px;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
}

.no-scroll {
    overflow: hidden;
}

img, video {
    max-width: 100%;
    display: block;
}

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

/* ====== Header ====== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 0;
}

.brand-logo {
    height: 56px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .nav a {
        text-decoration: none;
        color: var(--ink);
        font-weight: 600;
        padding: .35rem .6rem;
        border-radius: 10px;
    }

        .nav a:hover {
            background: var(--card);
        }

/* Buttons */
.btn {
    appearance: none;
    border: 0;
    border-radius: 12px;
    padding: .8rem 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .04s ease, box-shadow .2s ease, background .2s ease;
}

    .btn:active {
        transform: translateY(1px);
    }

.btn--primary {
    color: white;
    background: var(--accent);
    box-shadow: var(--shadow-soft);
}

    .btn--primary:hover {
        filter: saturate(110%);
    }

.btn--ghost {
    color: var(--accent-ink);
    background: transparent;
    border: 2px solid var(--line);
}

    .btn--ghost:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

/* ====== Hero ====== */
.hero {
    padding: 5rem 0 3rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 2rem;
    align-items: center;
}

.hero h1 {
    font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}

.accent {
    color: var(--accent);
}

.lead {
    color: var(--muted);
    font-size: 1.05rem;
}

.hero-cta {
    margin-top: 1.25rem;
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.hero-media {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* ====== Services ====== */
.services {
    padding: 3.5rem 0;
}

.section-title {
    font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem);
    margin: 0 0 1.25rem;
}

.cards {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
}

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem 1.1rem;
    box-shadow: var(--shadow-soft);
    transition: transform .15s ease, box-shadow .2s ease;
}

    .card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
    }

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #eef7ff;
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: .75rem;
}

.card h3 {
    margin: 0 0 .35rem;
}

/* ====== CTA ====== */
.cta {
    padding: 2.25rem 0;
    background: linear-gradient(180deg, #f8fbff, #fff);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta h3 {
    margin: 0;
    font-size: clamp(1.15rem, 1rem + .8vw, 1.6rem);
}

/* ====== About ====== */
.about {
    padding: 3.5rem 0;
}

.checklist {
    padding-left: 1.1rem;
    color: var(--muted);
}

    .checklist li {
        margin: .3rem 0;
    }

/* ====== Contact ====== */
.contact {
    padding: 3.5rem 0;
}

.form .grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

.field {
    display: grid;
    gap: .35rem;
}

    .field span {
        font-weight: 600;
        font-size: .95rem;
    }

    .field input, .field textarea {
        width: 100%;
        padding: .8rem .9rem;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #fff;
        font: inherit;
    }

.field--full {
    grid-column: 1 / -1;
}

.actions {
    margin-top: 1rem;
    display: flex;
    gap: .75rem;
}

/* ====== Footer ====== */
.site-footer {
    border-top: 1px solid var(--line);
    padding: 1.25rem 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .footer-inner p {
        margin: 0;
        color: var(--muted);
        font-size: .95rem;
    }

.socials {
    display: flex;
    gap: .75rem;
}

    .socials a {
        color: var(--muted);
        text-decoration: none;
        font-weight: 700;
    }

        .socials a:hover {
            color: var(--accent);
        }

/* ====== Nova Modal ====== */
.modal[aria-hidden="true"] {
    display: none;
}

.modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 1000;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2,6,23,.6);
}

.modal__dialog {
    position: relative;
    background: #0b0f1a;
    color: #e5f2ff;
    width: min(100% - 2rem, 900px);
    border-radius: 18px;
    box-shadow: 0 40px 120px rgba(0,0,0,.5);
    overflow: hidden;
}

.modal__close {
    position: absolute;
    right: .5rem;
    top: .35rem;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.modal__body {
    padding: 0;
}

.nova-mount {
    min-height: 520px;
    display: grid;
    place-items: center;
}

.nova-iframe {
    width: 100%;
    height: 540px;
    border: 0;
    display: block;
}

.loading {
    color: #b8dfff;
}

/* ====== Responsive ====== */
@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-media {
        order: -1;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .form .grid {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}


page-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 .5rem;
}

.page-title .accent {
    color: #007bff;
}

.kicker {
    color: #444;
    margin-bottom: 1.25rem;
}

.brand-card {
    display: inline-block;
    background: #fff; /* white background to blend with page */
    border: 2px solid #ddd; /* light gray border */
    border-radius: 8px; /* rounded corners */
    padding: 0.5rem; /* space around the logo */
    box-shadow: 0 2px 6px rgba(0,0,0,0.05); /* subtle shadow for polish */
}

    .brand-card img {
        display: block;
        max-width: 120px; /* adjust size of logos */
        height: auto;
    }

/* Uniform header brand card on ALL pages */
.site-header {
    background: #fff;
}

    .site-header .brand {
        display: flex;
        align-items: center;
        /* keep it from sticking to the edges */
    }

    .site-header .brand-logo {
        display: block;
        width: clamp(340px, 30vw, 560px);
        height: auto;
        /* the “card” look */
        background: #fff; /* solid white fill */
        padding: 8px 10px;
        border: 1.5px solid #CDD6E1; /* same gray as home */
        border-radius: 14px;
        box-shadow: 0 px 3px rgb(0, 148, 255);
        /* micro polish (same as home) */
        filter: contrast(1.06) brightness(1.03);
    }

/* About Us card cleanup */
.brand-card {
    border: 3px solid #0ea5e9; /* keep just ONE border around card */
    background: #fff; /* white background to blend into page */
    border-radius: 10px;
    padding: 12px;
}

    .brand-card img {
        border: none !important; /* remove the second/inner border */
        box-shadow: none !important; /* remove any faint outline */
        background: transparent; /* no extra background inside image */
    }

body.home .brand-card {
    border: 3px solid #ccc;
    background: #fff;
    border-radius: 8px;
    padding: 16px;
}

.brand-card {
    border: 6px solid #333 !important; /* much thicker, dark gray */
    background: #fff !important;
    border-radius: 8px;
    padding: 10px;
}

.brand-card img {
border: none !important; /* remove inner border */
box-shadow: none !important;
background: transparent;
}

/* Services Page */
.hero-services {
    background: #111;
    color: #fff;
    padding: 5rem 1rem;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
}

.kicker {
    font-size: 1.25rem;
    color: #eee;
    margin-top: 0.5rem;
}

.service-block {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .service-block .overlay {
        background: rgba(0,0,0,0.55);
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }

.service-content {
    max-width: 700px;
    color: #fff;
    text-align: center;
}

.icon-wrap {
    margin-bottom: 1rem;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.service-content p {
    font-size: 1.1rem;
    color: #ddd;
}

/* Services Page Layout */
.hero {
    background: #fff;
    color: #000;
    padding: 80px 20px;
    text-align: center;
}

    .hero .accent {
        color: #00aaff;
    }

.services-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 60px 20px;
    background: #fff;
}

.service {
    flex: 1 1 30%;
    max-width: 300px;
    margin: 20px;
    text-align: center;
}

    .service .icon {
        margin-bottom: 20px;
        color: #00aaff; /* same blue as home */
    }

    .service h2 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .service p {
        color: #555;
    }

.services-images img {
    width: 100%;
    display: block;
    margin-bottom: 30px;
}

/* Make logo card smaller + bordered */
.brand-card {
    display: inline-block;
    background: #fff; /* clean white background */
    border: 2px solid #ccc; /* border thickness & color */
    border-radius: 10px; /* soften edges */
    padding: 15px;
    margin: 20px auto;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1); /* subtle shadow */
}

    .brand-card img {
        max-width: 180px; /* shrink size */
        height: auto;
        display: block;
        margin: 0 auto;
    }

/* --- Header logo “card” (applies to all pages) --- */
.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px; /* space inside the card */
    background: #fff; /* white fill so it blends into the page */
    border: 2px solid #cfd8e3; /* >>> border thickness & color (tweak here) */
    border-radius: 10px; /* rounded corners */
    box-shadow: 0 1px 3px rgba(0,0,0,.06); /* subtle lift */
}

/* Size & cleanup for the image itself */
.brand-logo {
    width: 140px; 
    height: auto;
    display: block;
    border: none !important; 
    outline: none !important;
    box-shadow: none !important; 
    background: transparent !important;
}

/* ==== FORCE SMALLER HEADER LOGO CARD (services/about/home) ==== */
header .header-inner .brand img.brand-logo {
width: auto !important;
max-width: 160px !important; /* <— make smaller/bigger here */
height: auto !important;
display: block !important;
margin: 0 auto !important;

/* “card” look */
background: #fff !important; /* white fill so it blends */
border: 2.5px solid #cdd6e1 !important; /* thicker gray border */
border-radius: 10px !important;
padding: 8px !important;
box-shadow: none !important; /* no extra inner outline */
}

/* Card container */
.brand-card {
    display: inline-block;
    padding: 12px;
    background: #fff; /* clean white background */
    border: 3px solid #666; /* thicker outer border */
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

    /* Inside image cleanup */
    .brand-card img {
        display: block;
        max-width: 100%;
        height: auto;
        border: none !important; /* 🚫 remove inner border */
        box-shadow: none !important; /* 🚫 remove inner shadows */
        background: transparent; /* clean, no fill */
    }

/* === Unify header logo card across all pages === */
.site-header .brand {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 10px 12px;
    border: 2.5px solid #cdd6e1; /* outer card border thickness */
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,.06);
}

    /* make the IMG itself “naked” so it can't draw another border */
    .site-header .brand .brand-logo {
        display: block;
        width: clamp(140px, 14vw, 220px);
        height: auto;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }

/* Apply uniform style to ALL image cards */
.brand-logo {
    display: block;
    margin: 0 auto; /* Center horizontally */
    max-width: 220px; /* Control size */
    border: 3px solid #444; /* Thicker, single outer border */
    border-radius: 10px; /* Rounded corners (adjust to taste) */
    padding: 10px; /* Space inside border */
    background: #fff; /* Clean white background */
    box-shadow: none !important; /* No shadow unless you want one */
}

    /* Remove any inner borders applied to the image itself */
    .brand-logo img {
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }

/* === Canon image card: single thicker outer border, no inner border === */

/* kill any borders/backgrounds on wrappers that might be adding lines */
.site-header .brand,
.brand-card {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
}

    /* win with high specificity and !important just in case */
    .site-header .brand img.brand-logo,
    header .brand img.brand-logo,
    img.brand-logo {
        display: block;
        margin: 0 auto;
        max-width: 200px; /* adjust size here */
        height: auto;
        /* the look */
        background: #fff !important; /* white fill so it blends */
        border: 3px solid #444 !important; /* thicker single border */
        border-radius: 12px !important;
        padding: 10px !important;
        /* remove any “extra” outline effects */
        outline: none !important;
        box-shadow: none !important;
        filter: none !important;
    }

/* if any inner border was on the IMG itself from another rule */
.brand-logo img { /* in case markup nests an <img> */
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    outline: none !important;
}

/* --- Make the card identical on every page --- */
.site-header {
    background: #fff;
}
    /* header always white behind the logo */

    /* Strong, page-agnostic rule for the logo image */
    header .brand img.brand-logo,
    .site-header .brand img.brand-logo,
    img.brand-logo {
        display: block;
        background: #fff !important; /* force white fill inside the card */
        border: 4px solid #9fb4d8 !important; /* single thicker outer border */
        border-radius: 12px !important;
        padding: 10px !important;
        /* remove anything that could tint it */
        box-shadow: none !important;
        outline: none !important;
        filter: none !important;
        mix-blend-mode: normal !important;
        opacity: 1 !important;
    }

/* ===== Services: force white hero, no gray/overlay ===== */
.services-page .hero,
.services-page .hero--plain,
.services-page .hero::before,
.services-page .full-bleed,
.services-page .overlay {
    background: #fff !important;
    box-shadow: none !important;
}

/* ===== Uniform stacked-logo card (all pages) ===== */
.brand-logo {
    width: clamp(140px, 18vw, 200px);
    height: auto;
    display: block;
    background: #fff; /* pure white inside */
    padding: 10px 12px;
    border: 3px solid #cbd5e1; /* single thicker border */
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    outline: none !important;
    box-sizing: border-box;
    filter: contrast(1.06) brightness(1.03);
}

/* Kill any accidental image borders anywhere */
img {
    border: none !important;
}

/* === Services page: make it match Home/About (white) === */
.hero-services {
    background: #fff !important; /* white like other pages */
    color: #222 !important; /* dark text */
    padding: 3rem 0; /* normal spacing */
    text-align: center;
    border-top: 1px solid #eee; /* subtle polish (optional) */
}

.page-title {
    color: #111 !important;
}

.kicker {
    color: #555 !important;
}

/* Remove the dark film over the service sections */
.service-block .overlay {
    background: transparent !important;
}

/* Ensure the blocks themselves are white (not gray/blue) */
.service-block {
    background: #fff !important;
    min-height: unset;
    padding: 3rem 0;
}

    /* Text inside blocks back to dark */
    .service-block h2,
    .service-block p {
        color: #222 !important;
    }

/* ---------- Contact page ---------- */
.section-pad {
    padding: 3rem 0;
}

/* uniform brand card everywhere (if not already added) */
.brand-logo {
    display: block;
    width: clamp(180px, 20vw, 260px);
    height: auto;
    background: #fff;
    padding: 10px;
    border: 3px solid #cdd6e1;
    border-radius: 12px;
    box-shadow: none;
}

/* Contact intro */
.header-block {
    background: #fff;
    padding: 1.5rem 0 0.5rem;
}

.page-title {
    font-size: 2.25rem;
    font-weight: 800;
    text-align: left;
}

    .page-title .accent {
        color: #007bff;
    }

.kicker {
    color: #556;
    margin-top: .25rem;
}

/* Carded form */
.form-card {
    background: #fff;
    border: 1px solid #e7eaf0;
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
}

/* Grid layout (borrows your existing .form .grid pattern) */
.form .grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.field span {
    display: block;
    font-weight: 600;
    margin-bottom: .25rem;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: .8rem .9rem;
    border: 1px solid #cfd6e0;
    border-radius: 8px;
    font-size: 1rem;
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
}

.field textarea {
    resize: vertical;
}

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 0 3px rgba(0,123,255,.15);
    }

.field--full {
    grid-column: 1 / -1;
}

.check {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .95rem;
}

.actions {
    margin-top: 1rem;
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

/* Buttons (reuse existing .btn styles) */
.btn--primary {
    background: #007bff;
    color: #fff;
}

    .btn--primary:hover {
        background: #005fcc;
    }

.btn--ghost {
    border: 1px solid #cfd6e0;
    color: #222;
}

    .btn--ghost:hover {
        border-color: #007bff;
        color: #007bff;
    }

/* Utilities */
.hidden {
    display: none !important;
}

.muted {
    color: #667085;
    font-size: .95rem;
}

/* Make hidden honeypot truly hidden */
.hidden {
    display: none !important;
}

/* Contact page heading matches your blue/black scheme */
.page-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 .5rem;
}

.kicker {
    color: #666;
    margin-bottom: 1.25rem;
}

/* Form polish */
.form .grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.field span {
    display: block;
    font-weight: 600;
    margin-bottom: .25rem;
}

.field input, .field textarea {
    width: 100%;
    padding: .9rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: #fff;
}

    .field input:focus, .field textarea:focus {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 0 3px rgba(0,123,255,.12);
    }

.actions {
    margin-top: 1rem;
}

/* Nova page keeps the same crisp, white look */
.nova-page .header-block {
    background: #fff;
    padding: 1.5rem 0 .5rem;
}

.nova-page .page-title {
    font-size: 2.25rem;
    font-weight: 800;
}

.nova-page .kicker {
    color: #556;
    margin-top: .25rem;
}

/* Optional embed card polish (only if you enable the live widget section) */
.nova-embed-card {
    background: #fff;
    border: 1px solid #e7eaf0;
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
}

.nova-iframe-wrap {
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

/* === Polish pass ===================================================== */

/* 1) Global rhythm & readability */
html {
    scroll-behavior: smooth;
}

body {
    letter-spacing: 0.01em;
}

h1, h2, h3 {
    line-height: 1.25;
    letter-spacing: -0.01em;
}

/* 2) Brand logo card — uniform on all pages */
.brand {
    display: inline-block;
    background: #fff; /* white interior to blend with page */
    border: 2px solid #e5e7eb; /* consistent, slightly thicker border */
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

    .brand img.brand-logo {
        display: block;
        width: 520px; /* feel free to adjust */
        max-width: 90vw;
    }

/* 3) Buttons: subtle polish + focus visibility */
.btn {
    transition: transform .06s ease, box-shadow .2s ease;
}

    .btn:active {
        transform: translateY(1px);
    }

    .btn:focus-visible {
        outline: 2px solid #005fcc;
        outline-offset: 2px;
        border-radius: 6px;
    }

.btn--primary {
    box-shadow: 0 4px 10px rgba(0,123,255,.18);
}

    .btn--primary:hover {
        box-shadow: 0 6px 14px rgba(0,123,255,.22);
    }

/* 4) Navigation: active page hint + better spacing on mobile */
.nav a[aria-current="page"],
.nav a.active {
    color: #007bff;
    text-decoration: none;
    position: relative;
}

    .nav a[aria-current="page"]::after,
    .nav a.active::after {
        content: "";
        position: absolute;
        left: 10%;
        right: 10%;
        bottom: -6px;
        height: 2px;
        background: #007bff;
        border-radius: 2px;
    }

/* 5) Cards: consistent border + hover lift */
.card {
    border: 1px solid #eaeaea;
    box-shadow: 0 6px 14px rgba(0,0,0,0.04);
}

    .card:hover {
        transform: translateY(-4px);
    }

/* 6) Section spacing harmony */
.section-title {
    margin-bottom: 1.5rem;
}

.services, .about, .contact, .section-pad {
    padding: 3.5rem 0;
}

.header-block {
    padding: 2.25rem 0 1.25rem;
}

/* 7) Full‑width hero/stripe images (About/Services) */
.hero-banner {
    width: 100%;
    min-height: 38vh; /* sweet spot */
    background-size: cover;
    background-position: center top; /* show more skyline tops */
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 28vh;
        background-position: center 12%;
    }
}

/* 8) Footer divider + tidy socials */
.site-footer {
    position: relative;
}

    .site-footer::before {
        content: "";
        display: block;
        height: 1px;
        background: #1c1c1c;
        opacity: .2;
        margin: 0 auto 16px;
        width: min(90%, 1100px);
    }

/* 9) Forms: crisper fields */
.field input, .field textarea, .field select {
    border: 1px solid #d7d7d7;
    transition: border-color .15s ease, box-shadow .15s ease;
}

    .field input:focus, .field textarea:focus, .field select:focus {
        border-color: #007bff;
        box-shadow: 0 0 0 3px rgba(0,123,255,.15);
        outline: none;
    }

/* 10) Mobile header breathing room */
@media (max-width: 768px) {
    .header-inner {
        gap: 10px;
    }

    .nav {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: flex-end;
    }
}