:root {
    color-scheme: dark;
    --bg: #0E0F11;
    --bg-2: #15171A;
    --card: #17191D;
    --card-2: #1F2227;
    --white: #F3F4F5;
    --grey: #B0B5BB;
    --grey-dim: #7A7F87;
    --line: rgba(255, 255, 255, 0.09);
    --line-2: rgba(255, 255, 255, 0.05);
    --accent: #ffb200;
    --accent-700: #ff9900;
    --accent-soft: rgba(181, 137, 90, 0.15);
    --maxw: 1240px;
    --serif: 'Spectral';
    --sans: 'Open Sans';
    --mono: 'IBM Plex Mono';
    --header-bg: rgba(14, 15, 17, 0.82);
}

body.light {
    color-scheme: light;
    --bg: #f3f3f3;
    --bg-2: #e9e9e9;
    --card: #FAFAFA;
    --card-2: #F0F0F0;
    --white: #14161A;
    --grey: #4A4E55;
    --grey-dim: #8A8E95;
    --line: rgba(0, 0, 0, 0.09);
    --line-2: rgba(0, 0, 0, 0.05);
    --accent: #f9ae00;
    --accent-700: #d78100;
    --accent-soft: rgba(181, 137, 90, 0.12);
    --header-bg: rgba(255, 255, 255, 0.82);
}

* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--grey);
    font-family: var(--sans), system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
}

h1, h2, h3 {
    font-family: var(--mono), ui-monospace, monospace;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.14;
    color: var(--white);
}

a {
    color: inherit;
}

.eyebrow {
    font-family: var(--mono), ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
}

.mark {
    background: linear-gradient(transparent 60%, var(--accent-soft) 60%);
    box-shadow: inset 0 -2px 0 rgba(181, 137, 90, 0.55);
    padding: 0 .04em;
}

/* header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    padding: 0 24px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .1);
}

.nav .nav-left-group {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    min-width: 45px;
}
@media (max-width: 980px) {
    .brand-logo {
        overflow: hidden;
        width: 45px;
    }
}

.brand-logo .logo {
    height: 43px;
    width: 122px;
    color: var(--white);
    display: block;
}

.brand {
    font-family: var(--mono), ui-monospace, monospace;
    font-weight: 500;
    font-size: 19px;
    letter-spacing: 0.22em;
    color: var(--white);
}

.brand span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 26px;
    font-size: 14px;
    margin-left: 24px;
    margin-right: 24px;
    padding-left: 24px;
    height: 43px;
    align-items: center;
    border-left: 1px solid var(--line);
}

.nav-links a {
    text-decoration: none;
    color: var(--grey);
    transition: color .15s;
    line-height: 1em;
}
@media (max-width: 1099px) {
    .nav-links a {
        font-size: 13px;
    }
}

.nav-links a:hover, .nav-links a:focus {
    color: var(--accent);
}

.nav-links a.active {
    color: var(--white);
}

.nav-cta {
    font-family: var(--mono), ui-monospace, monospace;
    font-size: 13px;
    letter-spacing: 0.03em;
    background: var(--accent);
    color: #0E0F11;
    padding: 10px 18px;
    border-radius: 3px;
    text-decoration: none;
    transition: background .15s;
    white-space: nowrap;
    font-weight: 500;
}

.nav-cta:hover, .nav-cta:focus {
    background: var(--accent-700);
}

.nav-cta.hidden {
    display: none;
}

@media (max-width: 780px) {
    .nav-links {
        display: none;
    }
}

/* Nascosto su desktop di default */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101; /* Sta sopra l'overlay */
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
}

.nav-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--accent);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animazione in X quando attivo */
.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

