:root {
    --marsala: #93495a;
    --marsala-dark: #6f3040;
    --rose: #ed9bab;
    --rose-soft: #fbe8ec;
    --ink: #1f1b1c;
    --ink-soft: #2d2729;
    --muted: #6e6668;
    --paper: #ffffff;
    --surface: #f7f4f4;
    --line: #e6dfe1;
    --green: #286b58;
    --shadow: 0 22px 55px rgba(54, 28, 34, 0.12);
    --shell: min(1220px, calc(100% - 48px));
    --header: 76px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 112px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(147, 73, 90, 0.35);
    outline-offset: 3px;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: 0; }

h1, h2 {
    font-family: "Playfair Display", serif;
    line-height: 1.02;
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 5.4vw, 5rem);
    font-weight: 600;
}

.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
    padding: 10px 14px;
    color: white;
    background: var(--marsala-dark);
    transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.topline {
    position: relative;
    z-index: 60;
    color: white;
    background: var(--marsala-dark);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.topline-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(230, 223, 225, 0.88);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: var(--header);
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    min-width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    background: var(--marsala);
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    font-weight: 600;
}

.brand-name { display: grid; line-height: 1; }
.brand-name strong { font-family: "Manrope", sans-serif; font-size: 1.05rem; }
.brand-name small { margin-top: 6px; color: var(--muted); font-size: 0.56rem; font-weight: 700; text-transform: uppercase; }

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 26px;
}

.main-nav a {
    position: relative;
    color: #4f4749;
    font-size: 0.77rem;
    font-weight: 700;
}

.main-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--marsala);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.main-nav a:hover { color: var(--marsala); }
.main-nav a:hover::after { transform: scaleX(1); }

.icon-button {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    display: inline-grid;
    place-items: center;
    color: var(--ink);
    background: white;
    cursor: pointer;
}

.icon-button svg { width: 21px; height: 21px; }
.menu-toggle { margin-left: auto; display: none; }

.button {
    min-height: 46px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; }

.button-header {
    min-height: 42px;
    padding: 10px 15px;
    color: white;
    background: var(--marsala);
}

.button-header:hover { background: var(--marsala-dark); }

.button-primary {
    color: white;
    background: var(--marsala);
    box-shadow: 0 14px 32px rgba(111, 48, 64, 0.28);
}

.button-primary:hover { background: var(--marsala-dark); }

.button-glass {
    color: white;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(8px);
}

.button-glass:hover { background: rgba(255, 255, 255, 0.16); }

.button-white { color: var(--marsala-dark); background: white; box-shadow: var(--shadow); }
.button-white:hover { background: var(--rose-soft); }
.button-outline { color: var(--marsala); border-color: rgba(147, 73, 90, 0.36); }
.button-outline:hover { color: white; background: var(--marsala); }

.hero {
    position: relative;
    min-height: calc(100svh - 120px);
    max-height: 880px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    background: var(--ink);
}

.hero-media,
.hero-overlay { position: absolute; inset: 0; }

.hero-media {
    background-image: url("https://images.unsplash.com/photo-1629909613654-28e377c37b09?q=85&w=2200&auto=format&fit=crop");
    background-position: center 48%;
    background-size: cover;
    transform: scale(1.01);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(25, 17, 20, 0.96) 0%, rgba(45, 25, 31, 0.84) 48%, rgba(62, 28, 37, 0.44) 76%, rgba(35, 20, 24, 0.28) 100%),
        linear-gradient(0deg, rgba(25, 17, 20, 0.55), transparent 55%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: inherit;
    padding-block: 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 70px;
}

.hero-copy { max-width: 790px; }

.eyebrow {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--marsala);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; }
.eyebrow-light { color: #f5b9c4; }

.hero h1 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(4.8rem, 12vw, 10.8rem);
    font-weight: 600;
    line-height: 0.82;
}

.hero h1 span { color: var(--rose); }

.hero-lead {
    max-width: 760px;
    margin: 28px 0 16px;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.15;
}

