
:root {
    --ink: #071316;
    --ink-2: #102126;
    --petrol: #146c64;
    --teal: #2aa69a;
    --signal: #d8a537;
    --paper: #f7f8f6;
    --paper-2: #eef2ee;
    --white: #ffffff;
    --muted: #617078;
    --line: rgba(7, 19, 22, .12);
    --shadow: 0 24px 80px rgba(7, 19, 22, .14);
    --radius: 8px;
    --max: 1180px;
    --font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: Manrope, Inter, system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-body);
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.skip-link {
    position: fixed; left: 16px; top: 16px; transform: translateY(-140%);
    background: var(--signal); color: var(--ink); padding: 10px 14px; z-index: 9999; border-radius: var(--radius);
}
.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.site-header {
    position: sticky; top: 0; z-index: 50;
    display: flex; align-items: center; gap: 24px;
    padding: 14px max(20px, calc((100vw - var(--max)) / 2));
    background: rgba(7, 19, 22, .92);
    color: var(--white);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 190px; }
.brand-logo { width: 168px; height: auto; max-height: 42px; object-fit: contain; }
.brand-fallback { display: none; font-weight: 800; letter-spacing: .08em; }
.desktop-nav { display: flex; gap: 8px; margin-left: auto; }
.nav-link {
    padding: 10px 12px; border-radius: var(--radius);
    color: rgba(255,255,255,.76); font-weight: 700; font-size: 14px;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,.08); }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: 8px; }