@media (max-width: 780px) {
    /* Nasconde la nav desktop e mostra il toggle */
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Menu overlay mobile */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-2);
        border-left: 1px solid var(--line);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        padding: 90px 32px 32px;
        gap: 20px;
        z-index: 99;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-menu a {
        font-family: var(--mono), ui-monospace, monospace;
        font-size: 16px;
        color: var(--grey);
        text-decoration: none;
        padding: 10px 0;
        border-bottom: 1px solid var(--line-2);
        transition: color 0.15s;
    }

    .mobile-menu a:hover,
    .mobile-menu a:focus {
        color: var(--white);
    }

    /* Sfondamento scuro per il resto della pagina quando il menu è aperto */
    .menu-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        z-index: 98;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
    }

    .menu-backdrop.active {
        opacity: 1;
        pointer-events: auto;
    }
}

/* ************************************ */

/* hero */
.hero {
    padding: 112px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -140px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(181, 137, 90, 0.12), rgba(181, 137, 90, 0) 66%);
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:1.10fr 0.90fr;
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(40px, 5.6vw, 66px);
    margin: 18px 0 26px;
    max-width: 15ch;
    font-weight: 700;
    line-height: 1em;
}

.hero p.lead {
    font-size: 19px;
    color: var(--grey);
    max-width: 48ch;
    margin: 0 0 34px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    font-family: var(--mono), ui-monospace, monospace;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 3px;
    transition: .15s;
    display: inline-block;
}

.btn-primary {
    background: var(--accent);
    color: #0E0F11;
    font-weight: 500;
}

.btn-primary:hover, .btn-primary:focus {
    background: var(--accent-700);
}

.btn-ghost {
    color: var(--white);
    border-bottom: 2px solid var(--accent);
    border-radius: 0;
    padding: 7px 0;
}

.btn-ghost:hover, .btn-ghost:focus {
    color: var(--accent);
}

.ledger {
    font-family: var(--mono), ui-monospace, monospace;
    font-size: 12px;
    line-height: 1.9;
    color: var(--grey-dim);
    border-left: 1px solid var(--line);
    padding-left: 24px;
}

.ledger .lh {
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--grey-dim);
    display: block;
    margin-bottom: 14px;
}

.ledger ul {
    margin: 0;
    padding: 0;
}

.ledger li {
    list-style: none;
    opacity: .55;
    padding: 4px 0;
    transition: opacity .5s, color .5s, background .5s;
}

.ledger li.surfaced {
    opacity: 1;
    color: var(--white);
    background: var(--accent-soft);
    margin-left: -12px;
    padding-left: 12px;
    border-radius: 3px;
}

.ledger li.surfaced::after {
    content: " → misurabile";
    color: var(--accent);
    font-size: 11px;
}

@media (max-width: 860px) {
    .hero-grid {
        grid-template-columns:1fr;
        gap: 34px;
    }

    .ledger {
        border-left: none;
        border-top: 1px solid var(--line);
        padding: 22px 0 0;
    }
}

/* sections */
.sec {
    padding: 90px 0;
    border-top: 1px solid var(--line);
}

.sec-head {
    max-width: 64ch;
    margin-bottom: 42px;
}

.sec-head h2 {
    font-size: clamp(28px, 3.7vw, 40px);
    margin: 12px 0 0;
}

.sec-head p.intro {
    color: var(--grey);
    font-size: 18px;
    max-width: 60ch;
    margin: 16px 0 0;
}

.alt {
    background: var(--bg-2);
}

.sec.grey,
.sec.grey .form-cell {
    background: var(--card);
}


/* invert -> nel tema scuro diventa semplicemente una sezione "alt" */
.invert {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
}

.invert h1, .invert h2, .invert h3 {
    color: var(--white);
}

.invert .eyebrow {
    color: var(--accent);
}

.invert p {
    color: var(--grey);
}

.invert .mark {
    background: var(--accent);
    color: var(--bg);
}

/* aree */
.area-intro {
    color: var(--grey);
    font-size: 18px;
    max-width: 62ch;
    margin: 16px 0 0;
}

/* storia */
.storia p {
    font-size: 19px;
    color: var(--grey);
    max-width: 62ch;
}

.storia p strong {
    color: var(--white);
    font-weight: 600;
}

/* suite */
.suite {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 18px;
    margin-top: 38px;
}

