:root {
    --ilc-ink: #171310;
    --ilc-black: #0d0c0b;
    --ilc-espresso: #251a14;
    --ilc-copper: #b84f2c;
    --ilc-copper-dark: #8f3219;
    --ilc-gold: #aa7b35;
    --ilc-paper: #fbf8f3;
    --ilc-cream: #f2ece3;
    --ilc-line: #dfd5ca;
    --ilc-muted: #6f655d;
    --ilc-white: #fff;
    --ilc-radius: 14px;
    --ilc-shadow: 0 18px 50px rgba(35, 23, 16, .09);
}

/* Homepage-only exhibitor runway */
.ilc-exhibitor-runway {
    --runway-copper: #c45a32;
    position: relative;
    overflow: hidden;
    padding: 64px 0 70px;
    color: #fff;
    background:
        radial-gradient(circle at 50% 0, rgba(146,72,42,.22), transparent 43%),
        linear-gradient(145deg, #17130f 0%, #090807 58%, #15100c 100%);
}
.ilc-exhibitor-runway::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .22;
    pointer-events: none;
    background: repeating-linear-gradient(115deg, transparent 0 68px, rgba(255,255,255,.025) 69px 70px);
}
.ilc-runway-heading { position: relative; z-index: 2; text-align: center; margin-bottom: 32px; }
.ilc-runway-heading > span { color: #d99271; font-size: 12px; font-weight: 800; letter-spacing: .24em; }
.ilc-runway-heading h2 { margin: 8px 0 10px; color: #fff; font-size: clamp(28px,3.1vw,45px); }
.ilc-runway-heading > a { color: #f3c1a8; font-size: 14px; font-weight: 800; }
.ilc-runway-desktop { position: relative; z-index: 1; display: grid; gap: 18px; }
.ilc-logo-lane { overflow: hidden; padding: 2px 0; direction: ltr; }
.ilc-logo-track { display: flex; width: max-content; animation: ilc-logo-runway 36s linear infinite; }
.ilc-logo-lane.is-reverse .ilc-logo-track { animation-direction: reverse; animation-duration: 42s; }
.ilc-logo-lane:hover .ilc-logo-track,
.ilc-logo-lane:focus-within .ilc-logo-track { animation-play-state: paused; }
.ilc-logo-track, .ilc-logo-set { direction: ltr; }
.ilc-logo-set { display: flex; flex: none; gap: 12px; padding-inline-end: 12px; }
.ilc-logo-tile {
    position: relative;
    display: grid;
    place-items: center;
    width: clamp(120px,10vw,148px);
    height: 82px;
    overflow: hidden;
    border: 1px solid rgba(198,154,128,.22);
    border-radius: 12px;
    background: #f7f4ef;
    box-shadow: 0 6px 16px rgba(0,0,0,.16);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.ilc-logo-media {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 10px 14px;
    overflow: hidden;
}
.ilc-logo-tile img {
    display: block;
    width: auto;
    height: auto;
    max-width: 88%;
    max-height: 72%;
    margin: auto;
    padding: 0;
    object-fit: contain;
    object-position: center;
    filter: none;
}
.ilc-logo-tile > span {
    position: absolute;
    inset-inline: 12px;
    bottom: 10px;
    padding: 7px 9px;
    border-radius: 9px;
    color: #fff;
    background: rgba(24,15,11,.88);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
}
.ilc-logo-tile:not(.is-unlinked):hover,
.ilc-logo-tile:not(.is-unlinked):focus-visible { transform: translateY(-4px); border-color: var(--runway-copper); box-shadow: 0 20px 42px rgba(0,0,0,.38); }
.ilc-logo-tile:hover > span,
.ilc-logo-tile:focus-visible > span { opacity: 1; transform: translateY(0); }
.ilc-logo-tile.is-unlinked { cursor: default; }
@keyframes ilc-logo-runway { to { transform: translateX(-50%); } }
.ilc-runway-mobile { display: none; }

@media (max-width: 720px) {
    .ilc-exhibitor-runway { padding: 42px 0 46px; }
    .ilc-runway-heading { margin-bottom: 22px; padding-inline: 22px; }
    .ilc-runway-heading > span { font-size: 9px; letter-spacing: .17em; }
    .ilc-runway-heading h2 { margin-top: 6px; font-size: 28px; }
    .ilc-runway-heading > a { display: none; }
    .ilc-runway-desktop { display: none; }
    .ilc-runway-mobile { position: relative; z-index: 2; display: block; }
    .ilc-mobile-logo-track {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding: 4px max(9vw,28px) 18px;
        scroll-padding-inline: max(9vw,28px);
        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
    }
    .ilc-mobile-logo-track::-webkit-scrollbar { display: none; }
    .ilc-mobile-logo {
        flex: 0 0 58vw;
        min-height: 188px;
        display: grid;
        grid-template-rows: 122px auto auto;
        align-content: center;
        justify-items: center;
        gap: 5px;
        padding: 12px;
        border: 1px solid rgba(208,166,140,.28);
        border-radius: 16px;
        color: #20150f;
        background: #f7f4ef;
        box-shadow: 0 8px 20px rgba(0,0,0,.22);
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
    .ilc-mobile-logo img { width: 100%; height: 122px; padding: 10px; object-fit: contain; }
    .ilc-mobile-logo strong { font-size: 15px; line-height: 1.3; }
    .ilc-mobile-logo small { color: #ad4828; font-size: 13px; font-weight: 900; }
    .ilc-mobile-logo.is-unlinked { cursor: default; }
    .ilc-mobile-logo-progress { width: 122px; height: 3px; margin: 2px auto 20px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.2); }
    .ilc-mobile-logo-progress span { display: block; width: calc(100% / 14); height: 100%; border-radius: inherit; background: #d66840; transition: transform .3s ease; }
    .ilc-runway-all { display: flex; width: calc(100% - 44px); max-width: 420px; margin: 0 auto; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    .ilc-logo-track { animation: none !important; }
    .ilc-logo-lane { overflow-x: auto; scrollbar-width: none; }
    .ilc-logo-lane::-webkit-scrollbar { display: none; }
    .ilc-logo-set[aria-hidden="true"] { display: none; }
}

html { scroll-behavior: smooth; }
[hidden] { display: none !important; }
body.ilc-redesign,
body { background: var(--ilc-paper); color: var(--ilc-ink); }
body::before { display: none !important; }
.container { width: min(1180px, calc(100% - 40px)); }
main { overflow: clip; }
a { text-underline-offset: 3px; }
img { max-width: 100%; }

/* Header */
.site-header {
    background: rgba(13, 12, 11, .97) !important;
    border-bottom: 1px solid rgba(255,255,255,.11) !important;
    box-shadow: none !important;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
}
.site-header .nav-wrap { min-height: 74px; gap: 24px; }
.site-header .brand { min-width: 210px; gap: 10px; color: #fff !important; }
.site-header .brand-emblem { width: 43px; height: 43px; overflow: hidden; border-radius: 9px; background: #f7f2eb; padding: 4px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.22),0 5px 18px rgba(0,0,0,.22); }
.site-header .brand-emblem img { width: 100%; height: 100%; object-fit: contain; filter: none; }
.site-header .brand-wordmark { font-family: Georgia, serif !important; font-size: 15px; line-height: 1.02; letter-spacing: .07em; color: #f7f2eb !important; text-shadow: 0 1px 8px rgba(0,0,0,.42); }
.site-header .brand-wordmark b { display: block; color: #c2603d; letter-spacing: .16em; }
.site-header nav { gap: 4px; }
.site-header nav > a { color: rgba(255,255,255,.82) !important; padding: 9px 11px !important; border-radius: 8px; font-size: 13px; min-height: 48px; display: flex; align-items: center; justify-content: center; text-align: center; line-height: 1.45; }
.site-header nav > a:hover,
.site-header nav > a[aria-current="page"] { color: #fff !important; background: rgba(255,255,255,.07); }
.site-header .nav-trade-cta {
    background: linear-gradient(135deg,var(--ilc-copper),#9f3f21) !important;
    color: #fff !important;
    border: 0 !important;
}
.site-header .languages { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.05); }
.site-header .languages a { color: rgba(255,255,255,.58) !important; }
.site-header .languages a.active { color: #fff !important; background: var(--ilc-copper); }
.site-header .nav-toggle { color: #fff; border-color: rgba(255,255,255,.25); }
.site-header .nav-toggle svg { stroke: currentColor; }
.language-menu { position: relative; flex: 0 0 auto; }
.language-menu summary { list-style: none; min-width: 102px; height: 42px; padding: 0 11px; border: 1px solid rgba(255,255,255,.28); border-radius: 22px; background: rgba(255,255,255,.09); color: #fff; display: flex; align-items: center; justify-content: center; gap: 7px; cursor: pointer; font-size: 12px; }
.language-menu summary::-webkit-details-marker { display: none; }
.language-menu[open] summary { background: #6f2e1c; border-color: #d68160; }
.language-globe { width: 20px; height: 20px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; }
.language-chevron { transition: transform .2s ease; }
.language-menu[open] .language-chevron { transform: rotate(180deg); }
.language-menu-panel { position: absolute; z-index: 140; top: calc(100% + 10px); inset-inline-end: 0; width: 190px; padding: 7px; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; background: #17120f; box-shadow: 0 18px 45px rgba(0,0,0,.34); }
.language-menu-panel a { min-height: 43px; padding: 7px 10px; border-radius: 8px; color: rgba(255,255,255,.8); display: grid; grid-template-columns: 25px 1fr auto; align-items: center; gap: 8px; }
.language-menu-panel a:hover,.language-menu-panel a.active { color: #fff; background: rgba(194,96,61,.28); }
.language-menu-panel small { opacity: .58; }
.nav-languages { display: none !important; }

/* Buttons */
.btn { min-height: 44px; border-radius: 6px !important; font-weight: 700; padding: 0 20px !important; display: inline-flex; align-items: center; justify-content: center; gap: 12px; transition: .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: linear-gradient(135deg,#c45c37,var(--ilc-copper-dark)) !important; color: #fff !important; border-color: transparent !important; box-shadow: 0 10px 25px rgba(161,59,28,.22); }
.btn.secondary { background: #fff !important; color: var(--ilc-ink) !important; border: 1px solid #b8ada4 !important; }
.btn.ghost { background: rgba(0,0,0,.18) !important; color: #fff !important; border: 1px solid rgba(255,255,255,.65) !important; }

/* Home hero */
.ilc-hero { min-height: 550px; position: relative; display: grid; background: var(--ilc-black); color: #fff; }
.ilc-hero-media { position: absolute; inset: 0; background-image: linear-gradient(90deg,rgba(6,5,4,.96) 0%,rgba(6,5,4,.78) 35%,rgba(6,5,4,.12) 67%,rgba(6,5,4,.08)), url('../images/design/hero-leather-craft-v1.webp'); background-size: cover; background-position: center; }
[dir="rtl"] .ilc-hero-media { transform: scaleX(-1); }
.ilc-hero-inner { position: relative; display: flex; align-items: center; padding-block: 70px; }
.ilc-hero-copy { width: min(610px, 57%); }
[dir="rtl"] .ilc-hero-copy { margin-inline-start: 0; margin-inline-end: auto; }
.ilc-kicker { display: inline-block; color: #d47b58; font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 14px; }
.ilc-hero h1 { color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: clamp(44px, 5.2vw, 76px); line-height: .96; letter-spacing: -.035em; max-width: 720px; margin: 0 0 18px; }
.ilc-hero-lead { color: rgba(255,255,255,.83); max-width: 590px; font-size: 17px; line-height: 1.75; margin: 0 0 20px; }
.ilc-event-meta { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-bottom: 26px; font-size: 14px; }
.ilc-event-meta span { display: flex; gap: 8px; align-items: center; }
.ilc-event-meta b { color: #d05c34; }
.ilc-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Home audience */
.ilc-audience { position: relative; z-index: 2; margin-top: -22px; }
.ilc-audience-grid { display: grid; grid-template-columns: repeat(4,1fr); background: #fff; border: 1px solid var(--ilc-line); border-radius: 10px; box-shadow: var(--ilc-shadow); padding: 14px; }
.ilc-audience article { min-width: 0; display: grid; grid-template-columns: 50px 1fr auto; gap: 12px; align-items: center; padding: 14px 16px; border-inline-end: 1px solid var(--ilc-line); }
.ilc-audience article:last-child { border: 0; }
.ilc-audience article { animation: audienceReveal .58s cubic-bezier(.2,.75,.25,1) both; transition: transform .24s ease,background-color .24s ease,box-shadow .24s ease; }
.ilc-audience article:nth-child(2) { animation-delay: .08s; }
.ilc-audience article:nth-child(3) { animation-delay: .16s; }
.ilc-audience article:nth-child(4) { animation-delay: .24s; }
.ilc-audience article:hover { transform: translateY(-5px); background: #fffaf6; box-shadow: 0 14px 30px rgba(65,35,21,.09); }
.ilc-audience article:hover .ilc-line-icon { transform: scale(1.06) rotate(2deg); }
.ilc-line-icon { transition: transform .3s ease; }
@keyframes audienceReveal { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.ilc-audience h2 { font-size: 14px; margin: 0 0 4px; }
.ilc-audience p { color: var(--ilc-muted); font-size: 11px; line-height: 1.55; margin: 0; }
.ilc-line-icon { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(145deg,#c15b35,#87290f); position: relative; box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); }
.ilc-line-icon::before { content: ''; position: absolute; inset: 13px; border: 2px solid #fff; border-radius: 50%; }
.ilc-icon-cart::before { border-radius: 3px; transform: skew(-8deg); }
.ilc-icon-case::before { border-radius: 2px; }
.ilc-icon-media::before { border-radius: 50% 3px 3px 50%; }
.ilc-arrow { color: var(--ilc-copper); font-size: 22px; }

/* Home shared */
.ilc-section { padding: 62px 0; }
.ilc-section-title,
.ilc-heading-row h2,
.ilc-meetings > .container > h2,
.ilc-program h2,
.ilc-venue h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(27px,3vw,40px); line-height: 1.08; margin: 0; }
.ilc-why { padding-bottom: 30px; }
.ilc-why-grid { margin-top: 22px; border: 1px solid var(--ilc-line); display: grid; grid-template-columns: repeat(4,1fr); border-radius: 8px; background: #fff; }
.ilc-why-grid article { padding: 20px 12px; text-align: center; border-inline-end: 1px solid var(--ilc-line); }
.ilc-why-grid article:last-child { border: 0; }
.ilc-why-grid span { display: block; color: var(--ilc-copper); font-size: 35px; height: 42px; }
.ilc-why-grid h3 { font-size: 13px; line-height: 1.45; max-width: 150px; margin: 8px auto 0; }
.ilc-featured { padding-top: 25px; }
.ilc-heading-row { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 20px; }
.ilc-heading-row > a { color: var(--ilc-copper-dark); font-size: 13px; font-weight: 800; }
.ilc-company-carousel { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.ilc-company-card { background: #fff; border: 1px solid var(--ilc-line); border-radius: 8px; overflow: hidden; min-width: 0; }
.ilc-company-visual { height: 190px; display: grid; place-items: center; background: linear-gradient(135deg,#eee8e1,#fff); overflow: hidden; color: var(--ilc-copper); font: 700 54px Georgia,serif; }
.ilc-company-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.ilc-company-visual img.is-logo { object-fit: contain; padding: 34px; }
.ilc-company-card:hover .ilc-company-visual img { transform: scale(1.035); }
.ilc-company-card-body { padding: 14px; }
.ilc-company-name { display: flex; align-items: center; gap: 8px; }
.ilc-company-name img { width: 28px; height: 28px; object-fit: contain; border-radius: 4px; }
.ilc-company-name h3 { margin: 0; font-size: 16px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ilc-company-card-body p { color: var(--ilc-muted); font-size: 12px; min-height: 20px; margin: 7px 0 13px; }
.ilc-company-card-body > div:last-child { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.ilc-company-card-body > div:last-child a { border: 1px solid var(--ilc-line); border-radius: 4px; min-height: 34px; display: grid; place-items: center; color: var(--ilc-ink); font-size: 11px; font-weight: 800; }
.ilc-company-card-body > div:last-child a.is-primary { color: #fff; background: var(--ilc-copper-dark); border-color: var(--ilc-copper-dark); }

/* Search, stats and meetings */
.ilc-search-band { background: radial-gradient(circle at 70% 0,#34251c,#0e0d0c 65%); color: #fff; padding: 27px 0; }
.ilc-search-band .container { display: grid; grid-template-columns: 250px 1fr; align-items: center; gap: 15px 28px; }
.ilc-search-title { display: flex; align-items: center; gap: 12px; }
.ilc-search-title span { font-size: 34px; }
.ilc-search-title h2 { color: #fff; font-size: 17px; margin: 0; }
.ilc-search-band form { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 105px; gap: 8px; pointer-events: auto; }
.ilc-search-band input { position: relative; z-index: 3; height: 44px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.22); color: #fff; border-radius: 5px; padding: 0 15px; pointer-events: auto; user-select: text; }
.ilc-search-band input::placeholder { color: rgba(255,255,255,.55); }
.ilc-search-band button { border: 0; border-radius: 5px; background: var(--ilc-copper); color: #fff; font-weight: 800; }
.ilc-search-tags { grid-column: 2; display: flex; flex-wrap: wrap; gap: 7px; }
.ilc-search-tags a { color: #fff; border: 1px solid rgba(255,255,255,.35); border-radius: 20px; padding: 5px 14px; font-size: 11px; }
.ilc-stats { border-bottom: 1px solid var(--ilc-line); background: #fff; }
.ilc-stats .container { display: grid; grid-template-columns: repeat(4,1fr); }
.ilc-stats article { text-align: center; padding: 22px 10px; position: relative; }
.ilc-stats article:not(:last-child)::after { content: ''; position: absolute; inset-inline-end: 0; top: 25%; height: 50%; border-inline-end: 1px solid var(--ilc-line); }
.ilc-stats strong { display: block; font: 700 40px Georgia,serif; }
.ilc-stats span { font-size: 12px; font-weight: 700; color: var(--ilc-muted); }
.ilc-steps { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 28px; }
.ilc-steps article { padding: 10px 24px; position: relative; }
.ilc-steps article:not(:last-child)::after { content: '›'; position: absolute; inset-inline-end: -5px; top: 42px; color: var(--ilc-copper); font-size: 26px; }
.ilc-steps article > span { position: absolute; top: 3px; inset-inline-start: 13px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: var(--ilc-ink); color: #fff; font-size: 11px; }
.ilc-step-icon { width: 68px; height: 68px; display: grid; place-items: center; border-radius: 50%; background: var(--ilc-cream); color: #8f796a; font-size: 30px; margin-bottom: 12px; }
.ilc-steps h3 { font-size: 14px; margin: 0 0 5px; }
.ilc-steps p { color: var(--ilc-muted); font-size: 11px; line-height: 1.55; margin: 0; }
.ilc-wide-cta { display: flex; width: 100%; margin-top: 22px; }

/* Program and venue */
.ilc-program { border-top: 1px solid var(--ilc-line); background: #fff; }
.ilc-program-grid { display: grid; grid-template-columns: .85fr 1fr 1fr; gap: 12px; align-items: stretch; }
.ilc-program-grid > div { padding: 20px 20px 20px 0; }
[dir="rtl"] .ilc-program-grid > div { padding: 20px 0 20px 20px; }
.ilc-program article { border: 1px solid var(--ilc-line); border-radius: 7px; display: grid; grid-template-columns: 105px 1fr; align-items: center; overflow: hidden; }
.ilc-program article > strong { align-self: stretch; display: grid; place-items: center; text-align: center; padding: 15px; background: linear-gradient(145deg,var(--ilc-copper),#85270f); color: #fff; font: 700 21px Georgia,serif; }
.ilc-program ul { margin: 0; padding: 15px 30px; font-size: 12px; line-height: 2; }
.ilc-venue { background: var(--ilc-cream); }
.ilc-venue-grid { display: grid; grid-template-columns: .75fr 1.2fr 1fr; align-items: center; gap: 28px; }
.ilc-venue-grid p { color: var(--ilc-muted); }
.ilc-map-visual { min-height: 180px; border-radius: 8px; background-color: #e8e4dc; background-image: linear-gradient(31deg,transparent 48%,rgba(255,255,255,.8) 49%,rgba(255,255,255,.8) 53%,transparent 54%),linear-gradient(-25deg,transparent 48%,rgba(255,255,255,.75) 49%,rgba(255,255,255,.75) 53%,transparent 54%); background-size: 70px 70px,90px 90px; display: grid; place-items: center; position: relative; color: var(--ilc-ink); }
.ilc-map-visual span { width: 26px; height: 26px; background: var(--ilc-copper); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 5px 14px rgba(120,30,10,.25); }
.ilc-map-visual b { position: absolute; top: calc(50% + 30px); }
.ilc-venue-details { border-inline-start: 1px solid #d0c5bb; padding-inline-start: 28px; }
.ilc-venue-details h3 { margin: 0 0 8px; }
.ilc-venue-details a { color: var(--ilc-copper-dark); font-weight: 800; }

/* Partners + closing */
.ilc-partners { position: relative; z-index: 2; clear: both; overflow: hidden; background: #fff; border-block: 1px solid var(--ilc-line); padding: 34px 0; }
.ilc-partners .container { display: grid; grid-template-columns: 185px 1fr; align-items: center; gap: 25px; }
.ilc-partners h2 { font: 700 22px Georgia,serif; margin: 0; }
.ilc-partner-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.ilc-partner-grid > * { min-width: 0; height: 92px; display: grid; place-items: center; padding: 9px; border: 1px solid #ebe5df; border-radius: 7px; background: #fff; overflow: hidden; }
.ilc-partner-grid img { width: 100%; height: 100%; object-fit: contain; filter: grayscale(1); opacity: .72; transition: .2s; }
.ilc-partner-grid > *:hover img { filter: grayscale(0); opacity: 1; }
.ilc-closing-cta { background: linear-gradient(90deg,rgba(12,10,8,.97),rgba(30,18,11,.86)),url('../images/design/hero-leather-craft-v1.webp') right center/cover; color: #fff; padding: 35px 0; }
.ilc-closing-cta .container { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.ilc-closing-cta h2 { color: #fff; max-width: 650px; font: 700 30px Georgia,serif; margin: 0; }
.ilc-closing-cta .container > div { display: flex; gap: 9px; flex-shrink: 0; }

/* All public pages */
.page-hero,
.journal-hero,
.company-profile-hero,
.poster-landing {
    background: linear-gradient(90deg,rgba(10,9,8,.97),rgba(30,19,13,.82)),url('../images/design/hero-leather-craft-v1.webp') center/cover !important;
    color: #fff;
    border: 0 !important;
}
.page-hero { padding: 68px 0 !important; min-height: 245px; display: grid; align-items: center; }
.page-hero h1,
.journal-hero h1,
.company-profile-hero h1,
.poster-landing h1 { color: #fff !important; font-family: Georgia,"Times New Roman",serif; font-size: clamp(36px,5vw,62px); line-height: 1.04; }
.page-hero p,
.journal-hero p,
.company-profile-hero p { color: rgba(255,255,255,.78) !important; max-width: 720px; }
.page-hero .eyebrow,
.journal-kicker,
.company-profile-hero .eyebrow { color: #d77c58 !important; }
.section { padding-block: 62px; }
.section.muted { background: var(--ilc-cream); }
.cards > article,
.feature-card,
.editorial-card,
.event-date-card,
.event-venue-card,
.form-wrap,
.contact-card,
.legal-content,
.venue-showcase,
.venue-arrival,
.product-profile,
.journal-editorial-card,
.company-capability-grid > article,
.company-contact-grid > article { border-color: var(--ilc-line) !important; border-radius: var(--ilc-radius) !important; box-shadow: var(--ilc-shadow); background: #fff; }
input,select,textarea { border-color: #d3c8bd !important; border-radius: 7px !important; background: #fff !important; }
input:focus,select:focus,textarea:focus { outline: 3px solid rgba(184,79,44,.13); border-color: var(--ilc-copper) !important; }
.product-grid > article,
.directory-company,
.journal-editorial-card { transition: transform .2s,box-shadow .2s; }
.product-grid > article:hover,
.directory-company:hover,
.journal-editorial-card:hover { transform: translateY(-4px); box-shadow: 0 22px 55px rgba(35,23,16,.13); }
.product-directory-grid .product-mark { width: 100% !important; height: 190px !important; border-radius: 9px !important; overflow: hidden; display: grid; place-items: center; background: var(--ilc-cream); color: var(--ilc-copper); }
.product-directory-grid .product-mark img { width: 100%; height: 100%; object-fit: cover; }
.company-profile-hero { padding-block: 70px !important; }
.company-profile-hero {
    background-image: linear-gradient(90deg,rgba(10,9,8,.97),rgba(30,19,13,.72)),var(--company-hero-image,url('../images/design/hero-leather-craft-v1.webp')) !important;
    background-position: center !important;
    background-size: cover !important;
}
.company-social-links { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 18px 0; }
.company-social-links .company-social-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(35,24,17,.12); border-radius: 50%; background: #fff; box-shadow: 0 8px 22px rgba(35,24,17,.08); transition: transform .2s ease,box-shadow .2s ease; }
.company-social-links .company-social-icon:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(35,24,17,.14); }
.company-social-links .company-social-icon svg { width: 22px; height: 22px; display: block; fill: currentColor; }
.company-social-links .social-instagram svg { fill: none; }
.company-social-links .social-linkedin { color: #0a66c2; }
.company-social-links .social-telegram { color: #26a5e4; }
.company-social-links .social-youtube { color: #ff0000; }
.company-social-links .social-twitter { color: #050505; }
.company-social-links .social-whatsapp { color: #25d366; }
.company-identity-card { background: rgba(255,255,255,.95) !important; border-radius: 18px !important; box-shadow: 0 30px 80px rgba(0,0,0,.25) !important; }
.company-identity-mark img { object-fit: contain !important; }
.company-monogram { overflow: hidden; }
.company-monogram img { width: 100%; height: 100%; object-fit: contain; padding: 5px; background: #fff; }
.company-profile-hero .actions .btn.primary { order: -1; }
.company-qr-card { border: 1px solid var(--ilc-line); border-radius: var(--ilc-radius); background: #fff; }
.journal-editorial-grid { gap: 22px !important; }
.article-body { font-size: 17px; line-height: 2; }
.article-cover img { border-radius: var(--ilc-radius); }
.breadcrumb { padding-block: 20px; color: var(--ilc-muted); }
.poster-landing { min-height: calc(100vh - 74px); display: grid; align-items: center; }
.poster-content { background: rgba(255,255,255,.96); color: var(--ilc-ink); border-radius: 22px; padding: 42px !important; box-shadow: 0 35px 100px rgba(0,0,0,.3); }
.poster-content h1,
.poster-content p { color: var(--ilc-ink) !important; }

/* Footer */
.site-footer { background: #0d0c0b !important; color: rgba(255,255,255,.72) !important; border: 0 !important; }
.footer-management-showcase { min-height: 108px; padding-block: 18px; border-bottom: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer-management-showcase > div { display: grid; gap: 5px; }
.footer-management-showcase span { font-size: 12px; color: rgba(255,255,255,.58); }
.footer-management-showcase strong { color: #fff; font-size: 17px; }
.footer-management-showcase a { width: 230px; height: 76px; padding: 9px 18px; border-radius: 11px; background: #fff; display: grid; place-items: center; }
.footer-management-showcase img { width: 100%; height: 100%; object-fit: contain; }
.footer-contact .footer-management { display: none !important; }
.mobile-footer-menu { display: none; }
.footer-main { padding-block: 34px 24px !important; display: grid !important; grid-template-columns: minmax(230px,1.35fr) minmax(180px,.8fr) minmax(210px,1fr) minmax(210px,1fr) !important; gap: 28px !important; align-items: start; }
.footer-brand p { margin: 12px 0 15px !important; max-width: 390px; font-size: 13px; line-height: 1.75; }
.footer-logo { color: #fff !important; }
.footer-logo img { filter: none !important; background: #f7f2eb; padding: 4px; border-radius: 8px; }
.footer-column h2 { color: #fff !important; font-family: Georgia,serif; }
.footer-column h2 { margin: 0 0 12px !important; font-size: 16px !important; }
.footer-navigation .footer-links { display: grid !important; grid-template-columns: 1fr 1fr; gap: 7px 16px !important; }
.footer-navigation .footer-links a { font-size: 12px; line-height: 1.4; }
.footer-navigation .footer-links a:nth-child(n+7) { display: none; }
.footer-event,.footer-contact { gap: 9px !important; }
.footer-date,.footer-venue-link,.footer-management { margin: 0 !important; }
.footer-contact .footer-email { min-height: 34px; }
.footer-management > span { font-size: 11px; }
.footer-management > a { display: grid !important; width: 178px; height: 66px; padding: 8px 12px !important; border-radius: 8px; background: #fff url('../assets/major-wave-marketing.png') center/contain no-repeat !important; border: 1px solid rgba(255,255,255,.18); overflow: hidden; text-indent: -9999px; }
.footer-links a,
.footer-event a,
.footer-contact a,
.footer-bottom a { color: rgba(255,255,255,.7) !important; }
.footer-links a:hover,
.footer-bottom a:hover { color: #d57956 !important; }
.footer-bottom { min-height: 54px !important; padding-block: 14px !important; border-color: rgba(255,255,255,.12) !important; }
.floating-whatsapp { bottom: 24px; }
.ilc-mobile-dock { display: none; }

/* Desktop only refinements */
@media (min-width: 901px) {
    .ilc-company-carousel { grid-template-columns: repeat(6,minmax(0,1fr)); }
    .ilc-company-visual { height: 132px; }
    .ilc-company-name h3 { font-size: 13px; }
    .ilc-company-card-body { padding: 10px; }
    .ilc-company-card-body > div:last-child a { padding-inline: 2px; font-size: 9px; }
}

/* Tablet */
@media (max-width: 1000px) {
    .site-header .brand { min-width: auto; }
    .site-header nav > a { padding-inline: 7px !important; font-size: 12px; }
    .site-header .languages { display: none; }
    .ilc-audience-grid { grid-template-columns: repeat(2,1fr); }
    .ilc-audience article:nth-child(2) { border-inline-end: 0; }
    .ilc-audience article:nth-child(-n+2) { border-bottom: 1px solid var(--ilc-line); }
    .ilc-program-grid { grid-template-columns: 1fr 1fr; }
    .ilc-program-grid > div { grid-column: 1/-1; }
    .ilc-venue-grid { grid-template-columns: 1fr 1.4fr; }
    .ilc-venue-details { grid-column: 1/-1; border: 0; padding: 0; }
    .footer-main { grid-template-columns: 1.2fr 1fr !important; gap: 28px 36px !important; }
}

/* Mobile is deliberately a different composition */
@media (max-width: 760px) {
    body { padding-bottom: 68px; }
    .container { width: min(100% - 28px, 620px); }
    .site-header { position: absolute; inset-inline: 0; top: 0; background: linear-gradient(#090807,transparent) !important; border: 0 !important; }
    .site-header .nav-wrap { min-height: 72px; }
    .site-header .brand-emblem { width: 40px; height: 40px; }
    .site-header .brand-wordmark { display: block !important; font-size: 12px; }
    .site-header .nav-toggle { display: grid; }
    .language-menu { margin-inline-start: auto; margin-inline-end: 8px; }
    .language-menu summary { min-width: 80px; height: 38px; padding-inline: 8px; }
    .language-menu summary b { display: none; }
    .language-menu-panel { position: fixed; top: 68px; inset-inline: 14px; width: auto; }
    body.nav-open .site-header { position: fixed; background: #0d0c0b !important; }
    .site-header nav { background: #15110e !important; border-color: rgba(255,255,255,.1) !important; padding: 16px !important; }
    .site-header nav > a { font-size: 14px; padding: 13px !important; border-bottom: 1px solid rgba(255,255,255,.08); }
    .nav-languages { background: rgba(255,255,255,.05) !important; }

    .ilc-hero { min-height: 660px; }
    .ilc-hero-media { background-image: linear-gradient(180deg,rgba(6,5,4,.18) 5%,rgba(6,5,4,.35) 35%,rgba(6,5,4,.96) 69%),url('../images/design/hero-leather-craft-v1.webp'); background-position: 72% center; }
    [dir="rtl"] .ilc-hero-media { transform: none; }
    .ilc-hero-inner { align-items: end; padding-top: 170px; padding-bottom: 36px; }
    .ilc-hero-copy,
    [dir="rtl"] .ilc-hero-copy { width: 100%; margin: 0; }
    .ilc-kicker { font-size: 10px; margin-bottom: 9px; }
    .ilc-hero h1 { font-size: clamp(38px,12vw,54px); max-width: 420px; }
    .ilc-hero-lead { font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
    .ilc-event-meta { font-size: 12px; margin-bottom: 18px; display: grid; gap: 7px; }
    .ilc-hero-actions { display: grid; grid-template-columns: 1fr; }
    .ilc-hero-actions .btn { width: 100%; }

    .ilc-audience { margin-top: 0; padding-top: 8px; background: var(--ilc-paper); }
    .ilc-audience-grid { grid-template-columns: 1fr; padding: 6px 12px; box-shadow: none; border-radius: 10px; }
    .ilc-audience article { grid-template-columns: 43px 1fr auto; border-inline-end: 0; border-bottom: 1px solid var(--ilc-line) !important; padding: 11px 4px; }
    .ilc-audience article:last-child { border: 0 !important; }
    .ilc-line-icon { width: 39px; height: 39px; }
    .ilc-line-icon::before { inset: 11px; }
    .ilc-audience h2 { font-size: 13px; }
    .ilc-audience p { font-size: 10px; }

    .ilc-section { padding: 40px 0; }
    .ilc-section-title,.ilc-heading-row h2,.ilc-meetings > .container > h2,.ilc-program h2,.ilc-venue h2 { font-size: 26px; }
    .ilc-why { padding-bottom: 12px; }
    .ilc-why-grid { grid-template-columns: repeat(4,1fr); }
    .ilc-why-grid article { padding: 12px 5px; }
    .ilc-why-grid span { font-size: 25px; height: 30px; }
    .ilc-why-grid h3 { font-size: 9px; }
    .ilc-heading-row { align-items: center; }
    .ilc-heading-row > a { font-size: 10px; }
    .ilc-company-carousel { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 10px; padding-bottom: 10px; scrollbar-width: none; }
    .ilc-company-card { flex: 0 0 78%; scroll-snap-align: start; }
    .ilc-company-visual { height: 160px; }
    .ilc-company-card-body > div:last-child a { font-size: 10px; }

    .ilc-search-band { margin: 0 10px; border-radius: 10px; padding: 18px 0; }
    .ilc-search-band .container { width: calc(100% - 24px); grid-template-columns: 1fr; gap: 10px; }
    .ilc-search-band form { grid-template-columns: 1fr; }
    .ilc-search-band button { height: 40px; }
    .ilc-search-tags { grid-column: 1; flex-wrap: nowrap; overflow-x: auto; }
    .ilc-search-tags a { white-space: nowrap; }
    .ilc-stats .container { width: 100%; grid-template-columns: repeat(4,1fr); }
    .ilc-stats article { padding: 18px 4px; }
    .ilc-stats strong { font-size: 28px; }
    .ilc-stats span { font-size: 8px; line-height: 1.3; display: block; }

    .ilc-steps { grid-template-columns: repeat(4,1fr); overflow-x: auto; margin-inline: -7px; }
    .ilc-steps article { min-width: 120px; padding: 7px; }
    .ilc-steps article > span { inset-inline-start: 0; }
    .ilc-step-icon { width: 54px; height: 54px; font-size: 23px; }
    .ilc-steps h3 { font-size: 11px; }
    .ilc-steps p { font-size: 9px; }
    .ilc-steps article:not(:last-child)::after { display: none; }

    .ilc-program-grid { grid-template-columns: 1fr; }
    .ilc-program-grid > div { grid-column: auto; padding: 0 0 10px; }
    .ilc-program article { grid-template-columns: 85px 1fr; }
    .ilc-program article > strong { font-size: 16px; }
    .ilc-program ul { padding: 13px 22px; font-size: 10px; }
    .ilc-venue-grid { grid-template-columns: 1fr; }
    .ilc-map-visual { min-height: 145px; }
    .ilc-venue-details { grid-column: auto; }
    .ilc-partners { padding: 20px 0; }
    .ilc-partners .container { grid-template-columns: 1fr; gap: 10px; }
    .ilc-partners h2 { font-size: 17px; text-align: center; }
    .ilc-partner-grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 5px; }
    .ilc-partner-grid > * { height: 58px; padding: 4px; border-radius: 5px; }
    .ilc-closing-cta .container { display: grid; }
    .ilc-closing-cta h2 { font-size: 24px; }
    .ilc-closing-cta .container > div { display: grid; grid-template-columns: 1fr; }

    .page-hero { min-height: 300px; padding: 115px 0 45px !important; background-position: 72% center !important; }
    .page-hero h1,.journal-hero h1,.company-profile-hero h1,.poster-landing h1 { font-size: 36px; }
    .company-profile-hero { padding-top: 110px !important; }
    .company-profile-grid { display: flex !important; flex-direction: column !important; }
    .company-profile-grid > div:first-child { order: 1 !important; }
    .company-profile-grid .company-identity-card { order: 2 !important; width: 100%; margin-top: 22px; }
    .company-profile-grid .actions { display: grid !important; grid-template-columns: 1fr !important; }
    .company-profile-grid .actions .btn { width: 100%; }
    .poster-landing { min-height: 100vh; padding-top: 88px; }
    .poster-content { padding: 24px !important; }
    .section { padding-block: 40px; }
    .product-grid { grid-template-columns: 1fr !important; }
    .form-grid { grid-template-columns: 1fr !important; }
    .footer-management-showcase { min-height: 82px; padding-block: 12px; gap: 12px; }
    .footer-management-showcase strong { font-size: 12px; }
    .footer-management-showcase span { font-size: 9px; }
    .footer-management-showcase a { width: 145px; height: 54px; padding: 6px 10px; }
    .footer-main { display: none !important; }
    .mobile-footer-menu { display: block; margin-block: 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 9px; }
    .mobile-footer-menu summary { list-style: none; min-height: 48px; padding: 0 14px; color: #fff; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
    .mobile-footer-menu summary::-webkit-details-marker { display: none; }
    .mobile-footer-menu div { padding: 0 12px 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
    .mobile-footer-menu a { padding: 9px; border-radius: 6px; background: rgba(255,255,255,.06); color: rgba(255,255,255,.82); text-align: center; font-size: 11px; }
    .footer-bottom { min-height: 42px !important; font-size: 9px; }
    .footer-legal a:nth-child(n+2) { display: none; }
    .footer-bottom { padding-bottom: 15px !important; }
    .floating-whatsapp,.mobile-trade-cta { display: none !important; }
    .ilc-mobile-dock { position: fixed; z-index: 120; bottom: 0; inset-inline: 0; height: 68px; display: grid; grid-template-columns: repeat(4,1fr); background: rgba(17,14,12,.97); color: #fff; box-shadow: 0 -8px 30px rgba(0,0,0,.18); backdrop-filter: blur(14px); }
    .ilc-mobile-dock a { display: grid; place-items: center; align-content: center; gap: 3px; color: rgba(255,255,255,.76); font-size: 9px; }
    .ilc-mobile-dock a span { font-size: 21px; line-height: 1; }
    .ilc-mobile-dock a.is-primary { background: linear-gradient(145deg,#c85c36,#8f2f15); color: #fff; border-radius: 18px 18px 0 0; transform: translateY(-8px); min-height: 76px; }
}

@media (prefers-reduced-motion: reduce) {
    *,*::before,*::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* Header logo and partner artwork — final crop correction */
.site-header,
.site-header .nav-wrap,
.site-header .brand,
.site-header .brand-emblem { overflow: visible !important; }
.site-header .brand-emblem {
    position: relative !important;
    flex: 0 0 48px !important;
    width: 48px !important;
    height: 48px !important;
    padding: 5px !important;
    display: grid !important;
    place-items: center !important;
}
.site-header .brand-emblem img {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
}
.site-header .nav-wrap { min-height: 88px !important; }
.site-header nav { align-self: stretch; align-items: stretch !important; }
.site-header nav > a { min-height: 58px !important; height: auto !important; padding-block: 8px !important; align-self: center; overflow: visible !important; }

.ilc-partners { min-height: 190px; overflow: visible !important; padding-block: 30px !important; }
.ilc-partners .container { min-height: 130px; overflow: visible !important; }
.ilc-partner-grid { align-items: stretch; overflow: visible !important; }
.ilc-partner-grid > * {
    height: 126px !important;
    padding: 12px !important;
    overflow: hidden !important;
}
.ilc-partner-grid img {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
}
.ilc-closing-cta { position: relative !important; z-index: 1 !important; clear: both !important; margin: 0 !important; }

@media (max-width: 760px) {
    .site-header .nav-wrap { min-height: 72px !important; }
    .site-header .brand-emblem { flex-basis: 42px !important; width: 42px !important; height: 42px !important; padding: 4px !important; }
    .site-header nav { align-items: stretch !important; }
    .site-header nav > a { min-height: 48px !important; width: 100%; }
    .ilc-partners { min-height: 104px; padding-block: 18px !important; }
    .ilc-partners .container { min-height: auto; }
    .ilc-partner-grid > * { height: 62px !important; padding: 5px !important; }
}

/* Sponsors: square source artwork must remain fully visible inside wide cards. */
.ilc-partner-grid > a,
.ilc-partner-grid > span {
    position: relative !important;
    isolation: isolate;
    display: grid !important;
    place-items: center !important;
}
.ilc-partner-grid img {
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    object-fit: contain !important;
    transform: scale(.66) !important;
    transform-origin: center center !important;
}

/* Compact, balanced desktop footer inspired by the approved reference. */
@media (min-width: 1001px) {
    .site-footer { position: relative; min-height: 300px; }
    .footer-main {
        min-height: 238px;
        padding: 34px 0 26px 270px !important;
        grid-template-columns: minmax(250px,1.35fr) minmax(180px,.8fr) minmax(225px,1fr) 54px !important;
        gap: 26px !important;
        align-items: start !important;
    }
    [dir="rtl"] .footer-main { padding-left: 270px !important; padding-right: 0 !important; }
    .footer-management-showcase {
        position: absolute;
        z-index: 3;
        left: max(20px,calc((100vw - 1160px)/2));
        top: 34px;
        width: 235px;
        min-height: 178px;
        padding: 0 !important;
        border: 0 !important;
        display: grid;
        align-content: start;
        justify-items: stretch;
        gap: 14px;
    }
    .footer-management-showcase > div { text-align: center; gap: 2px; }
    .footer-management-showcase > div span { font-size: 10px; }
    .footer-management-showcase > div strong { font-size: 14px; }
    .footer-management-showcase a { width: 100%; height: 82px; padding: 8px 16px; border-radius: 10px; }
    .footer-brand { min-width: 0; }
    .footer-brand p { max-width: 390px; margin-block: 10px 12px !important; }
    .footer-socials { display: flex !important; justify-content: flex-start; gap: 10px !important; }
    [dir="rtl"] .footer-socials { justify-content: flex-start; }
    .footer-socials .social-icon { width: 34px !important; height: 34px !important; display: grid !important; place-items: center !important; flex: 0 0 34px; }
    .footer-navigation .footer-links { grid-template-columns: 1fr 1fr !important; align-items: start; }
    .footer-event { align-content: start; }
    .footer-contact { justify-items: center; align-content: start; }
    .footer-contact .footer-email { width: 42px !important; height: 42px !important; display: grid !important; place-items: center !important; margin-top: 34px !important; }
    .footer-bottom { min-height: 52px !important; }
}

@media (max-width: 760px) {
    .ilc-partner-grid img { transform: scale(.58) !important; }
}

/* Partner artwork uses contained backgrounds to avoid inherited image rules. */
.ilc-partner-art {
    width: 100%;
    height: 100%;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Exact desktop footer composition; legacy footer remains available on mobile. */
.footer-desktop-layout { display: none; }
@media (min-width: 1001px) {
    .site-footer { min-height: 0; }
    .site-footer > .footer-management-showcase,
    .site-footer > .footer-main { display: none !important; }
    .footer-desktop-layout {
        min-height: 238px;
        padding-block: 30px 24px;
        display: grid;
        grid-template-columns: 235px 270px 235px minmax(310px,1fr);
        grid-template-areas: "major event navigation brand";
        gap: 34px;
        align-items: start;
    }
    [dir="rtl"] .footer-desktop-layout { grid-template-areas: "major event navigation brand"; direction: ltr; }
    [dir="rtl"] .footer-desktop-layout > section { direction: rtl; }
    .footer-desktop-layout h2 { margin: 0 0 13px; color: #fff; font-size: 15px; }
    .footer-desktop-major { grid-area: major; display: grid; justify-items: center; align-content: start; gap: 3px; text-align: center; }
    .footer-desktop-major > span { color: rgba(255,255,255,.52); font-size: 10px; }
    .footer-desktop-major > strong { color: #fff; font-size: 14px; }
    .footer-desktop-major > a { width: 210px; margin-top: 14px; border-radius: 9px; overflow: hidden; line-height: 0; background: transparent; }
    .footer-desktop-major img { width: 210px; height: auto; max-height: none; display: block; object-fit: initial; border-radius: 9px; }
    .footer-desktop-event { grid-area: event; display: grid; align-content: start; gap: 8px; text-align: center; }
    .footer-desktop-event .footer-date { justify-content: center; }
    .footer-desktop-event > span { color: rgba(255,255,255,.68); font-size: 12px; }
    .footer-desktop-event .footer-venue-link { margin-top: 2px !important; padding: 10px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 9px; background: rgba(255,255,255,.045); text-align: center; }
    .footer-desktop-event .footer-venue-link small { margin-top: 4px; }
    .footer-desktop-navigation { grid-area: navigation; text-align: center; }
    .footer-desktop-navigation > div { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 15px; }
    .footer-desktop-navigation a { color: rgba(255,255,255,.7); font-size: 11px; line-height: 1.45; }
    .footer-desktop-navigation a:hover { color: #d57956; }
    .footer-desktop-brand { grid-area: brand; display: grid; justify-items: end; text-align: end; }
    .footer-desktop-brand .footer-logo { margin-bottom: 10px; }
    .footer-desktop-brand p { max-width: 430px; margin: 0 0 7px; color: rgba(255,255,255,.65); font-size: 12px; line-height: 1.75; }
    .footer-desktop-brand h2 { width: 100%; margin: 0 0 8px; text-align: end; }
    .footer-desktop-socials { width: 100%; display: flex; justify-content: flex-start; align-items: center; gap: 10px; direction: rtl; }
    .footer-desktop-socials .social-icon { width: 34px !important; height: 34px !important; flex: 0 0 34px; display: grid !important; place-items: center !important; border-radius: 50%; }
    .footer-desktop-socials .footer-email svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
}

@media (max-width: 760px) {
    .ilc-partner-art { background-size: 82% auto; }
}

/* Approved mobile-only header, hero and complete footer accordion. */
.mobile-footer-accordion { display: none; }
@media (max-width: 760px) {
    .site-header .nav-wrap {
        display: grid !important;
        grid-template-columns: minmax(0,1fr) auto auto;
        align-items: center;
        gap: 8px !important;
    }
    .site-header .brand {
        grid-column: 1;
        grid-row: 1;
        width: auto !important;
        min-width: 0 !important;
        max-width: 215px;
        height: 64px !important;
        overflow: hidden !important;
        gap: 8px !important;
    }
    .site-header .brand-wordmark {
        min-width: 0;
        max-width: 145px;
        font-size: 11px !important;
        letter-spacing: .045em !important;
        white-space: nowrap;
    }
    .site-header .brand-wordmark b { letter-spacing: .12em !important; }
    .site-header .language-menu {
        grid-column: 2;
        grid-row: 1;
        margin: 0 !important;
    }
    .site-header .nav-toggle {
        grid-column: 3;
        grid-row: 1;
        position: static !important;
        width: 42px;
        height: 42px;
        margin: 0 !important;
        padding: 8px !important;
        place-self: center;
        border: 1px solid rgba(255,255,255,.28) !important;
        border-radius: 50%;
        background: rgba(15,12,10,.5) !important;
    }
    .site-header nav { grid-column: 1/-1; }

    .ilc-hero { min-height: 790px !important; }
    .ilc-hero-media {
        background-image: linear-gradient(180deg,rgba(5,4,3,.04) 0%,rgba(5,4,3,.08) 38%,rgba(5,4,3,.72) 57%,rgba(5,4,3,.98) 73%),url('../images/design/hero-leather-craft-v1.webp') !important;
        background-position: 72% 18% !important;
    }
    .ilc-hero-inner {
        min-height: 790px;
        align-items: end !important;
        padding-top: 350px !important;
        padding-bottom: 34px !important;
    }
    .ilc-hero-copy { padding-top: 20px; }
    .ilc-hero h1 { font-size: clamp(39px,12vw,53px) !important; line-height: .98 !important; }
    .ilc-hero-lead { max-width: 540px; }

    .site-footer > .footer-management-showcase { display: none !important; }
    .mobile-footer-menu { display: none !important; }
    .mobile-footer-accordion {
        display: grid;
        gap: 8px;
        padding-block: 20px 12px;
    }
    .mobile-footer-accordion > details {
        border: 1px solid rgba(255,255,255,.13);
        border-radius: 10px;
        background: rgba(255,255,255,.025);
        overflow: hidden;
    }
    .mobile-footer-accordion summary {
        list-style: none;
        min-height: 52px;
        padding: 0 15px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        font-size: 14px;
        font-weight: 700;
    }
    .mobile-footer-accordion summary::-webkit-details-marker { display: none; }
    .mobile-footer-accordion summary span { transition: transform .2s ease; }
    .mobile-footer-accordion details[open] summary span { transform: rotate(180deg); }
    .mobile-footer-accordion details > div { padding: 0 12px 13px; border-top: 1px solid rgba(255,255,255,.08); }
    .mobile-footer-links { padding-top: 12px !important; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
    .mobile-footer-links a,.mobile-footer-legal a { padding: 9px; border-radius: 6px; background: rgba(255,255,255,.055); color: rgba(255,255,255,.78); text-align: center; font-size: 11px; }
    .mobile-footer-event { padding-top: 12px !important; display: grid; gap: 7px; text-align: center; }
    .mobile-footer-event > span { color: rgba(255,255,255,.65); font-size: 11px; }
    .mobile-footer-event > a { display: grid; gap: 3px; margin-top: 4px; padding: 10px; border-radius: 7px; background: rgba(255,255,255,.05); }
    .mobile-footer-event small { color: rgba(255,255,255,.58); }
    .mobile-footer-contact { padding-top: 12px !important; display: grid; justify-items: center; gap: 13px; }
    .mobile-footer-email { color: #fff; direction: ltr; font-size: 13px; }
    .mobile-footer-contact > div { display: flex; justify-content: center; gap: 10px; }
    .mobile-footer-contact .social-icon { width: 36px !important; height: 36px !important; display: grid !important; place-items: center !important; }
    .mobile-footer-organizer { padding-top: 12px !important; display: grid; justify-items: center; gap: 10px; }
    .mobile-footer-organizer > strong { color: #fff; }
    .mobile-footer-organizer > a { width: 180px; line-height: 0; border-radius: 8px; overflow: hidden; }
    .mobile-footer-organizer img { width: 180px; height: auto; display: block; }
    .mobile-footer-legal { width: 100%; margin-top: 4px; display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
    .footer-bottom { min-height: 42px !important; justify-content: center !important; padding: 9px 0 15px !important; }
    .footer-bottom .footer-legal { display: none !important; }
    .footer-copyright { font-size: 9px; color: rgba(255,255,255,.5); }
}

/* Scoped mobile refinements approved on 2026-08-07. */
.steps-motion-ready .animated-steps article { opacity: 0; transform: translateY(20px); }
.steps-motion-ready .animated-steps article.in-view { opacity: 1; transform: translateY(0); transition: opacity .55s ease,transform .55s cubic-bezier(.2,.75,.3,1); }
.steps-motion-ready .animated-steps article.in-view .ilc-step-icon::after { animation: ilcStepRing .65s ease-out both; }
.animated-steps .ilc-step-icon { position: relative; }
.animated-steps .ilc-step-icon::after { content: ''; position: absolute; inset: -5px; border: 2px solid var(--ilc-copper); border-radius: 50%; opacity: 0; pointer-events: none; }
@keyframes ilcStepRing { 0% { opacity:.75; transform:scale(.72); } 100% { opacity:0; transform:scale(1.2); } }
.ilc-map-visual { cursor: pointer; }

@media (max-width: 760px) {
    .ilc-hero { min-height: calc(100svh - 68px) !important; }
    .ilc-hero-media {
        background-image: linear-gradient(180deg,rgba(5,4,3,.08) 0%,rgba(5,4,3,.12) 34%,rgba(5,4,3,.72) 52%,rgba(5,4,3,.98) 69%),url('../images/design/hero-leather-craft-v1.webp') !important;
        background-position: 92% center !important;
    }
    .ilc-hero-inner {
        min-height: calc(100svh - 68px) !important;
        padding-top: 225px !important;
        padding-bottom: 22px !important;
    }
    .ilc-hero-copy { padding-top: 0 !important; }
    .ilc-hero h1 { margin-bottom: 10px !important; font-size: clamp(36px,10.8vw,48px) !important; }
    .ilc-hero-lead { margin-bottom: 9px !important; font-size: 12px !important; line-height: 1.55 !important; }
    .ilc-event-meta { margin-bottom: 11px !important; gap: 4px !important; font-size: 10px !important; }
    .ilc-hero-actions { gap: 7px !important; }
    .ilc-hero-actions .btn { min-height: 43px !important; padding-block: 8px !important; font-size: 12px !important; }

    .ilc-meetings { padding-block: 34px !important; }
    .ilc-meetings > .container > h2 { margin-bottom: 16px; text-align: center; font-size: 22px !important; }
    .ilc-steps {
        display: grid !important;
        grid-template-columns: repeat(2,minmax(0,1fr)) !important;
        gap: 18px 8px !important;
        overflow: visible !important;
        margin: 0 !important;
    }
    .ilc-steps article { min-width: 0 !important; padding: 5px !important; text-align: center; }
    .ilc-steps article > span { top: 0 !important; inset-inline-start: 8px !important; width: 20px !important; height: 20px !important; }
    .ilc-step-icon { width: 48px !important; height: 48px !important; margin: 0 auto 7px !important; font-size: 20px !important; }
    .ilc-steps h3 { margin-bottom: 3px !important; font-size: 10px !important; }
    .ilc-steps p { max-width: 150px; margin-inline: auto; font-size: 8px !important; line-height: 1.5 !important; }
    .ilc-wide-cta { min-height: 42px; margin-top: 16px !important; }

    .site-footer > .footer-management-showcase {
        min-height: 96px !important;
        padding: 14px !important;
        display: grid !important;
        grid-template-columns: 1fr 160px;
        align-items: center;
        gap: 12px;
        border-bottom: 1px solid rgba(255,255,255,.1) !important;
    }
    .footer-management-showcase > div { text-align: start; }
    .footer-management-showcase > a { width: 160px !important; height: auto !important; padding: 0 !important; line-height: 0; background: transparent !important; overflow: hidden; }
    .footer-management-showcase img { width: 160px !important; height: auto !important; display: block; border-radius: 8px; }
    .mobile-footer-contact { padding-top: 13px !important; }
    .mobile-footer-contact > div { width: 100%; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; }
    .mobile-footer-contact .mobile-footer-email { color: #fff !important; background: #2b251f !important; }
    .mobile-footer-contact .mobile-footer-email svg { width: 19px; height: 19px; fill: none; stroke: #fff; stroke-width: 1.7; }
    .mobile-footer-legal { padding-top: 12px !important; }
}


/* 2026-08-09 targeted exhibitor runway repair — no layout changes elsewhere. */
.ilc-exhibitor-runway .ilc-logo-track{
    animation-name:ilc-logo-runway!important;
    animation-timing-function:linear!important;
    animation-iteration-count:infinite!important;
    animation-play-state:running;
    will-change:transform;
}
.ilc-exhibitor-runway .ilc-logo-lane:not(.is-reverse) .ilc-logo-track{animation-duration:36s!important;animation-direction:normal!important}
.ilc-exhibitor-runway .ilc-logo-lane.is-reverse .ilc-logo-track{animation-duration:42s!important;animation-direction:reverse!important}
.ilc-exhibitor-runway .ilc-logo-lane:hover .ilc-logo-track,
.ilc-exhibitor-runway .ilc-logo-lane:focus-within .ilc-logo-track{animation-play-state:paused}
.ilc-exhibitor-runway .ilc-logo-tile img{transform:none}
@media(max-width:720px){.ilc-exhibitor-runway .ilc-mobile-logo img{transform:translateY(-6px)}}


/* BACK29 final: deterministic runway logo fit on live asset */
.page-home .ilc-exhibitor-runway .ilc-logo-tile .ilc-logo-media{width:100%;height:100%;display:grid;place-items:center;padding:10px 14px;overflow:hidden}
.page-home .ilc-exhibitor-runway .ilc-logo-tile .ilc-logo-media>img{display:block!important;width:auto!important;height:auto!important;max-width:88%!important;max-height:72%!important;margin:auto!important;padding:0!important;object-fit:contain!important;object-position:center!important;transform:none!important}


/* For Buyers footer visibility hotfix — 2026-08-27 */
.footer-desktop-navigation .footer-buyers-link,
.footer-links .footer-buyers-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 7px 10px !important;
    border: 1px solid rgba(214,173,105,.36);
    border-radius: 8px;
    background: rgba(214,173,105,.11);
    color: #e7bd78 !important;
    font-weight: 800 !important;
}

@media (min-width: 1001px) {
    .footer-desktop-navigation .footer-buyers-link {
        grid-column: 1 / -1;
        margin-bottom: 2px;
        font-size: 12px !important;
    }
}

@media (max-width: 760px) {
    .mobile-footer-links .footer-buyers-link {
        display: flex !important;
        align-items: center;
        justify-content: center;
        grid-column: 1 / -1;
        min-height: 42px;
        padding: 10px 12px !important;
        margin-bottom: 2px;
        border: 1px solid rgba(214,173,105,.42) !important;
        border-radius: 8px !important;
        background: rgba(214,173,105,.13) !important;
        color: #efc77f !important;
        font-size: 12px !important;
        font-weight: 800 !important;
    }
}
