/* =========================================================
   LGC Global Styles (site.css)
   - Reset / Base
   - Tokens (colors, spacing, typography)
   - Elements & Utilities
   - Shared components (buttons, container, footer baseline)
   ========================================================= 

 ---------- Reset / Normalize (modern, minimal) ---------- 
*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

html, body {
    height: 100%;
}

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

ul[role="list"], ol[role="list"] {
    list-style: none;
}

 Respect motion preferences 
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

 ---------- Design Tokens ---------- 
:root {
    --brand: #0d6efd;
    --text: #212529;
    --muted: #6c757d;
    --line: #e9ecef;
    --bg-subtle: #f8f9fa;
    --radius-sm: .5rem;
    --radius-md: .75rem;
    --radius-lg: 1rem;
    --space-1: .25rem;
    --space-2: .5rem;
    --space-3: .75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --page-max: 1100px;
}

 ---------- Base Typography / HTML ---------- 
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    color: var(--text);
    background: #fff;
}

 Headings rhythm 
h1, h2, h3 {
    letter-spacing: .2px;
}

h1 {
    margin-bottom: .5rem;
}

h2 {
    margin: 2.25rem 0 1rem;
}

h3 {
    margin: 1rem 0 .5rem;
}

 Lead text helper 
.lead {
    font-size: 1.125rem;
    color: var(--muted);
}

 Images 
img {
    height: auto;
}

 ---------- Accessibility: focus rings (works with Bootstrap) ---------- 
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem #fff, 0 0 0 0.25rem var(--brand);
}

 ---------- Layout helpers ---------- 
.container--page {
    max-width: var(--page-max);
}

section {
    padding-block: .5rem;
}

 ---------- Buttons ---------- 
.btn {
    border-radius: var(--radius-sm);
}

    .btn + .btn {
        margin-left: .5rem;
    }

 ---------- Footer (baseline strip) ---------- 
.footer {
    position: static !important;  avoid absolute sticky from scaffold 
    background: #fff;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .95rem;
}

    .footer a {
        color: inherit;
    }

        .footer a:hover {
            text-decoration: underline;
            color: #495057;
        }

     Container 
    .footer .contact-inline {
        gap: .25rem;
    }

     Each piece is uniform 
    .footer .contact-item {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: .4rem;  space between icon and text 
        line-height: 1.2;  keeps separators a tidy height 
    }

         Compact vertical separator that doesn’t grow with wrapping 
        .footer .contact-item + .contact-item::before {
            content: "";
            width: 1px;
            height: 1em;  fixed height, not full item height 
            background: #adb5bd;
            margin-right: .6rem;
            display: inline-block;
            vertical-align: middle;
        }

 Tiny inline icons 
.ci {
    width: 1em;
    height: 1em;
    background: currentColor;
    opacity: .6;
    display: inline-block;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

 Masks (same as before) 
.ci-location {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z"/></svg>');
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 24 24\'><path fill=\'%23000\' d=\'M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z\'/></svg>");
}

.ci-phone {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M6.6 10.8a15.05 15.05 0 0 0 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.2 1.3.5 2.7.8 4.1.8.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.4 21 3 13.6 3 4c0-.6.4-1 1-1h2.9c.6 0 1 .4 1 1 0 1.4.3 2.8.8 4.1.1.4 0 .9-.3 1.2l-1.8 1.5z"/></svg>');
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 24 24\'><path fill=\'%23000\' d=\'M6.6 10.8a15.05 15.05 0 0 0 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.2 1.3.5 2.7.8 4.1.8.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.4 21 3 13.6 3 4c0-.6.4-1 1-1h2.9c.6 0 1 .4 1 1 0 1.4.3 2.8.8 4.1.1.4 0 .9-.3 1.2l-1.8 1.5z\'/></svg>");
}

.ci-mail {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 4-8 5L4 8V6l8 5 8-5v2z"/></svg>');
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 24 24\'><path fill=\'%23000\' d=\'M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 4-8 5L4 8V6l8 5 8-5v2z\'/></svg>");
}

 Mobile: stack without separators 
@media (max-width:576px) {
    .footer .contact-item + .contact-item::before {
        display: none;
    }
}
*/