.prod {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: transform .15s, border-color .15s, background .15s;
}

.prod:hover {
    transform: translateY(-3px);
    background: var(--card-2);
    border-color: rgba(181, 137, 90, 0.35);
}

.prod h3 {
    font-size: 19px;
    margin: 0 0 8px;
}

.prod p {
    font-size: 14px;
    color: var(--grey);
    margin: 0 0 18px;
    flex: 1;
}

.badges {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.badge {
    font-family: var(--mono), ui-monospace, monospace;
    font-size: 10px;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 20px;
    background: transparent;
    color: var(--grey-dim);
    border: 1px solid var(--line);
}

.badge.new {
    color: var(--accent);
    border-color: rgba(181, 137, 90, 0.45);
}

@media (max-width: 820px) {
    .suite {
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width: 560px) {
    .suite {
        grid-template-columns:1fr;
    }
}

/* invisible work */
.forms {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 7px;
    overflow: hidden;
}

.form-cell {
    background: var(--card);
    padding: 30px 26px;
}

.form-cell .n {
    color: var(--accent);
    font-weight: 500;
    width: 32px;
    height: 32px;
}

.form-cell h3 {
    font-size: 21px;
    margin: 8px 0 8px;
}

.form-cell p {
    margin: 0;
    color: var(--grey);
    font-size: 15px;
}

.forms-foot {
    margin-top: 26px;
    font-family: var(--serif), Georgia, serif;
    font-size: 20px;
    font-style: italic;
    color: var(--grey);
}

@media (max-width: 760px) {
    .forms {
        grid-template-columns:1fr;
    }
}

/* method strip */
.steps {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 6px;
    font-family: var(--serif), Georgia, serif;
    font-size: clamp(22px, 3vw, 33px);
    font-weight: 600;
    color: var(--white);
    align-items: center;
}

.steps .arr {
    color: var(--accent);
    font-family: var(--sans), system-ui, sans-serif;
    font-weight: 400;
}

/* measure / instrument */
.move-tag {
    font-family: var(--mono), ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: .14em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 500;
}

.instrument {
    display: grid;
    grid-template-columns:1fr auto 1fr;
    gap: 22px;
    align-items: stretch;
    margin-top: 38px;
}

.panel {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 24px;
}

.panel-label {
    font-family: var(--mono), ui-monospace, monospace;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--grey-dim);
    margin: 0 0 16px;
}

.task-act {
    font-family: var(--serif), Georgia, serif;
    font-size: 18px;
    margin: 0 0 18px;
    line-height: 1.3;
    color: var(--white);
}

.attr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono), ui-monospace, monospace;
    font-size: 13px;
    padding: 9px 0;
    border-top: 1px dashed var(--line-2);
}

.attr .k {
    color: var(--grey-dim);
}

.attr .v {
    color: var(--grey);
    font-weight: 500;
}

.dots {
    letter-spacing: 2px;
    font-size: 11px;
}

.dot-on {
    color: var(--accent);
}

.dot-off {
    color: rgba(255, 255, 255, 0.16);
}

.arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-family: var(--mono), ui-monospace, monospace;
    font-size: 13px;
}

.arrow span {
    writing-mode: vertical-rl;
    letter-spacing: .2em;
}

.radar-cap {
    font-family: var(--mono), ui-monospace, monospace;
    font-size: 11px;
    color: var(--grey-dim);
    text-align: center;
    margin: 6px 0 14px;
}

.read {
    border-top: 1px solid var(--line-2);
    padding-top: 14px;
    font-size: 14px;
}

.read p {
    margin: 0 0 8px;
    color: var(--grey);
}

.read b {
    color: var(--white);
    font-weight: 600;
}

.read .prio {
    color: var(--accent);
    font-weight: 600;
}

.cta-inline {
    margin-top: 32px;
    font-size: 18px;
}

.cta-inline a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 1px;
}

.cta-inline a:hover {
    color: var(--white);
    border-color: var(--white);
}