.hero-text { max-width: 660px; color: rgba(255, 255, 255, 0.72); font-size: 0.96rem; }
.hero-actions { margin-top: 31px; display: flex; flex-wrap: wrap; gap: 11px; }

.hero-index {
    width: 190px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-index span,
.hero-index p { margin: 0; }

.hero-index span { color: #f4b5c1; font-family: "Playfair Display", serif; font-size: 0.75rem; }
.hero-index p { color: rgba(255, 255, 255, 0.82); font-family: "Manrope", sans-serif; font-size: 0.85rem; line-height: 1.35; }

.hero-index {
    padding-top: 18px;
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 20px 10px;
}

.hero-scroll {
    position: absolute;
    right: 28px;
    bottom: 22px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
}

.impact-strip { color: white; background: var(--marsala); }

.impact-grid {
    min-height: 98px;
    display: grid;
    grid-template-columns: 0.7fr 0.7fr 0.7fr 1.9fr;
}

.impact-grid > div {
    padding: 18px 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 13px;
}

.impact-grid > div:first-child { padding-left: 0; border-left: 0; }
.impact-grid strong { font-family: "Playfair Display", serif; font-size: 2.1rem; }
.impact-grid span { font-size: 0.7rem; line-height: 1.35; }
.impact-place { justify-content: flex-end; color: rgba(255, 255, 255, 0.82); }
.impact-place svg { width: 22px; height: 22px; color: #ffd2da; }

.section { padding-block: 116px; }
.group-intro { background: white; }

.intro-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 90px;
    align-items: start;
}

.intro-heading h2 { max-width: 710px; margin-bottom: 0; }
.intro-body { padding-top: 37px; }
.intro-body > p { color: var(--muted); }
.intro-body .intro-lead { color: var(--ink); font-family: "Playfair Display", serif; font-size: 1.4rem; line-height: 1.5; }

.text-link {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--marsala-dark);
    font-size: 0.8rem;
    font-weight: 700;
}

.text-link svg { width: 18px; height: 18px; transition: transform 180ms ease; }
.text-link:hover svg { transform: translateX(3px); }
.text-link-light { color: white; }

.pillars-list {
    margin-top: 78px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.pillar {
    position: relative;
    min-height: 236px;
    padding: 28px 24px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}

.pillar:first-child { padding-left: 0; }
.pillar:last-child { border-right: 0; }
.pillar > span { position: absolute; top: 23px; right: 20px; color: #c9bfc1; font-family: "Playfair Display", serif; }
.pillar > svg { width: 29px; height: 29px; margin-bottom: auto; color: var(--marsala); }
.pillar h3 { margin-bottom: 7px; font-family: "Playfair Display", serif; font-size: 1.35rem; }
.pillar p { margin-bottom: 0; color: var(--muted); font-size: 0.78rem; }

.ecosystem { background: var(--surface); }

.section-heading {
    margin-bottom: 48px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: 70px;
}

.section-heading h2 { max-width: 780px; margin-bottom: 0; }
.section-heading > p { margin-bottom: 4px; color: var(--muted); }

.brand-tabs {
    margin-bottom: 30px;
    display: flex;
    gap: 5px;
    overflow-x: auto;
    scrollbar-width: none;
}

.brand-tabs::-webkit-scrollbar { display: none; }

.brand-tab {
    min-height: 42px;
    padding: 9px 17px;
    border: 1px solid var(--line);
    border-radius: 5px;
    flex: 0 0 auto;
    color: var(--muted);
    background: white;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
}

.brand-tab.active { color: white; background: var(--marsala); border-color: var(--marsala); }

.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.brand-card {
    min-width: 0;
    min-height: 520px;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: white;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

a.brand-card:hover { transform: translateY(-5px); border-color: #d6bdc3; box-shadow: var(--shadow); }
.brand-card.is-hidden { display: none; }

.brand-card-featured { grid-column: span 2; display: grid; grid-template-columns: 1.05fr 0.95fr; }
.brand-card-media { min-height: 245px; overflow: hidden; background: #eadcde; }
.brand-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
a.brand-card:hover .brand-card-media img { transform: scale(1.025); }

.brand-card-featured .brand-card-media { min-height: 100%; }
.brand-card-featured .brand-card-media img { min-height: 100%; }

.academy-media img { object-position: center 46%; }

.brand-card-visual {
    min-height: 245px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.visual-emsono { color: white; background: #252b38; flex-direction: column; gap: 13px; }
.visual-emsono svg { width: 55px; height: 55px; color: #d7b9ff; }
.visual-emsono span { font-family: "Manrope", sans-serif; font-size: 1.2rem; font-weight: 700; }

.visual-emloc { gap: 8px; background: #fff9fa; }
.visual-emloc img { width: 42%; height: 190px; object-fit: contain; }

.brand-card-copy {
    padding: 27px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.brand-card-top { min-height: 36px; margin-bottom: 18px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }

.brand-symbol { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; color: var(--marsala); background: var(--rose-soft); }
.brand-symbol-image { overflow: hidden; }
.brand-symbol-image img { width: 100%; height: 100%; object-fit: cover; }

.brand-status {
    width: max-content;
    max-width: 100%;
    padding: 5px 8px;
    border: 1px solid #d8d0d2;
    border-radius: 4px;
    color: #817679;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-live { color: #2d6d58; border-color: #a8d2c4; background: #f2faf7; }
.card-category { margin-bottom: 7px; color: var(--marsala); font-size: 0.63rem; font-weight: 700; text-transform: uppercase; }
.brand-card h3 { margin-bottom: 11px; font-family: "Playfair Display", serif; font-size: 2rem; font-weight: 600; }
.brand-card-copy > p:not(.card-category) { color: var(--muted); font-size: 0.82rem; }

.card-action {
    margin-top: auto;
    padding-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--marsala-dark);
    font-size: 0.73rem;
    font-weight: 700;
}

.card-action svg { width: 16px; height: 16px; }

.brand-card-compact {
    min-height: 330px;
    padding: 26px;
}

.brand-card-compact .brand-card-copy { padding: 0; }
.compact-icon { width: 48px; height: 48px; margin-bottom: 32px; border-radius: 50%; display: grid; place-items: center; color: var(--marsala); background: var(--rose-soft); }
.compact-icon svg { width: 23px; height: 23px; }
.brand-card-muted { background: #f1eeee; }
.brand-card-muted .compact-icon { color: #8c8183; background: #e5dfe0; }
.brand-card-muted h3, .brand-card-muted p { color: #777073; }

.emface-feature {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    background: var(--marsala-dark);
}

.emface-feature-media,
.emface-feature-overlay { position: absolute; inset: 0; }

.emface-feature-media {
    background-image: url("equipe-emface-lideres.jpg");
    background-position: left center;
    background-size: cover;
    clip-path: inset(0 50% 0 0);
    transform: translateX(50%);
}

.emface-feature-overlay {
    background: linear-gradient(90deg, rgba(91, 36, 51, 0.99) 0%, rgba(111, 48, 64, 0.96) 50%, rgba(111, 48, 64, 0.34) 77%, rgba(37, 24, 28, 0.22) 100%);
}

.emface-feature-inner { position: relative; z-index: 2; padding-block: 88px; }
.emface-feature h2 { max-width: 740px; margin-bottom: 24px; font-size: clamp(3.3rem, 7vw, 6.8rem); }
.emface-feature-inner > p:not(.eyebrow) { max-width: 570px; color: rgba(255, 255, 255, 0.75); }
.feature-actions { margin-top: 28px; display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }

.connections { background: white; }

.connection-flow {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

.connection-step {
    position: relative;
    min-height: 250px;
    padding: 24px 20px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.connection-step > span { position: absolute; top: 20px; right: 10px; color: #c5b9bc; font-family: "Playfair Display", serif; }
.connection-icon { width: 45px; height: 45px; margin-bottom: 50px; border-radius: 50%; display: grid; place-items: center; color: var(--marsala); background: var(--rose-soft); }
.connection-icon svg { width: 22px; height: 22px; }
.connection-step h3 { margin-bottom: 8px; font-family: "Playfair Display", serif; font-size: 1.3rem; }
.connection-step p { margin-bottom: 0; color: var(--muted); font-size: 0.76rem; }
.flow-arrow { width: 20px; height: 20px; color: #c5b9bc; }

.principles { padding-block: 110px; color: white; background: var(--ink-soft); }

.principles-layout { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 100px; }
.principles-title h2 { max-width: 580px; }
.principles-list { border-top: 1px solid rgba(255, 255, 255, 0.18); }
.principles-list > div { padding-block: 21px; border-bottom: 1px solid rgba(255, 255, 255, 0.18); display: grid; grid-template-columns: 0.48fr 1fr; gap: 25px; }
.principles-list span { color: #f4b5c1; font-family: "Playfair Display", serif; font-size: 1.1rem; }
.principles-list p { margin-bottom: 0; color: rgba(255, 255, 255, 0.62); font-size: 0.8rem; }

.contact { padding-block: 100px; background: var(--rose-soft); }
.contact-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 90px; }
.contact-copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted); }
.contact-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.contact-details { border-top: 1px solid #d8c8cc; }
.contact-details > div { padding: 20px 4px; border-bottom: 1px solid #d8c8cc; display: flex; align-items: center; gap: 16px; }
.contact-details svg { width: 21px; height: 21px; color: var(--marsala); }
.contact-details span { display: grid; color: #453d3f; font-size: 0.82rem; }
.contact-details small { color: var(--marsala); font-size: 0.6rem; font-weight: 700; text-transform: uppercase; }

.site-footer { padding-top: 72px; color: #b8adaf; background: #1d191a; }
.footer-main { display: grid; grid-template-columns: 1.55fr repeat(3, 0.75fr); gap: 58px; }
.brand-footer .brand-mark { background: var(--rose); color: #512331; }
.brand-footer .brand-name strong { color: white; }
.brand-footer .brand-name small { color: #8f8386; }
.footer-main > div:first-child > p { max-width: 360px; margin-top: 20px; color: #908487; font-size: 0.8rem; }
.footer-main h3 { margin-bottom: 17px; color: white; font-size: 0.7rem; text-transform: uppercase; }
.footer-main > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-main > div:not(:first-child) a { color: #9f9396; font-size: 0.75rem; }
.footer-main > div:not(:first-child) a:hover { color: #f2adba; }
.footer-bottom { margin-top: 54px; min-height: 70px; border-top: 1px solid #383133; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #776d6f; font-size: 0.65rem; }

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 45;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    background: var(--green);
    box-shadow: 0 14px 32px rgba(30, 91, 73, 0.28);
    transition: transform 180ms ease;
}

.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-float svg { width: 26px; height: 26px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 620ms ease, transform 620ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
    .main-nav { gap: 17px; }
    .main-nav a { font-size: 0.7rem; }
    .button-header { display: none; }
    .brand-grid { grid-template-columns: repeat(2, 1fr); }
    .brand-card-featured { grid-column: span 2; }
    .emface-feature-media { clip-path: inset(0 50% 0 0); }
}

@media (max-width: 900px) {
    :root { --shell: min(100% - 32px, 720px); --header: 68px; }
    .menu-toggle { display: inline-grid; }
    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        padding: 15px max(20px, calc((100% - 720px) / 2));
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        background: white;
        box-shadow: 0 18px 36px rgba(40, 23, 28, 0.12);
    }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 12px 0; font-size: 0.84rem; }
    .main-nav a::after { display: none; }
    .hero { min-height: calc(100svh - 102px); max-height: none; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-index { display: none; }
    .impact-grid { grid-template-columns: repeat(3, 1fr); }
    .impact-place { grid-column: 1 / -1; justify-content: flex-start; border-top: 1px solid rgba(255,255,255,.2); border-left: 0 !important; }
    .intro-layout, .section-heading, .principles-layout, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .intro-body { padding-top: 0; }
    .pillars-list { grid-template-columns: repeat(2, 1fr); }
    .pillar:nth-child(2) { border-right: 0; }
    .pillar:nth-child(3), .pillar:nth-child(4) { border-top: 1px solid var(--line); }
    .brand-card-featured { grid-template-columns: 1fr; }
    .brand-card-featured .brand-card-media { min-height: 360px; }
    .emface-feature { min-height: 760px; align-items: flex-end; }
    .emface-feature-media { clip-path: inset(0 50% 0 0); background-position: left center; }
    .emface-feature-overlay { background: linear-gradient(0deg, rgba(91,36,51,.99) 0%, rgba(111,48,64,.96) 51%, rgba(111,48,64,.25) 90%); }
    .connection-flow { grid-template-columns: repeat(2, 1fr); }
    .flow-arrow { display: none; }
    .principles-layout { gap: 55px; }
    .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-main > div:last-child { grid-column: 2; }
}

@media (max-width: 640px) {
    :root { --shell: calc(100% - 28px); }
    .topline-inner { justify-content: center; }
    .topline-inner span:last-child { display: none; }
    .brand-mark { width: 42px; height: 42px; }
    .hero { min-height: 690px; align-items: flex-end; }
    .hero-media { background-position: 58% center; }
    .hero-overlay { background: linear-gradient(0deg, rgba(25,17,20,.98) 0%, rgba(45,25,31,.88) 63%, rgba(45,25,31,.45) 100%); }
    .hero-inner { padding-block: 180px 42px; }
    .hero h1 { font-size: clamp(4.2rem, 24vw, 6.3rem); }
    .hero-lead { margin-top: 20px; font-size: 1.55rem; }
    .hero-text { font-size: 0.82rem; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .hero-scroll { display: none; }
    .impact-grid { grid-template-columns: repeat(3, 1fr); }
    .impact-grid > div { padding: 14px 8px; align-items: flex-start; flex-direction: column; gap: 2px; }
    .impact-grid > div:first-child { padding-left: 0; }
    .impact-grid strong { font-size: 1.6rem; }
    .impact-grid span { font-size: 0.58rem; }
    .impact-place { padding-block: 15px !important; flex-direction: row !important; align-items: center !important; gap: 9px !important; }
    .impact-place span { font-size: 0.66rem; }
    .section { padding-block: 80px; }
    h2 { font-size: clamp(2.3rem, 12vw, 3.5rem); }
    .pillars-list { grid-template-columns: 1fr; margin-top: 50px; }
    .pillar, .pillar:first-child { min-height: 200px; padding: 24px 18px; border-right: 0; border-top: 1px solid var(--line); }
    .pillar:first-child { border-top: 0; }
    .brand-grid { grid-template-columns: 1fr; }
    .brand-card-featured { grid-column: auto; }
    .brand-card { min-height: 500px; }
    .brand-card-featured { display: flex; }
    .brand-card-featured .brand-card-media { min-height: 280px; }
    .brand-card-compact { min-height: 300px; }
    .brand-tabs { margin-right: -14px; }
    .emface-feature { min-height: 790px; }
    .emface-feature-media { background-position: left top; background-size: auto 58%; background-repeat: no-repeat; clip-path: none; transform: none; }
    .emface-feature h2 { font-size: clamp(3.1rem, 17vw, 4.8rem); }
    .feature-actions { align-items: flex-start; flex-direction: column; }
    .connection-flow { grid-template-columns: 1fr; }
    .connection-step { min-height: 210px; }
    .connection-icon { margin-bottom: 34px; }
    .principles { padding-block: 80px; }
    .principles-list > div { grid-template-columns: 1fr; gap: 6px; }
    .contact { padding-block: 78px; }
    .contact-actions { flex-direction: column; }
    .contact-actions .button { width: 100%; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
    .footer-main > div:first-child { grid-column: 1 / -1; }
    .footer-main > div:last-child { grid-column: auto; }
    .footer-bottom { padding-block: 20px; align-items: flex-start; flex-direction: column; justify-content: center; }
    .whatsapp-float { right: 14px; bottom: 14px; width: 52px; height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