.phone-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,.84); font-weight: 700; font-size: 14px;
}
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    min-height: 48px; padding: 13px 18px;
    border-radius: var(--radius);
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform .2s ease, background .2s ease, border .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--signal); color: var(--ink); }
.btn-secondary { background: rgba(255,255,255,.1); color: var(--white); border-color: rgba(255,255,255,.18); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-small { min-height: 40px; padding: 10px 13px; font-size: 14px; }
.menu-toggle {
    display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius); background: transparent;
}
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--white); margin: 5px auto; }
.mobile-nav { display: none; }
.home-hero, .page-hero {
    position: relative; min-height: 82vh; color: var(--white); overflow: hidden;
    display: grid; align-items: end;
}
.page-hero.compact { min-height: 56vh; }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88); }
.hero-overlay, .page-hero::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(7,19,22,.92), rgba(7,19,22,.68) 48%, rgba(7,19,22,.24));
}
.home-hero-content, .hero-grid { position: relative; z-index: 1; padding: 110px 0 74px; }
.hero-copy { max-width: 760px; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    color: var(--signal); text-transform: uppercase; font-size: 12px;
    font-weight: 900; letter-spacing: .08em;
}
.eyebrow span { width: 28px; height: 2px; background: var(--signal); }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.04; margin: 0; color: inherit; letter-spacing: 0; }
h1 { font-size: clamp(40px, 7vw, 78px); max-width: 920px; margin-top: 18px; }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: 21px; }
p { margin: 0; }
.hero-copy p, .home-hero-content > p {
    max-width: 700px; margin-top: 22px; font-size: clamp(17px, 2vw, 21px); color: rgba(255,255,255,.82);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-proof {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 640px); margin: 42px 0 0; border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius); background: rgba(255,255,255,.08);
}
.hero-proof div { padding: 16px 18px; border-right: 1px solid rgba(255,255,255,.12); }
.hero-proof div:last-child { border-right: 0; }
.hero-proof dt { font: 800 25px var(--font-display); color: var(--white); }
.hero-proof dd { margin: 3px 0 0; color: rgba(255,255,255,.68); }
.section { padding: clamp(72px, 9vw, 120px) 0; }
.surface { background: var(--white); }
.section-heading { max-width: 780px; margin-bottom: 34px; }
.section-heading p { color: var(--muted); font-size: 18px; margin-top: 14px; }
.section-kicker { display: block; color: var(--petrol); text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: .08em; margin-bottom: 12px; }
.split {
    display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: clamp(28px, 5vw, 68px); align-items: center;
}
.split.reversed { grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr); }
.split p { color: var(--muted); font-size: 18px; margin-top: 16px; }
.proof-panel {
    background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px; box-shadow: var(--shadow);
}
.proof-panel.dark { background: var(--ink); color: var(--white); border-color: rgba(255,255,255,.12); }
.facts-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.facts-list li { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.facts-list span { color: var(--muted); }
.facts-list strong { text-align: right; }
.card-grid, .sector-grid {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px;
}
.card, .wide-grid article, .compliance-grid article {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px; min-height: 230px; box-shadow: 0 12px 40px rgba(7,19,22,.06);
}
.surface .card { background: var(--paper); }
.card-icon, .wide-grid i {
    width: 44px; height: 44px; display: grid; place-items: center;
    border-radius: var(--radius); color: var(--ink); background: var(--signal); margin-bottom: 18px;
}
.card p, .wide-grid p, .compliance-grid p { color: var(--muted); margin-top: 12px; }
.text-link {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
    color: var(--petrol); font-weight: 900;
}
.wide-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.wide-grid article { min-height: 210px; }
.image-card {
    overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); min-height: 440px;
}
.image-card img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }
.timeline-list, .check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 16px; }
.timeline-list li { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start; }
.timeline-list span {
    width: 42px; height: 42px; display: grid; place-items: center;
    border-radius: var(--radius); background: var(--ink); color: var(--signal); font-weight: 900;
}
.timeline-list p, .check-list span { color: var(--muted); margin-top: 6px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list i { color: var(--petrol); margin-top: 5px; min-width: 18px; }
.check-list .fa-xmark { color: #b84a42; }
.compliance-teaser { background: var(--ink); color: var(--white); }
.compliance-teaser p { color: rgba(255,255,255,.72); }
.contact-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(340px, 1.15fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.contact-cards { display: grid; gap: 12px; margin-top: 24px; }
.contact-cards > * {
    display: flex; align-items: center; gap: 12px; background: var(--paper); border: 1px solid var(--line);
    padding: 16px; border-radius: var(--radius); font-weight: 800;
}
.contact-cards i { color: var(--petrol); }
.lead-form {
    display: grid; gap: 16px; padding: 26px; background: var(--paper); border: 1px solid var(--line);
    border-radius: var(--radius); box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
label { display: grid; gap: 7px; font-weight: 800; color: var(--ink-2); }
input, select, textarea {
    width: 100%; border: 1px solid rgba(7,19,22,.18); background: var(--white);
    border-radius: var(--radius); padding: 13px 14px; color: var(--ink);
}
input:focus, select:focus, textarea:focus { border-color: var(--petrol); outline: 3px solid rgba(42,166,154,.18); }
.checkbox-line { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; color: var(--muted); }
.checkbox-line input { width: auto; margin-top: 5px; }
.form-help { color: var(--muted); font-size: 14px; }
.cta-band { background: linear-gradient(135deg, var(--petrol), var(--ink)); color: var(--white); padding: 58px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-inner p { color: rgba(255,255,255,.75); margin-top: 12px; max-width: 680px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.pill-link {
    display: inline-flex; padding: 10px 13px; border: 1px solid var(--line);
    border-radius: var(--radius); background: var(--white); color: var(--ink); font-weight: 800;
}
.legal-hero { padding: 92px 0 54px; background: var(--ink); color: var(--white); }
.legal-hero h1 { font-size: clamp(38px, 5vw, 58px); }
.legal-hero p { color: rgba(255,255,255,.76); margin-top: 14px; max-width: 760px; }
.legal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.legal-grid article {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
}
.legal-grid ul { margin: 16px 0 0; padding-left: 18px; color: var(--muted); }
.legal-grid p { color: var(--muted); margin-top: 12px; }
.site-footer { background: var(--ink); color: var(--white); padding: 60px max(20px, calc((100vw - var(--max)) / 2)) 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .75fr .95fr 1fr; gap: 34px; }
.footer-brand { margin-bottom: 18px; }
.site-footer p, .site-footer li { color: rgba(255,255,255,.68); }
.footer-note { margin-top: 12px; font-size: 14px; }
.site-footer h2 { font: 800 16px var(--font-display); margin-bottom: 14px; color: var(--white); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.site-footer a:hover { color: var(--signal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 42px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; }
.footer-bottom div { display: flex; gap: 16px; }
@media (max-width: 980px) {
    .desktop-nav, .phone-link, .header-actions .btn-small { display: none; }
    .site-header { justify-content: space-between; }
    .header-actions { margin-left: 0; }
    .menu-toggle { display: block; }
    .mobile-nav {
        display: none; position: absolute; left: 0; right: 0; top: 100%;
        background: var(--ink); padding: 16px 20px 22px; border-top: 1px solid rgba(255,255,255,.1);
    }
    .mobile-nav.open { display: grid; gap: 8px; }
    .mobile-link { padding: 12px 0; color: rgba(255,255,255,.84); font-weight: 800; }
    .mobile-phone { color: var(--signal); font-weight: 900; margin-top: 8px; }
    .split, .split.reversed, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
    .card-grid, .sector-grid, .wide-grid, .legal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cta-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 640px) {
    .container { width: min(calc(100% - 28px), var(--max)); }
    .site-header { padding-inline: 14px; }
    .brand-logo { width: 138px; }
    .home-hero, .page-hero.compact { min-height: 76vh; }
    h1 { font-size: 38px; }
    .hero-proof, .card-grid, .sector-grid, .wide-grid, .legal-grid, .form-row { grid-template-columns: 1fr; }
    .hero-proof div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
    .hero-proof div:last-child { border-bottom: 0; }
    .section { padding: 64px 0; }
    .footer-bottom { flex-direction: column; }
}