@media (max-width: 880px) {
    .instrument {
        grid-template-columns:1fr;
    }

    .arrow span {
        writing-mode: horizontal-tb;
    }
}

/* govern */
.govern .pull {
    font-family: var(--serif), Georgia, serif;
    font-size: clamp(23px, 3.1vw, 33px);
    font-style: italic;
    color: var(--white);
    max-width: 26ch;
    margin: 8px 0 24px;
    line-height: 1.25;
    border-left: 3px solid var(--accent);
    padding-left: 20px;
}

.govern p {
    max-width: 56ch;
    font-size: 18px;
}

/* punto di vista */
.pov-list {
    margin-top: 32px;
    border-top: 1px solid var(--line);
}

.pov-list .line {
    display: block;
    position: relative;
    padding: 20px 0 20px 8ch;
    border-bottom: 1px solid var(--line);
    font-family: var(--sans), system-ui, sans-serif;
    font-size: clamp(18px, 2.5vw, 18px);
    line-height: 1.3;
    color: var(--white);
    max-width: 92ch;
}

.pov-list .line em {
    font-style: italic;
    color: var(--accent);
}
.pov-list .line .icon {
    position: absolute;
    left: 2ch;
    color: var(--accent);
}

.pov-apex {
    font-family: var(--serif), Georgia, serif;
    font-size: clamp(23px, 3vw, 33px);
    line-height: 1.28;
    color: var(--white);
    margin: 42px 0 0;
    font-weight: 600;
}

.pov-apex em {
    font-style: normal;
    color: var(--accent);
}

@media (max-width: 600px) {
    .pov-list .line {
        font-size: 19px;
        max-width: none;
    }
}

/* competenze */
.skills {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 18px;
    margin-top: 8px;
}

.skill {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    border-top: 2px solid var(--accent);
}

.skill h3 {
    font-size: 20px;
    margin: 0 0 10px;
    line-height: 1.3;
}

.skill p {
    font-size: 15px;
    color: var(--grey);
    margin: 0 0 14px;
}

.skill .tie {
    font-family: var(--serif), Georgia, serif;
    font-style: italic;
    font-size: 15px;
    color: var(--accent);
}

.skill .tech {
    font-family: var(--mono), ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: .05em;
    color: var(--grey-dim);
    border-top: 1px solid var(--line);
    padding-top: 12px;
    margin-top: auto;
}

.skill .tech b {
    color: var(--white);
    font-weight: 500;
}

@media (max-width: 760px) {
    .skills {
        grid-template-columns:1fr;
    }
}

/* cosa risolviamo */
.results {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 18px;
    margin-top: 8px;
}

.result {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 26px 24px;
}

.result h3 {
    font-size: 19px;
    margin: 0 0 12px;
    line-height: 1.3;
}

.result p {
    font-size: 15px;
    color: var(--grey);
    margin: 0 0 16px;
}

.result .out {
    font-family: var(--mono), ui-monospace, monospace;
    font-size: 13px;
    color: var(--accent);
    border-top: 1px solid var(--line);
    padding-top: 12px;
    display: block;
}

@media (max-width: 860px) {
    .results {
        grid-template-columns:1fr;
    }
}

/* aree: cosa facciamo (cap) */
.caps {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 18px;
    margin-top: 38px;
}

.cap {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    transition: border-color .15s, background .15s;
}

.cap:hover {
    background: var(--card-2);
    border-color: rgba(181, 137, 90, 0.35);
}

.cap h3 {
    font-size: 20px;
    margin: 0 0 10px;
    line-height: 1.28;
    color: var(--accent);
}

.cap p {
    font-size: 15px;
    color: var(--grey);
    margin: 0 0 16px;
    flex: 1;
}

.cap .tag {
    font-family: var(--mono), ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: .04em;
    color: var(--grey-dim);
    border-top: 1px solid var(--line);
    padding-top: 12px;
}

.cap .tag b {
    color: var(--white);
    font-weight: 500;
}

@media (max-width: 640px) {
    .caps {
        grid-template-columns:1fr;
    }
}

/* aree: AI, con misura (tool) */
.tools {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 14px;
    margin-top: 38px;
}

.tool {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tool h3 {
    font-size: 17px;
    margin: 0 0 8px;
    color: var(--accent);
}

.tool p {
    color: var(--grey);
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

.tool .tag {
    font-family: var(--mono), ui-monospace, monospace;
    font-size: 10px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--grey-dim);
    display: block;
    margin-top: 12px;
}

@media (max-width: 820px) {
    .tools {
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width: 480px) {
    .tools {
        grid-template-columns:1fr;
    }
}

/* aree: lavora con noi */
.join {
    text-align: center;
}

.join p {
    max-width: 54ch;
    margin: 18px auto 30px;
    color: var(--grey);
    font-size: 18px;
}

/* closing */
.closing {
    text-align: center;
    padding: 108px 0;
    border-top: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.closing::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 680px;
    height: 340px;
    background: radial-gradient(ellipse, rgba(181, 137, 90, 0.10), rgba(181, 137, 90, 0) 70%);
}

.closing .wrap {
    position: relative;
    z-index: 1;
}

.closing h2 {
    font-size: clamp(32px, 4.2vw, 50px);
    margin: 14px 0 30px;
}

.closing .btn-primary {
    font-size: 15px;
    padding: 16px 32px;
}

.closing .sub {
    margin-top: 18px;
    font-size: 15px;
    color: var(--grey-dim);
}

.closing .sub a {
    color: var(--accent);
}

/* footer */
footer {
    border-top: 1px solid var(--line);
    padding: 0 0 48px 0;
    font-size: 14px;
    color: var(--grey-dim);
}

.social {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--line);
    margin-bottom: 48px;
}
.social a {
    color: var(--grey-dim);
    text-decoration: none;
    font-size: 32px;
    padding: 24px;
}
.social a:hover {
    color: var(--white);
}

.foot {
    display: flex;
    justify-content: space-between;
    /*gap: 24px;
    flex-wrap: wrap; */
    align-items: stretch;
}


.foot a {
    color: var(--grey-dim);
    text-decoration: none;
}

.foot a:hover {
    color: var(--white);
}

.foot .meta {
    font-family: var(--mono), ui-monospace, monospace;
    font-size: 12px;
    line-height: 1.9;
    padding: 0 20px;
    border-left: 1px solid var(--line);
}

.foot .meta.brand {
    width: 130px;
    border-left: 0;
    padding-left: 0;
}
.foot .meta.brand img {
    height: 43px;
    opacity: 0.5;
}

.reveal {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .ledger li, .prod {
        transition: none;
    }

    html {
        scroll-behavior: auto;
    }
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ////////////////////////// */

.map-grayscale{
    filter: grayscale(100%) contrast(1.05) brightness(0.6);
    transition: filter .3s ease;
}
.map-grayscale:hover{
    filter: grayscale(40%) contrast(1) brightness(1) !important;
}
.map-responsive {
    overflow: hidden;
    min-height: 400px;
    position: relative;
    height: 0;
}
.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border: none;
}

/* ////////////////////////// */

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--grey);
    cursor: pointer;
    padding: 0;
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

.theme-toggle .icon-moon {
    display: none;
}

body.light .theme-toggle .icon-sun {
    display: none;
}

body.light .theme-toggle .icon-moon {
    display: block;
}

body.light .brand-logo .logo.white,
body.light .foot .meta.brand img.white {
    display: none;
}
body.light .brand-logo .logo.black,
body.light .foot .meta.brand img.black {
    display: block;
}
body.dark .brand-logo .logo.white,
body.dark .foot .meta.brand img.white {
    display: block;
}
body.dark .brand-logo .logo.black,
body.dark .foot .meta.brand img.black {
    display: none;
}

body.light .map-grayscale{
    filter: grayscale(100%) contrast(1.05) brightness(0.95);
    transition: filter .3s ease;
}