:root {
    --ieh-green-950: #071b13;
    --ieh-green-900: #0b281c;
    --ieh-green-800: #123b2a;
    --ieh-green-700: #1e513b;
    --ieh-gold: #c7972d;
    --ieh-gold-light: #ddb85f;
    --ieh-cream: #f3efe6;
    --ieh-paper: #faf8f3;
    --ieh-white: #fff;
    --ieh-ink: #18211d;
    --ieh-muted: #616b66;
    --ieh-line: rgba(17, 53, 38, .17);
    --ieh-header-height: 86px;
    --ieh-container: 1240px;
    --ieh-gutter: clamp(20px, 4vw, 56px);
    --ieh-serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
    --ieh-sans: "Avenir Next", "Segoe UI", Arial, sans-serif;
    --ieh-shadow: 0 24px 70px rgba(3, 23, 15, .18);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--ieh-header-height) + 20px);
}

body.illueca-editorial-home {
    background: var(--ieh-paper);
    color: var(--ieh-ink);
    font-family: var(--ieh-sans);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    overflow-x: clip;
}

.illueca-editorial-home *,
.illueca-editorial-home *::before,
.illueca-editorial-home *::after {
    box-sizing: border-box;
}

.illueca-editorial-home img,
.illueca-editorial-home video,
.illueca-editorial-home svg {
    display: block;
    max-width: 100%;
}

.illueca-editorial-home a {
    color: inherit;
    text-decoration: none;
}

.illueca-editorial-home button,
.illueca-editorial-home input,
.illueca-editorial-home select,
.illueca-editorial-home textarea {
    font: inherit;
}

.illueca-editorial-home button {
    color: inherit;
}

.illueca-editorial-home h1,
.illueca-editorial-home h2,
.illueca-editorial-home h3,
.illueca-editorial-home p {
    margin-top: 0;
}

.illueca-editorial-home p {
    text-align: left;
}

.illueca-editorial-home #wpfront-scroll-top-container {
    display: none !important;
}

.illueca-editorial-home h1,
.illueca-editorial-home h2,
.illueca-editorial-home h3 {
    color: inherit;
    font-family: var(--ieh-serif);
    font-weight: 500;
    line-height: 1.05;
}

.illueca-editorial-home :focus-visible {
    outline: 3px solid var(--ieh-gold-light);
    outline-offset: 4px;
}

.ieh-container {
    margin-inline: auto;
    max-width: calc(var(--ieh-container) + (var(--ieh-gutter) * 2));
    padding-inline: var(--ieh-gutter);
    width: 100%;
}

.illueca-editorial-home .screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.illueca-editorial-home .screen-reader-text:focus {
    clip: auto !important;
    clip-path: none;
    height: auto;
    width: auto;
}

.ieh-skip-link {
    background: var(--ieh-white);
    color: var(--ieh-green-950);
    font-weight: 700;
    left: 12px;
    padding: 12px 18px;
    position: fixed;
    top: -100px;
    transition: top .2s ease;
    z-index: 100000;
}

.ieh-skip-link:focus {
    top: 12px;
}

.admin-bar .ieh-header {
    top: 32px;
}

.admin-bar .ieh-mobile-drawer,
.admin-bar .ieh-drawer-backdrop {
    top: 32px;
}

.ieh-header {
    background: rgba(7, 27, 19, .96);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: var(--ieh-white);
    height: var(--ieh-header-height);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: background-color .25s ease, box-shadow .25s ease;
    z-index: 1000;
}

.ieh-header.is-scrolled {
    background: var(--ieh-green-950);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .17);
}

.ieh-header__inner {
    align-items: center;
    display: flex;
    gap: clamp(18px, 3vw, 44px);
    height: 100%;
    margin-inline: auto;
    max-width: calc(var(--ieh-container) + (var(--ieh-gutter) * 2));
    padding-inline: var(--ieh-gutter);
}

.ieh-brand {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    height: 100%;
    width: 176px;
}

.ieh-brand img {
    height: 66px;
    object-fit: contain;
    object-position: left center;
    width: auto;
}

.ieh-desktop-nav {
    align-items: stretch;
    display: flex;
    gap: clamp(18px, 2.2vw, 34px);
    height: 100%;
    margin-left: auto;
}

.ieh-desktop-nav > a,
.ieh-nav-practices {
    align-items: center;
    background: none;
    border: 0;
    color: rgba(255, 255, 255, .88);
    cursor: pointer;
    display: flex;
    font-size: 12px;
    font-weight: 650;
    gap: 7px;
    letter-spacing: .08em;
    padding: 0;
    position: relative;
    text-transform: uppercase;
}

.ieh-desktop-nav > a::after,
.ieh-nav-practices::after {
    background: var(--ieh-gold);
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
    width: 100%;
}

.ieh-desktop-nav > a:hover::after,
.ieh-nav-practices:hover::after,
.ieh-nav-practices[aria-expanded="true"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.ieh-nav-practices svg {
    fill: none;
    height: 8px;
    stroke: currentColor;
    stroke-width: 1.6;
    transition: transform .2s ease;
    width: 12px;
}

.ieh-nav-practices[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.ieh-header__actions {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    gap: 13px;
}

.ieh-icon-button,
.ieh-menu-toggle,
.ieh-drawer-close {
    align-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    padding: 0;
}

.ieh-icon-button {
    height: 40px;
    width: 40px;
}

.ieh-icon-button svg {
    fill: none;
    height: 20px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.7;
    width: 20px;
}

.ieh-language {
    border-left: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .76);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .06em;
    padding-left: 14px;
    text-transform: uppercase;
}

.ieh-language:hover {
    color: var(--ieh-gold-light);
}

.ieh-header-cta {
    background: var(--ieh-gold);
    color: var(--ieh-green-950);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .08em;
    padding: 12px 18px;
    text-transform: uppercase;
    transition: background-color .2s ease, transform .2s ease;
}

.ieh-header-cta:hover {
    background: var(--ieh-gold-light);
    transform: translateY(-1px);
}

.ieh-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    height: 44px;
    width: 44px;
}

.ieh-search-panel {
    background: var(--ieh-green-900);
    border-top: 1px solid rgba(255, 255, 255, .08);
    box-shadow: var(--ieh-shadow);
    padding: 22px var(--ieh-gutter);
}

.ieh-search-panel form {
    margin-inline: auto;
    max-width: 720px;
}

.ieh-search-panel label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.ieh-search-panel form > div {
    display: flex;
}

.ieh-search-panel input {
    background: var(--ieh-white);
    border: 0;
    border-radius: 0;
    color: var(--ieh-ink);
    flex: 1;
    min-width: 0;
    padding: 13px 16px;
}

.ieh-search-panel button {
    background: var(--ieh-gold);
    border: 0;
    color: var(--ieh-green-950);
    cursor: pointer;
    font-weight: 750;
    padding-inline: 24px;
}

.ieh-mega-menu {
    background: var(--ieh-paper);
    box-shadow: var(--ieh-shadow);
    color: var(--ieh-ink);
    left: 0;
    position: absolute;
    right: 0;
    top: 100%;
}

.ieh-mega-menu__inner {
    display: grid;
    gap: clamp(40px, 6vw, 90px);
    grid-template-columns: minmax(240px, .7fr) 2fr;
    margin-inline: auto;
    max-width: calc(var(--ieh-container) + (var(--ieh-gutter) * 2));
    padding: 42px var(--ieh-gutter) 46px;
}

.ieh-mega-menu__intro {
    border-right: 1px solid var(--ieh-line);
    padding-right: 42px;
}

.ieh-mega-menu__intro h2 {
    font-size: clamp(28px, 3vw, 42px);
    margin-bottom: 25px;
}

.ieh-mega-menu__grid {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(2, 1fr);
}

.ieh-mega-menu__grid a {
    border-bottom: 1px solid var(--ieh-line);
    display: grid;
    gap: 5px 15px;
    grid-template-columns: 28px 1fr;
    padding: 17px 20px;
    transition: background-color .2s ease;
}

.ieh-mega-menu__grid a:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.ieh-mega-menu__grid a:hover {
    background: var(--ieh-cream);
}

.ieh-mega-menu__grid span {
    color: var(--ieh-gold);
    font-size: 11px;
    grid-row: 1 / span 2;
    letter-spacing: .1em;
    padding-top: 5px;
}

.ieh-mega-menu__grid strong {
    font-family: var(--ieh-serif);
    font-size: 21px;
    font-weight: 500;
}

.ieh-mega-menu__grid small {
    color: var(--ieh-muted);
    font-size: 13px;
    line-height: 1.45;
}

.ieh-drawer-backdrop {
    background: rgba(3, 14, 10, .66);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1090;
}

.ieh-mobile-drawer {
    background: var(--ieh-green-950);
    bottom: 0;
    color: var(--ieh-white);
    max-width: min(90vw, 430px);
    overflow-y: auto;
    padding: 22px 26px 34px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(102%);
    transition: transform .3s ease;
    width: 100%;
    z-index: 1100;
}

.ieh-mobile-drawer.is-open {
    transform: translateX(0);
}

.ieh-mobile-drawer__top {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}

.ieh-mobile-drawer__top img {
    height: 65px;
    object-fit: contain;
    object-position: left center;
    width: 150px;
}

.ieh-drawer-close {
    height: 44px;
    width: 44px;
}

.ieh-drawer-close svg {
    fill: none;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.5;
    width: 24px;
}

.ieh-mobile-drawer nav {
    display: flex;
    flex-direction: column;
    padding-block: 18px;
}

.ieh-mobile-drawer nav > a,
.ieh-mobile-accordion {
    align-items: center;
    background: none;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    cursor: pointer;
    display: flex;
    font-family: var(--ieh-serif);
    font-size: 28px;
    justify-content: space-between;
    padding: 16px 0;
    text-align: left;
    width: 100%;
}

.ieh-mobile-accordion span {
    color: var(--ieh-gold-light);
    font-family: var(--ieh-sans);
    font-size: 24px;
    transition: transform .2s ease;
}

.ieh-mobile-accordion[aria-expanded="true"] span {
    transform: rotate(45deg);
}

.ieh-mobile-practices {
    background: rgba(255, 255, 255, .05);
    padding: 9px 16px;
}

.ieh-mobile-practices a {
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    display: block;
    font-size: 14px;
    padding: 12px 0;
}

.ieh-mobile-drawer__meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.ieh-mobile-drawer__meta a {
    color: var(--ieh-gold-light);
    font-size: 14px;
}

.ieh-eyebrow {
    align-items: center;
    color: var(--ieh-green-700);
    display: flex;
    font-size: 11px;
    font-weight: 750;
    gap: 13px;
    letter-spacing: .17em;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.ieh-eyebrow::before {
    background: var(--ieh-gold);
    content: "";
    height: 1px;
    width: 35px;
}

.ieh-eyebrow--light {
    color: rgba(255, 255, 255, .76);
}

.ieh-hero {
    align-items: center;
    color: var(--ieh-white);
    display: flex;
    min-height: max(720px, 100svh);
    overflow: hidden;
    padding-top: var(--ieh-header-height);
    position: relative;
}

.ieh-hero__media,
.ieh-hero__scrim {
    inset: 0;
    position: absolute;
}

.ieh-hero__media video {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.ieh-hero__scrim {
    background:
        linear-gradient(90deg, rgba(4, 22, 14, .94) 0%, rgba(7, 30, 20, .76) 45%, rgba(7, 27, 19, .3) 78%, rgba(7, 27, 19, .4) 100%),
        linear-gradient(0deg, rgba(6, 24, 16, .55), transparent 42%);
}

.ieh-hero__content {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
    padding-bottom: clamp(90px, 11vh, 135px);
    padding-top: clamp(90px, 11vh, 135px);
    position: relative;
    z-index: 1;
}

.ieh-hero__copy {
    max-width: 840px;
}

.ieh-hero h1 {
    color: var(--ieh-white);
    font-size: clamp(48px, 6.4vw, 90px);
    letter-spacing: -.035em;
    margin-bottom: 28px;
    max-width: 920px;
    text-wrap: balance;
}

.ieh-hero__lead {
    color: rgba(255, 255, 255, .82);
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.6;
    margin-bottom: 38px;
    max-width: 680px;
}

.ieh-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.ieh-button {
    align-items: center;
    border: 1px solid transparent;
    display: inline-flex;
    font-size: 12px;
    font-weight: 750;
    gap: 24px;
    justify-content: center;
    letter-spacing: .08em;
    min-height: 50px;
    padding: 13px 21px;
    text-transform: uppercase;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.ieh-button:hover {
    transform: translateY(-2px);
}

.ieh-button--gold {
    background: var(--ieh-gold);
    color: var(--ieh-green-950);
}

.ieh-button--gold:hover {
    background: var(--ieh-gold-light);
}

.ieh-button--ghost {
    border-color: rgba(255, 255, 255, .5);
    color: var(--ieh-white);
}

.ieh-button--ghost:hover {
    background: rgba(255, 255, 255, .12);
    border-color: var(--ieh-white);
}

.ieh-button--outline {
    border-color: var(--ieh-green-800);
    color: var(--ieh-green-800);
    margin-top: 30px;
}

.ieh-button--outline:hover {
    background: var(--ieh-green-800);
    color: var(--ieh-white);
}

.ieh-video-toggle {
    align-items: center;
    align-self: flex-end;
    background: rgba(3, 20, 13, .55);
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 999px;
    color: var(--ieh-white);
    cursor: pointer;
    display: flex;
    flex: 0 0 auto;
    font-size: 11px;
    gap: 9px;
    letter-spacing: .08em;
    margin-left: 30px;
    padding: 10px 15px;
    text-transform: uppercase;
}

.ieh-video-toggle svg {
    fill: none;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    width: 18px;
}

.ieh-video-toggle__play,
.ieh-video-toggle[aria-pressed="true"] .ieh-video-toggle__pause {
    display: none;
}

.ieh-video-toggle[aria-pressed="true"] .ieh-video-toggle__play {
    display: block;
}

.ieh-scroll-cue {
    align-items: center;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    font-size: 10px;
    gap: 8px;
    left: 50%;
    letter-spacing: .15em;
    position: absolute;
    text-transform: uppercase;
    transform: translateX(-50%);
    z-index: 2;
}

.ieh-scroll-cue svg {
    fill: none;
    height: 23px;
    stroke: currentColor;
    stroke-width: 1.4;
    width: 23px;
}

.ieh-trust {
    background: var(--ieh-green-900);
    color: var(--ieh-white);
}

.ieh-trust__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.ieh-trust__item {
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, .15);
    display: grid;
    gap: 8px 22px;
    grid-template-columns: auto 1fr;
    min-height: 126px;
    padding: 24px clamp(24px, 4vw, 52px);
}

.ieh-trust__item:first-child {
    padding-left: 0;
}

.ieh-trust__item:last-child {
    border-right: 0;
    padding-right: 0;
}

.ieh-trust__item strong {
    color: var(--ieh-gold-light);
    font-family: var(--ieh-serif);
    font-size: clamp(30px, 3vw, 45px);
    font-weight: 500;
}

.ieh-trust__item span {
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.45;
}

.ieh-section {
    padding-block: clamp(90px, 11vw, 155px);
}

.ieh-about {
    background: var(--ieh-paper);
    overflow: hidden;
    position: relative;
}

.ieh-about__grid {
    display: grid;
    gap: clamp(50px, 9vw, 150px);
    grid-template-columns: minmax(280px, .8fr) minmax(400px, 1.2fr);
    position: relative;
    z-index: 1;
}

.ieh-about h2,
.ieh-section-heading h2 {
    color: var(--ieh-green-900);
    font-size: clamp(42px, 5.1vw, 72px);
    letter-spacing: -.03em;
    margin-bottom: 0;
    text-wrap: balance;
}

.ieh-about__body {
    padding-top: 43px;
}

.ieh-about__body p {
    color: var(--ieh-muted);
    font-size: 17px;
    margin-bottom: 22px;
}

.ieh-about__body .ieh-about__lead {
    color: var(--ieh-ink);
    font-family: var(--ieh-serif);
    font-size: clamp(22px, 2.3vw, 31px);
    line-height: 1.45;
}

.ieh-text-link {
    align-items: center;
    border-bottom: 1px solid var(--ieh-gold);
    color: var(--ieh-green-800);
    display: inline-flex;
    font-size: 12px;
    font-weight: 750;
    gap: 22px;
    letter-spacing: .08em;
    margin-top: 12px;
    padding-bottom: 6px;
    text-transform: uppercase;
}

.ieh-text-link span {
    transition: transform .2s ease;
}

.ieh-text-link:hover span {
    transform: translate(3px, -3px);
}

.ieh-text-link--light {
    color: var(--ieh-white);
}

.ieh-about__signature {
    bottom: -155px;
    color: rgba(17, 53, 38, .035);
    font-family: var(--ieh-serif);
    font-size: clamp(190px, 30vw, 440px);
    line-height: 1;
    pointer-events: none;
    position: absolute;
    right: -20px;
}

.ieh-section-heading {
    align-items: end;
    display: grid;
    gap: clamp(45px, 9vw, 130px);
    grid-template-columns: minmax(320px, 1.1fr) minmax(320px, .9fr);
    margin-bottom: clamp(55px, 7vw, 90px);
}

.ieh-section-heading > div:last-child > p {
    color: var(--ieh-muted);
    font-size: 17px;
    margin-bottom: 15px;
    max-width: 570px;
}

.ieh-section-heading--light h2,
.ieh-section-heading--light > div:last-child > p {
    color: var(--ieh-white);
}

.ieh-section-heading--light > div:last-child > p {
    color: rgba(255, 255, 255, .7);
}

.ieh-practices {
    background: var(--ieh-green-950);
    color: var(--ieh-white);
    min-height: 850px;
    overflow: hidden;
    position: relative;
}

.ieh-practices__backgrounds,
.ieh-practices__background,
.ieh-practices__overlay {
    inset: 0;
    position: absolute;
}

.ieh-practices__background {
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity .65s ease, transform 1.1s ease;
}

.ieh-practices__background.is-active {
    opacity: 1;
    transform: scale(1);
}

.ieh-practices__overlay {
    background: linear-gradient(90deg, rgba(5, 27, 17, .98) 0%, rgba(5, 27, 17, .9) 42%, rgba(5, 27, 17, .58) 100%);
}

.ieh-practices__content {
    position: relative;
    z-index: 1;
}

.ieh-practice-list {
    border-top: 1px solid rgba(255, 255, 255, .23);
}

.ieh-practice {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .23);
    display: grid;
    gap: 25px;
    grid-template-columns: 70px minmax(0, 1fr) 60px;
    min-height: 138px;
    padding-block: 27px;
    transition: background-color .25s ease, padding .25s ease;
}

.ieh-practice:hover,
.ieh-practice:focus-within,
.ieh-practice:focus {
    background: rgba(255, 255, 255, .08);
    padding-inline: 20px;
}

.ieh-practice__number {
    color: var(--ieh-gold-light);
    font-size: 11px;
    letter-spacing: .12em;
}

.ieh-practice h3 {
    color: var(--ieh-white);
    font-size: clamp(29px, 3.5vw, 47px);
    margin-bottom: 8px;
}

.ieh-practice p {
    color: rgba(255, 255, 255, .66);
    font-size: 14px;
    margin-bottom: 0;
    max-width: 720px;
}

.ieh-practice > a {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 50%;
    display: flex;
    height: 48px;
    justify-content: center;
    justify-self: end;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
    width: 48px;
}

.ieh-practice > a:hover {
    background: var(--ieh-gold);
    border-color: var(--ieh-gold);
    color: var(--ieh-green-950);
}

.ieh-snap-dots {
    display: none;
}

.ieh-team {
    background: var(--ieh-cream);
    overflow: hidden;
}

.ieh-team__rail-wrap {
    margin-left: max(var(--ieh-gutter), calc((100vw - var(--ieh-container)) / 2));
}

.ieh-team__rail {
    display: flex;
    gap: clamp(18px, 2.4vw, 32px);
    overflow-x: auto;
    padding-bottom: 20px;
    padding-right: var(--ieh-gutter);
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--ieh-gold) rgba(17, 53, 38, .12);
    scrollbar-width: thin;
}

.ieh-person {
    flex: 0 0 clamp(245px, 25vw, 330px);
    scroll-snap-align: start;
}

.ieh-person__image {
    aspect-ratio: 4 / 5;
    background: var(--ieh-green-900);
    margin-bottom: 22px;
    overflow: hidden;
    position: relative;
}

.ieh-person__image::after {
    background: linear-gradient(0deg, rgba(4, 26, 17, .68), transparent 45%);
    content: "";
    inset: 0;
    opacity: 0;
    position: absolute;
    transition: opacity .25s ease;
}

.ieh-person__image img {
    filter: saturate(.78);
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: filter .4s ease, transform .6s ease;
    width: 100%;
}

.ieh-person__image span {
    bottom: 20px;
    color: var(--ieh-white);
    font-size: 11px;
    font-weight: 700;
    left: 20px;
    letter-spacing: .09em;
    opacity: 0;
    position: absolute;
    text-transform: uppercase;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease;
    z-index: 1;
}

.ieh-person a:hover .ieh-person__image::after,
.ieh-person a:focus .ieh-person__image::after,
.ieh-person a:hover .ieh-person__image span,
.ieh-person a:focus .ieh-person__image span {
    opacity: 1;
    transform: translateY(0);
}

.ieh-person a:hover img,
.ieh-person a:focus img {
    filter: saturate(1);
    transform: scale(1.025);
}

.ieh-person h3 {
    color: var(--ieh-green-900);
    font-size: clamp(24px, 2.3vw, 31px);
    margin-bottom: 7px;
}

.ieh-person p {
    color: var(--ieh-muted);
    font-size: 13px;
    margin: 0;
}

.ieh-team__controls {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding: 25px var(--ieh-gutter) 0 0;
}

.ieh-team__controls button {
    align-items: center;
    background: transparent;
    border: 1px solid var(--ieh-green-800);
    border-radius: 50%;
    color: var(--ieh-green-800);
    cursor: pointer;
    display: flex;
    font-size: 21px;
    height: 48px;
    justify-content: center;
    transition: background-color .2s ease, color .2s ease;
    width: 48px;
}

.ieh-team__controls button:hover {
    background: var(--ieh-green-800);
    color: var(--ieh-white);
}

.ieh-publications {
    background: var(--ieh-paper);
}

.ieh-tab-list {
    border-bottom: 1px solid var(--ieh-line);
    display: flex;
    gap: clamp(25px, 5vw, 65px);
    margin-bottom: 45px;
    overflow-x: auto;
    overflow-y: hidden;
}

.ieh-tab-list button {
    background: none;
    border: 0;
    color: var(--ieh-muted);
    cursor: pointer;
    flex: 0 0 auto;
    font-family: var(--ieh-serif);
    font-size: clamp(22px, 2.6vw, 34px);
    padding: 0 0 14px;
    position: relative;
}

.ieh-tab-list button::after {
    background: var(--ieh-gold);
    bottom: -1px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transition: transform .22s ease;
    width: 100%;
}

.ieh-tab-list button[aria-selected="true"] {
    color: var(--ieh-green-900);
}

.ieh-tab-list button[aria-selected="true"]::after {
    transform: scaleX(1);
}

.ieh-tab-panel[hidden] {
    display: none;
}

.ieh-publication-grid {
    display: grid;
    gap: clamp(22px, 3.2vw, 42px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ieh-publication-card > a {
    display: block;
}

.ieh-publication-card__image,
.ieh-publication-card__monogram {
    aspect-ratio: 3 / 2;
    background: var(--ieh-green-900);
    margin-bottom: 22px;
    overflow: hidden;
}

.ieh-publication-grid--books .ieh-publication-card__image,
.ieh-publication-grid--books .ieh-publication-card__monogram {
    aspect-ratio: 3 / 4;
    background: #e5dfd2;
}

.ieh-publication-card__image img {
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    width: 100%;
}

.ieh-publication-grid--books .ieh-publication-card__image img {
    object-fit: contain;
    padding: 12px;
}

.ieh-publication-card__monogram {
    align-items: center;
    color: var(--ieh-gold-light);
    display: flex;
    font-family: var(--ieh-serif);
    font-size: clamp(70px, 9vw, 120px);
    justify-content: center;
}

.ieh-publication-card a:hover .ieh-publication-card__image img {
    transform: scale(1.035);
}

.ieh-publication-card__meta {
    color: var(--ieh-gold);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .12em;
    margin-bottom: 11px;
    text-transform: uppercase;
}

.ieh-publication-card h3 {
    color: var(--ieh-green-900);
    font-size: clamp(23px, 2.4vw, 32px);
    margin-bottom: 12px;
}

.ieh-publication-card__body > p:not(.ieh-publication-card__meta) {
    color: var(--ieh-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.ieh-publication-card__link {
    border-bottom: 1px solid var(--ieh-gold);
    color: var(--ieh-green-800);
    display: inline-block;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .08em;
    padding-bottom: 4px;
    text-transform: uppercase;
}

.ieh-empty-state {
    background: var(--ieh-cream);
    color: var(--ieh-muted);
    padding: 35px;
}

.ieh-contact {
    color: var(--ieh-white);
    overflow: hidden;
    padding-block: clamp(90px, 11vw, 155px);
    position: relative;
}

.ieh-contact__media,
.ieh-contact__overlay {
    inset: 0;
    position: absolute;
}

.ieh-contact__media {
    background-position: center;
    background-size: cover;
}

.ieh-contact__overlay {
    background: linear-gradient(90deg, rgba(5, 28, 18, .97), rgba(5, 28, 18, .84) 52%, rgba(5, 28, 18, .68));
}

.ieh-contact__grid {
    align-items: start;
    display: grid;
    gap: clamp(50px, 9vw, 130px);
    grid-template-columns: minmax(300px, .9fr) minmax(440px, 1.1fr);
    position: relative;
    z-index: 1;
}

.ieh-contact__copy h2 {
    color: var(--ieh-white);
    font-size: clamp(44px, 5.5vw, 74px);
    letter-spacing: -.03em;
    margin-bottom: 28px;
}

.ieh-contact__copy > p:not(.ieh-eyebrow) {
    color: rgba(255, 255, 255, .72);
    font-size: 17px;
}

.ieh-contact__details {
    border-top: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    flex-direction: column;
    margin-top: 38px;
    padding-top: 26px;
}

.ieh-contact__details h3 {
    color: var(--ieh-gold-light);
    font-family: var(--ieh-sans);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ieh-contact__details a {
    font-family: var(--ieh-serif);
    font-size: 23px;
}

.ieh-contact__details p {
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    margin: 13px 0 0;
}

.ieh-contact__form {
    background: var(--ieh-paper);
    box-shadow: var(--ieh-shadow);
    color: var(--ieh-ink);
    padding: clamp(28px, 4.3vw, 58px);
}

.ieh-contact__form > h3 {
    color: var(--ieh-green-900);
    font-size: clamp(28px, 3.3vw, 42px);
    margin-bottom: 27px;
}

.ieh-contact__form .wpcf7,
.ieh-contact__form .wpcf7-form {
    margin: 0;
}

.ieh-contact__form .wpcf7-form .row {
    display: grid !important;
    gap: 0 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 !important;
}

.ieh-contact__form .wpcf7-form .col-md-6 {
    max-width: none !important;
    padding: 0 !important;
    width: auto !important;
}

.ieh-contact__form .wpcf7-form p {
    margin: 0;
}

.ieh-contact__form .wpcf7-form br {
    display: none;
}

.ieh-contact__form .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 15px;
}

.ieh-contact__form input[type="text"],
.ieh-contact__form input[type="email"],
.ieh-contact__form input[type="tel"],
.ieh-contact__form select,
.ieh-contact__form textarea {
    appearance: none;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(17, 53, 38, .34) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: var(--ieh-ink) !important;
    font-size: 14px !important;
    margin: 0 !important;
    min-height: 49px !important;
    outline: none !important;
    padding: 12px 2px !important;
    width: 100% !important;
}

/* Keep the country-selector chrome separate from its visible value. */
.ieh-contact__form .wpcf7-form-control-wrap[data-name="country"] {
    position: relative;
    z-index: 6;
}

.ieh-contact__form .country-select {
    position: relative;
    width: 100%;
}

.ieh-contact__form .country-select.inside input[type="text"],
.ieh-contact__form input.wpcf7-countrytext {
    padding-left: 58px !important;
    padding-right: 8px !important;
}

.ieh-contact__form .country-select .flag-dropdown {
    border-right: 1px solid rgba(17, 53, 38, .18);
    bottom: 1px;
    left: 0;
    padding: 0;
    right: auto;
    top: 0;
    width: 48px;
    z-index: 3;
}

.ieh-contact__form .country-select .selected-flag {
    align-items: center;
    display: flex;
    height: 100%;
    padding: 0 0 0 10px;
    width: 48px;
}

.ieh-contact__form .country-select .selected-flag .arrow {
    right: 7px;
}

.ieh-contact__form .country-select .country-list {
    background: var(--ieh-paper);
    border: 1px solid rgba(17, 53, 38, .2);
    box-shadow: 0 18px 45px rgba(11, 40, 28, .18);
    left: 0;
    margin: 0;
    max-height: 260px;
    max-width: calc(100vw - 40px);
    top: 100%;
    width: min(360px, calc(100vw - 40px));
    z-index: 100;
}

.ieh-contact__form .country-select .country-list .country {
    color: var(--ieh-ink);
    font-size: 13px;
    line-height: 1.35;
    padding: 9px 12px;
}

.ieh-contact__form .country-select .country-list .country.highlight {
    background: rgba(199, 151, 45, .14);
}

.ieh-contact__form textarea {
    min-height: 95px !important;
    resize: vertical;
}

.ieh-contact__form input:focus,
.ieh-contact__form select:focus,
.ieh-contact__form textarea:focus {
    border-color: var(--ieh-gold) !important;
    box-shadow: 0 2px 0 var(--ieh-gold) !important;
}

.ieh-contact__form .wpcf7-submit {
    background: var(--ieh-green-800) !important;
    border: 1px solid var(--ieh-green-800) !important;
    border-radius: 0 !important;
    color: var(--ieh-white) !important;
    cursor: pointer;
    font-size: 11px !important;
    font-weight: 750 !important;
    letter-spacing: .1em;
    margin-top: 10px;
    min-height: 52px;
    padding: 14px 26px !important;
    text-transform: uppercase;
    width: auto !important;
}

.ieh-contact__form .wpcf7-submit:hover {
    background: var(--ieh-gold) !important;
    border-color: var(--ieh-gold) !important;
    color: var(--ieh-green-950) !important;
}

.ieh-contact__form .wpcf7-not-valid-tip {
    color: #9a332f;
    font-size: 11px;
    margin-top: 5px;
}

.ieh-contact__form .wpcf7-response-output {
    font-size: 13px;
    margin: 18px 0 0 !important;
    padding: 10px 13px !important;
}

.ieh-contact__legal {
    color: var(--ieh-muted);
    font-size: 10px;
    line-height: 1.55;
    margin: 18px 0 0;
}

.ieh-footer {
    background: var(--ieh-green-950);
    color: var(--ieh-white);
    padding: 70px 0 25px;
}

.ieh-footer__grid {
    display: grid;
    gap: clamp(45px, 8vw, 110px);
    grid-template-columns: minmax(220px, 1.3fr) .7fr 1fr;
    padding-bottom: 55px;
}

.ieh-footer__brand img {
    height: auto;
    margin-bottom: 16px;
    width: 190px;
}

.ieh-footer__brand p,
.ieh-footer__contact p {
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
    max-width: 300px;
}

.ieh-footer nav,
.ieh-footer__contact {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.ieh-footer nav a,
.ieh-footer__contact a {
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
}

.ieh-footer nav a:hover,
.ieh-footer__contact a:hover {
    color: var(--ieh-gold-light);
}

.ieh-footer__bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .13);
    color: rgba(255, 255, 255, .45);
    display: flex;
    font-size: 10px;
    justify-content: space-between;
    letter-spacing: .04em;
    padding-top: 24px;
    text-transform: uppercase;
}

.ieh-footer__bottom p {
    margin: 0;
}

.ieh-footer__bottom > div {
    display: flex;
    gap: 24px;
}

.ieh-mobile-dock {
    display: none;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: none;
}

body.ieh-drawer-open {
    overflow: hidden;
}

@media (max-width: 1160px) {
    .ieh-desktop-nav {
        gap: 18px;
    }

    .ieh-desktop-nav > a,
    .ieh-nav-practices {
        font-size: 10px;
    }

    .ieh-brand {
        width: 150px;
    }

    .ieh-header-cta {
        display: none;
    }
}

@media (max-width: 960px) {
    :root {
        --ieh-header-height: 76px;
    }

    .ieh-desktop-nav,
    .ieh-language,
    .ieh-header-cta {
        display: none;
    }

    .ieh-header__actions {
        margin-left: auto;
    }

    .ieh-menu-toggle {
        display: inline-flex;
    }

    .ieh-brand img {
        height: 58px;
    }

    .ieh-hero {
        min-height: max(680px, 92svh);
    }

    .ieh-hero__content {
        align-items: flex-start;
        flex-direction: column;
    }

    .ieh-video-toggle {
        align-self: flex-start;
        margin: 28px 0 0;
    }

    .ieh-trust__item {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .ieh-about__grid,
    .ieh-section-heading,
    .ieh-contact__grid {
        gap: 45px;
        grid-template-columns: 1fr;
    }

    .ieh-about__body {
        max-width: 760px;
        padding-top: 0;
    }

    .ieh-section-heading {
        align-items: start;
    }

    .ieh-section-heading > div:last-child > p {
        max-width: 720px;
    }

    .ieh-contact__form {
        max-width: 760px;
    }

    .ieh-footer__grid {
        grid-template-columns: 1.3fr .7fr;
    }

    .ieh-footer__contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .admin-bar .ieh-header {
        top: 46px;
    }

    .admin-bar .ieh-mobile-drawer,
    .admin-bar .ieh-drawer-backdrop {
        top: 46px;
    }

    .ieh-section {
        padding-block: 82px;
    }

    .ieh-hero {
        min-height: 760px;
    }

    .ieh-hero__scrim {
        background: linear-gradient(90deg, rgba(4, 22, 14, .93), rgba(7, 30, 20, .68)), linear-gradient(0deg, rgba(6, 24, 16, .7), transparent 50%);
    }

    .ieh-hero__content {
        padding-bottom: 105px;
        padding-top: 95px;
    }

    .ieh-hero h1 {
        font-size: clamp(43px, 13vw, 66px);
    }

    .ieh-scroll-cue {
        display: none;
    }

    .ieh-trust__grid {
        grid-template-columns: 1fr;
    }

    .ieh-trust__item,
    .ieh-trust__item:first-child,
    .ieh-trust__item:last-child {
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, .13);
        border-right: 0;
        display: grid;
        grid-template-columns: minmax(95px, .4fr) 1fr;
        min-height: 94px;
        padding: 18px 0;
    }

    .ieh-trust__item:last-child {
        border-bottom: 0;
    }

    .ieh-about h2,
    .ieh-section-heading h2,
    .ieh-contact__copy h2 {
        font-size: clamp(40px, 12vw, 58px);
    }

    .ieh-practices {
        min-height: auto;
    }

    .ieh-practices__backgrounds {
        position: absolute;
    }

    .ieh-practices__overlay {
        background: rgba(5, 27, 17, .89);
    }

    .ieh-practice-list {
        border: 0;
        display: flex;
        gap: 14px;
        margin-inline: calc(var(--ieh-gutter) * -1);
        overflow-x: auto;
        padding: 0 var(--ieh-gutter) 14px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .ieh-practice-list::-webkit-scrollbar {
        display: none;
    }

    .ieh-practice {
        align-content: start;
        align-items: start;
        background: rgba(5, 27, 17, .76);
        border: 1px solid rgba(255, 255, 255, .24);
        display: grid;
        flex: 0 0 min(84vw, 390px);
        grid-template-columns: 1fr 48px;
        min-height: 360px;
        padding: 28px !important;
        scroll-snap-align: center;
    }

    .ieh-practice__number {
        grid-column: 1 / -1;
    }

    .ieh-practice h3 {
        font-size: 38px;
        margin-top: 35px;
    }

    .ieh-practice p {
        font-size: 14px;
    }

    .ieh-practice > a {
        align-self: end;
        grid-column: 2;
        grid-row: 2;
    }

    .ieh-snap-dots {
        display: flex;
        gap: 8px;
        justify-content: center;
        margin-top: 18px;
    }

    .ieh-snap-dots span {
        background: rgba(255, 255, 255, .35);
        border-radius: 50%;
        height: 7px;
        transition: background-color .2s ease, transform .2s ease;
        width: 7px;
    }

    .ieh-snap-dots span.is-active {
        background: var(--ieh-gold-light);
        transform: scale(1.35);
    }

    .ieh-team__rail-wrap {
        margin-left: var(--ieh-gutter);
    }

    .ieh-person {
        flex-basis: min(78vw, 300px);
    }

    .ieh-publication-grid {
        grid-template-columns: 1fr;
    }

    .ieh-publication-card > a {
        display: grid;
        gap: 22px;
        grid-template-columns: 120px 1fr;
    }

    .ieh-publication-card__image,
    .ieh-publication-card__monogram,
    .ieh-publication-grid--books .ieh-publication-card__image,
    .ieh-publication-grid--books .ieh-publication-card__monogram {
        aspect-ratio: 3 / 4;
        margin: 0;
    }

    .ieh-publication-card h3 {
        font-size: 25px;
    }

    .ieh-contact__form .wpcf7-form .row {
        grid-template-columns: 1fr;
    }

    .ieh-footer {
        padding-bottom: 98px;
    }

    .ieh-footer__grid {
        grid-template-columns: 1fr;
    }

    .ieh-footer__contact {
        grid-column: auto;
    }

    .ieh-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .ieh-mobile-dock {
        background: var(--ieh-white);
        border-top: 1px solid var(--ieh-line);
        bottom: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        left: 0;
        padding-bottom: env(safe-area-inset-bottom);
        position: fixed;
        right: 0;
        z-index: 980;
    }

    .ieh-mobile-dock a {
        align-items: center;
        color: var(--ieh-green-900);
        display: flex;
        flex-direction: column;
        font-size: 9px;
        font-weight: 700;
        gap: 2px;
        justify-content: center;
        letter-spacing: .06em;
        min-height: 62px;
        text-transform: uppercase;
    }

    .ieh-mobile-dock a + a {
        border-left: 1px solid var(--ieh-line);
    }

    .ieh-mobile-dock svg {
        fill: none;
        height: 21px;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 1.5;
        width: 21px;
    }
}

@media (max-width: 480px) {
    :root {
        --ieh-gutter: 20px;
    }

    .ieh-brand {
        width: 130px;
    }

    .ieh-brand img {
        height: 52px;
    }

    .ieh-icon-button {
        width: 35px;
    }

    .ieh-button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .ieh-button {
        width: 100%;
    }

    .ieh-video-toggle span {
        display: none;
    }

    .ieh-video-toggle {
        padding: 11px;
    }

    .ieh-about__body .ieh-about__lead {
        font-size: 23px;
    }

    .ieh-publication-card > a {
        grid-template-columns: 94px 1fr;
    }

    .ieh-publication-card h3 {
        font-size: 22px;
    }

    .ieh-publication-card__body > p:not(.ieh-publication-card__meta) {
        display: none;
    }

    .ieh-contact__form {
        margin-inline: -6px;
        padding: 26px 20px;
    }
}

@media (max-width: 390px) {
    .ieh-hero h1 {
        font-size: 42px;
    }

    .ieh-mobile-drawer nav > a,
    .ieh-mobile-accordion {
        font-size: 24px;
    }
}

@media (max-height: 560px) and (orientation: landscape) {
    .ieh-hero {
        min-height: 640px;
    }

    .ieh-mobile-drawer nav > a,
    .ieh-mobile-accordion {
        font-size: 22px;
        padding: 11px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .illueca-editorial-home *,
    .illueca-editorial-home *::before,
    .illueca-editorial-home *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* Reference hero alignment: preserve the supplied editorial composition. */
.ieh-header {
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
}

.ieh-header.is-scrolled {
    background: rgba(6, 31, 24, .94);
    backdrop-filter: blur(16px);
}

.ieh-header__inner {
    display: grid;
    gap: 24px;
    grid-template-columns: 190px 1fr auto;
    max-width: none;
    padding-inline: 0;
    width: min(1240px, calc(100% - 48px));
}

.ieh-brand {
    width: 146px;
}

.ieh-brand img {
    height: 56px;
    width: 100%;
}

.ieh-desktop-nav {
    align-items: center;
    gap: clamp(20px, 2.5vw, 38px);
    height: auto;
    justify-self: center;
    margin-left: 0;
}

.ieh-desktop-nav > a,
.ieh-nav-practices {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .01em;
    text-transform: none;
}

.ieh-desktop-nav > a::after,
.ieh-nav-practices::after {
    bottom: -8px;
    height: 1px;
}

.ieh-search-toggle {
    display: none;
}

.ieh-language-pair {
    align-items: center;
    display: flex;
    font-size: 12px;
    gap: 5px;
    letter-spacing: .08em;
}

.ieh-language-pair span[aria-hidden="true"] {
    opacity: .45;
}

.ieh-language-pair [aria-current="page"] {
    font-weight: 700;
}

.ieh-header-cta {
    align-items: center;
    background: var(--ieh-gold);
    box-shadow: 0 16px 34px rgba(190, 143, 34, .18);
    color: var(--ieh-green-950);
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    justify-content: center;
    min-height: 42px;
    padding: 0 19px;
    text-transform: none;
}

.ieh-hero {
    align-items: center;
    background: var(--ieh-green-950);
    color: var(--ieh-white);
    display: grid;
    min-height: 860px;
    overflow: hidden;
    padding-top: 0;
    position: relative;
}

.ieh-hero__media video,
.ieh-hero__media img {
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    transform: scale(1.015);
    width: 100%;
}

.ieh-hero__scrim {
    background:
        linear-gradient(90deg, rgba(4, 24, 18, .96) 0%, rgba(7, 37, 27, .87) 38%, rgba(7, 37, 27, .48) 72%, rgba(7, 37, 27, .54) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .28) 0%, transparent 35%, rgba(3, 22, 16, .45) 100%);
}

.ieh-hero__content {
    align-items: end;
    display: grid;
    gap: 100px;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .45fr);
    max-width: none;
    padding: calc(var(--ieh-header-height) + 80px) 0 118px;
    position: relative;
    width: min(1240px, calc(100% - 48px));
    z-index: 2;
}

.ieh-hero__copy {
    max-width: none;
}

.ieh-hero .ieh-eyebrow {
    color: var(--ieh-gold-light);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .17em;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.ieh-hero .ieh-eyebrow::before {
    display: none;
}

.ieh-hero h1 {
    font-size: clamp(58px, 7vw, 104px);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: .98;
    margin: 0;
    max-width: 650px;
    text-wrap: balance;
}

.ieh-hero__lead {
    color: rgba(255, 255, 255, .82);
    font-size: clamp(17px, 1.4vw, 21px);
    line-height: 1.65;
    margin: 45px 0 0;
    max-width: 680px;
}

.ieh-hero .ieh-button-row {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 55px;
}

.ieh-hero .ieh-button {
    min-height: 50px;
    padding-inline: 24px;
    text-transform: none;
    width: auto;
}

.ieh-hero .ieh-button > span {
    display: none;
}

.ieh-hero-secondary {
    border-bottom: 1px solid rgba(255, 255, 255, .52);
    color: var(--ieh-white);
    font-size: 13px;
    font-weight: 700;
    padding: 11px 0 7px;
}

.ieh-hero-secondary span {
    color: var(--ieh-gold-light);
    margin-left: 7px;
}

.ieh-hero__note {
    align-self: end;
    border-left: 1px solid rgba(213, 173, 76, .75);
    padding: 10px 0 8px 30px;
}

.ieh-hero__note > strong {
    color: var(--ieh-gold-light);
    display: block;
    font-family: var(--ieh-serif);
    font-size: 52px;
    font-weight: 400;
    line-height: 1;
}

.ieh-hero__note p {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    margin: 14px 0 0;
}

.ieh-hero__device-meta {
    display: none;
}

.ieh-video-toggle {
    align-items: center;
    background: rgba(4, 29, 21, .3);
    border: 1px solid rgba(255, 255, 255, .52);
    border-radius: 50%;
    bottom: 82px;
    display: grid;
    height: 48px;
    justify-items: center;
    padding: 0;
    position: absolute;
    right: max(24px, calc((100vw - min(1240px, calc(100vw - 48px))) / 2));
    width: 48px;
    z-index: 4;
}

.ieh-video-toggle svg {
    grid-area: 1 / 1;
    height: 17px;
    width: 17px;
}

.ieh-hero__bottomline {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .18);
    bottom: 0;
    color: rgba(255, 255, 255, .58);
    display: flex;
    font-size: 11px;
    gap: 28px;
    justify-content: space-between;
    left: 0;
    letter-spacing: .15em;
    min-height: 58px;
    padding: 0 max(24px, calc((100vw - min(1240px, calc(100vw - 48px))) / 2));
    position: absolute;
    right: 0;
    text-transform: uppercase;
    z-index: 3;
}

.ieh-trust {
    background: #0b3a2b;
}

.ieh-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: none;
    min-height: 132px;
    padding-inline: 0;
    width: min(1240px, calc(100% - 48px));
}

.ieh-trust__item {
    align-items: flex-start;
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center;
    min-height: 0;
    padding: 26px 30px;
}

.ieh-trust__item:first-child {
    padding-left: 0;
}

.ieh-trust__item:last-child {
    border-right: 0;
}

.ieh-trust__item strong {
    color: var(--ieh-gold-light);
    font-family: var(--ieh-serif);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.1;
}

.ieh-trust__item span {
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
    letter-spacing: .07em;
    margin-top: 4px;
    text-transform: uppercase;
}

@media (max-width: 1080px) {
    .ieh-header__inner {
        grid-template-columns: 1fr auto;
        width: min(960px, calc(100% - 40px));
    }

    .ieh-desktop-nav,
    .ieh-header-cta,
    .ieh-language-pair,
    .ieh-mega-menu {
        display: none !important;
    }

    .ieh-header__actions {
        justify-self: end;
    }

    .ieh-menu-toggle {
        display: block;
    }

    .ieh-hero {
        min-height: 830px;
    }

    .ieh-hero__media video {
        object-position: 58% center;
    }

    .ieh-hero__scrim {
        background:
            linear-gradient(90deg, rgba(4, 25, 19, .97) 0%, rgba(6, 38, 28, .88) 48%, rgba(6, 38, 28, .27) 78%, rgba(4, 25, 19, .36) 100%),
            linear-gradient(180deg, rgba(0, 0, 0, .18), transparent 42%, rgba(2, 20, 14, .58));
    }

    .ieh-hero__content {
        gap: 42px;
        grid-template-columns: minmax(0, 1fr) 250px;
        min-height: 830px;
        padding-bottom: 112px;
        padding-top: 160px;
        width: min(960px, calc(100% - 40px));
    }

    .ieh-hero h1 {
        font-size: clamp(64px, 8.3vw, 88px);
        max-width: 690px;
    }

    .ieh-hero__lead {
        font-size: 18px;
        margin-top: 30px;
        max-width: 600px;
    }

    .ieh-hero .ieh-button-row {
        margin-top: 40px;
    }

    .ieh-hero__note {
        backdrop-filter: blur(14px);
        background: rgba(4, 28, 21, .52);
        border: 1px solid rgba(255, 255, 255, .18);
        border-left: 3px solid var(--ieh-gold-light);
        margin-bottom: 14px;
        padding: 25px;
    }

    .ieh-hero__note > strong {
        font-size: 58px;
    }

    .ieh-hero__device-meta {
        display: flex;
        gap: 28px;
        margin-top: 30px;
    }

    .ieh-hero__device-meta span {
        color: rgba(255, 255, 255, .6);
        font-size: 10px;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .ieh-hero__device-meta strong {
        color: var(--ieh-gold-light);
        display: block;
        font-family: var(--ieh-serif);
        font-size: 19px;
        font-weight: 400;
        letter-spacing: 0;
        text-transform: none;
    }

    .ieh-trust__grid {
        min-height: 112px;
        width: min(960px, calc(100% - 40px));
    }

    .ieh-trust__item {
        padding: 20px 18px;
    }

    .ieh-trust__item strong {
        font-size: 23px;
    }

    .ieh-trust__item span {
        font-size: 9px;
    }
}

@media (max-width: 760px) {
    :root {
        --ieh-header-height: 68px;
    }

    .ieh-header__inner {
        width: calc(100% - 28px);
    }

    .ieh-brand {
        width: 104px;
    }

    .ieh-brand img {
        height: 42px;
    }

    .ieh-hero {
        align-items: end;
        height: auto;
        min-height: 100svh;
    }

    .ieh-hero__media video {
        object-position: 64% center;
        transform: scale(1.03);
    }

    .ieh-hero__scrim {
        background:
            linear-gradient(180deg, rgba(2, 19, 14, .22) 0%, rgba(3, 25, 18, .24) 28%, rgba(3, 27, 20, .88) 67%, rgba(2, 20, 14, .99) 100%),
            linear-gradient(90deg, rgba(3, 30, 21, .28), transparent 75%);
    }

    .ieh-hero__content {
        align-items: end;
        gap: 0;
        grid-template-columns: 1fr;
        min-height: 100svh;
        padding-bottom: 95px;
        padding-top: 112px;
        width: calc(100% - 32px);
    }

    .ieh-hero .ieh-eyebrow {
        font-size: 9px;
        letter-spacing: .16em;
        margin-bottom: 13px;
    }

    .ieh-hero h1 {
        font-size: clamp(43px, 12.6vw, 61px);
        letter-spacing: -.04em;
        line-height: .98;
        max-width: 570px;
    }

    .ieh-hero__lead {
        color: rgba(255, 255, 255, .74);
        font-size: 15px;
        line-height: 1.55;
        margin-top: 20px;
        max-width: 520px;
    }

    .ieh-hero .ieh-button-row {
        display: grid;
        gap: 16px;
        margin-top: 28px;
    }

    .ieh-hero .ieh-button {
        min-height: 54px;
        width: 100%;
    }

    .ieh-hero-secondary {
        font-size: 12px;
        justify-self: start;
        width: max-content;
    }

    .ieh-hero__note,
    .ieh-hero__bottomline {
        display: none;
    }

    .ieh-hero__device-meta {
        display: grid;
        gap: 12px;
        grid-template-columns: 1fr 1fr;
        margin-top: 30px;
    }

    .ieh-hero__device-meta span {
        border-top: 1px solid rgba(255, 255, 255, .15);
        color: rgba(255, 255, 255, .5);
        font-size: 8px;
        letter-spacing: .1em;
        padding-top: 12px;
        text-transform: uppercase;
    }

    .ieh-hero__device-meta strong {
        font-size: 17px;
        margin-bottom: 2px;
    }

    .ieh-video-toggle {
        bottom: auto;
        height: 40px;
        right: 17px;
        top: 84px;
        width: 40px;
    }

    .ieh-trust {
        padding: 18px 0;
    }

    .ieh-trust__grid {
        gap: 10px;
        grid-auto-columns: minmax(190px, 70vw);
        grid-auto-flow: column;
        grid-template-columns: none;
        min-height: 0;
        overflow-x: auto;
        padding: 0 16px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        width: 100%;
    }

    .ieh-trust__grid::-webkit-scrollbar {
        display: none;
    }

    .ieh-trust__item,
    .ieh-trust__item:first-child {
        background: rgba(255, 255, 255, .025);
        border: 1px solid rgba(255, 255, 255, .1);
        min-height: 104px;
        padding: 18px 20px;
        scroll-snap-align: start;
    }

    .ieh-trust__item strong {
        font-size: 24px;
    }

    .ieh-trust__item span {
        font-size: 9px;
    }
}

@media (max-width: 380px) {
    .ieh-hero h1 {
        font-size: 43px;
    }

    .ieh-hero__lead {
        font-size: 14px;
    }
}

@media (max-width: 900px) and (orientation: landscape) and (max-height: 560px) {
    .ieh-hero,
    .ieh-hero__content {
        min-height: 660px;
    }

    .ieh-hero__content {
        padding-top: 100px;
    }

    .ieh-hero h1 {
        font-size: 52px;
    }
}

/* Team carousel: aligned pages, custom progress and predictable navigation. */
.ieh-team {
    padding-bottom: clamp(90px, 8vw, 120px);
}

.ieh-team__rail-wrap {
    margin-inline: auto;
    width: min(1240px, calc(100% - 48px));
}

.ieh-team__rail {
    gap: 24px;
    overscroll-behavior-inline: contain;
    padding: 0;
    scroll-padding-inline: 0;
    scrollbar-width: none;
}

.ieh-team__rail::-webkit-scrollbar {
    display: none;
}

.ieh-person {
    flex: 0 0 calc((100% - 72px) / 4);
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.ieh-person__image {
    margin-bottom: 20px;
}

.ieh-person h3 {
    font-size: clamp(24px, 2vw, 30px);
    line-height: 1.08;
    margin-bottom: 8px;
    min-height: 2.16em;
}

.ieh-person p {
    line-height: 1.45;
    min-height: 1.45em;
}

.ieh-team__toolbar {
    align-items: center;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(160px, 1fr) auto auto;
    margin-top: 32px;
}

.ieh-team__progress {
    background: rgba(17, 53, 38, .14);
    height: 2px;
    overflow: hidden;
    position: relative;
}

.ieh-team__progress span {
    background: var(--ieh-gold);
    display: block;
    height: 100%;
    transform: scaleX(.12);
    transform-origin: left center;
    transition: transform .25s ease;
    width: 100%;
}

.ieh-team__status {
    align-items: center;
    color: var(--ieh-muted);
    display: flex;
    font-size: 11px;
    gap: 8px;
    letter-spacing: .12em;
    margin: 0;
}

.ieh-team__status [aria-hidden="true"] {
    color: var(--ieh-gold);
}

.ieh-team__controls {
    gap: 10px;
    justify-content: flex-end;
    padding: 0;
}

.ieh-team__controls button {
    height: 46px;
    width: 46px;
}

.ieh-team__controls button svg {
    fill: none;
    height: 19px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
    width: 19px;
}

.ieh-team__controls button:disabled {
    border-color: rgba(17, 53, 38, .22);
    color: rgba(17, 53, 38, .3);
    cursor: not-allowed;
}

.ieh-team__controls button:disabled:hover {
    background: transparent;
    color: rgba(17, 53, 38, .3);
}

@media (max-width: 1080px) {
    .ieh-team__rail-wrap {
        width: min(960px, calc(100% - 40px));
    }

    .ieh-team__rail {
        gap: 20px;
    }

    .ieh-person {
        flex-basis: calc((100% - 40px) / 3);
    }
}

@media (max-width: 760px) {
    .ieh-team {
        padding-bottom: 78px;
    }

    .ieh-team__rail-wrap {
        margin-left: 16px;
        margin-right: 0;
        width: auto;
    }

    .ieh-team__rail {
        gap: 14px;
        padding-right: 16px;
        scroll-padding-left: 0;
    }

    .ieh-person {
        flex-basis: min(78vw, 300px);
    }

    .ieh-person h3 {
        min-height: 0;
    }

    .ieh-team__toolbar {
        gap: 16px;
        grid-template-columns: minmax(80px, 1fr) auto auto;
        margin-right: 16px;
        margin-top: 24px;
    }

    .ieh-team__controls button {
        height: 42px;
        width: 42px;
    }
}

/* Publications: editorial split layout from the approved reference. */
.ieh-publications {
    padding-block: 40px 120px;
}

.ieh-publication-layout {
    align-items: start;
    display: grid;
    gap: 100px;
    grid-template-columns: 360px minmax(0, 1fr);
}

.ieh-publication-sidebar {
    position: sticky;
    top: 120px;
}

.ieh-publication-sidebar .ieh-eyebrow {
    color: var(--ieh-green-700);
    font-size: 12px;
    letter-spacing: .17em;
    margin-bottom: 18px;
}

.ieh-publication-sidebar .ieh-eyebrow::before {
    display: none;
}

.ieh-publication-sidebar h2 {
    color: var(--ieh-green-900);
    font-size: clamp(45px, 4.5vw, 68px);
    letter-spacing: -.03em;
    line-height: 1.02;
    margin: 0;
    text-wrap: balance;
}

.ieh-publication-sidebar > p:not(.ieh-eyebrow) {
    color: var(--ieh-muted);
    font-size: 16px;
    margin: 26px 0;
}

.ieh-publication-tabs {
    border-top: 1px solid var(--ieh-line);
    display: grid;
    margin-top: 34px;
}

.ieh-publication-tabs button {
    align-items: center;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--ieh-line);
    color: var(--ieh-ink);
    cursor: pointer;
    display: flex;
    font-family: var(--ieh-sans);
    font-size: 15px;
    justify-content: space-between;
    padding: 16px 0;
    text-align: left;
}

.ieh-publication-tabs button::after {
    color: var(--ieh-gold);
    content: "↗";
    opacity: 0;
    transition: opacity .2s ease, transform .2s ease;
}

.ieh-publication-tabs button:hover::after,
.ieh-publication-tabs button:focus-visible::after {
    opacity: .55;
}

.ieh-publication-tabs button[aria-selected="true"] {
    color: var(--ieh-green-700);
    font-weight: 700;
}

.ieh-publication-tabs button[aria-selected="true"]::after {
    opacity: 1;
}

.ieh-publication-panel {
    animation: ieh-publication-panel-in .35s ease;
}

.ieh-publication-panel[hidden] {
    display: none;
}

@keyframes ieh-publication-panel-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.ieh-feature-book {
    background: var(--ieh-green-900);
    box-shadow: var(--ieh-shadow);
    color: var(--ieh-white);
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(220px, 38%) 1fr;
    min-height: 470px;
    padding: 42px;
}

.ieh-feature-book__cover {
    align-items: center;
    background: rgba(255, 255, 255, .06);
    display: flex;
    justify-content: center;
    min-width: 0;
}

.ieh-feature-book__cover img {
    box-shadow: 0 18px 40px rgba(0, 0, 0, .3);
    max-height: 360px;
    object-fit: contain;
    width: 78%;
}

.ieh-feature-book__cover > span {
    color: var(--ieh-gold-light);
    font-family: var(--ieh-serif);
    font-size: 88px;
}

.ieh-feature-book__copy {
    align-self: center;
}

.ieh-publication-meta {
    color: var(--ieh-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.ieh-feature-book h3 {
    color: var(--ieh-white);
    font-size: clamp(38px, 4vw, 60px);
    line-height: 1.02;
    margin: 0 0 18px;
}

.ieh-feature-book__copy > p:not(.ieh-publication-meta) {
    color: rgba(255, 255, 255, .7);
}

.ieh-feature-book a,
.ieh-editorial-list a {
    color: var(--ieh-green-700);
    font-size: 14px;
    font-weight: 700;
}

.ieh-feature-book a {
    color: var(--ieh-white);
}

.ieh-feature-book a span,
.ieh-editorial-list a span {
    color: var(--ieh-gold);
    display: inline-block;
    margin-left: 4px;
    transition: transform .2s ease;
}

.ieh-feature-book a:hover span,
.ieh-editorial-list a:hover span {
    transform: translate(3px, -3px);
}

.ieh-book-list {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
}

.ieh-book-list article {
    align-items: center;
    background: var(--ieh-white);
    border: 1px solid var(--ieh-line);
    display: grid;
    gap: 18px;
    grid-template-columns: 76px minmax(0, 1fr) auto;
    min-height: 142px;
    padding: 18px;
}

.ieh-book-list img,
.ieh-book-list__monogram {
    height: 104px;
    object-fit: cover;
    width: 76px;
}

.ieh-book-list__monogram {
    align-items: center;
    background: var(--ieh-green-900);
    color: var(--ieh-gold-light);
    display: flex;
    font-family: var(--ieh-serif);
    font-size: 28px;
    justify-content: center;
}

.ieh-book-list h4 {
    color: var(--ieh-green-900);
    font-family: var(--ieh-serif);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

.ieh-book-list article > a {
    color: var(--ieh-gold);
    font-size: 21px;
}

.ieh-editorial-list {
    display: grid;
    gap: 18px;
}

.ieh-editorial-list article {
    background: var(--ieh-white);
    border: 1px solid var(--ieh-line);
    min-height: 258px;
    padding: 34px;
}

.ieh-editorial-list h3 {
    color: var(--ieh-green-900);
    font-size: clamp(30px, 2.7vw, 38px);
    line-height: 1.1;
    margin: 0 0 12px;
}

.ieh-editorial-list article > p:not(.ieh-publication-meta) {
    color: var(--ieh-muted);
    font-size: 15px;
    margin-bottom: 18px;
}

@media (max-width: 1080px) {
    .ieh-publication-layout {
        gap: 42px;
        grid-template-columns: 1fr;
    }

    .ieh-publication-sidebar {
        align-items: end;
        display: grid;
        gap: 42px;
        grid-template-columns: 1fr 1fr;
        position: static;
    }

    .ieh-publication-sidebar > p:not(.ieh-eyebrow) {
        grid-column: 1;
    }

    .ieh-publication-tabs {
        align-self: end;
        grid-column: 2;
        grid-row: 1 / span 3;
        margin: 0;
    }

    .ieh-feature-book {
        grid-template-columns: 36% 1fr;
        min-height: 430px;
    }
}

@media (max-width: 760px) {
    .ieh-publications {
        padding-block: 72px;
    }

    .ieh-publication-layout {
        gap: 32px;
    }

    .ieh-publication-sidebar {
        display: block;
    }

    .ieh-publication-sidebar h2 {
        font-size: clamp(40px, 11.3vw, 51px);
    }

    .ieh-publication-sidebar > p:not(.ieh-eyebrow) {
        font-size: 14px;
    }

    .ieh-publication-tabs {
        border: 0;
        display: flex;
        gap: 8px;
        margin: 28px 0 0;
        overflow-x: auto;
        padding: 0 0 6px;
        scrollbar-width: none;
    }

    .ieh-publication-tabs::-webkit-scrollbar {
        display: none;
    }

    .ieh-publication-tabs button {
        background: rgba(255, 255, 255, .55);
        border: 1px solid var(--ieh-line);
        border-radius: 999px;
        flex: 0 0 auto;
        font-size: 12px;
        min-width: max-content;
        padding: 11px 16px;
    }

    .ieh-publication-tabs button::after {
        display: none;
    }

    .ieh-publication-tabs button[aria-selected="true"] {
        background: var(--ieh-green-900);
        border-color: var(--ieh-green-900);
        color: var(--ieh-white);
    }

    .ieh-feature-book {
        gap: 26px;
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 24px;
    }

    .ieh-feature-book__cover {
        min-height: 270px;
        padding: 28px;
    }

    .ieh-feature-book__cover img {
        max-height: 235px;
        width: auto;
    }

    .ieh-feature-book h3 {
        font-size: 39px;
    }

    .ieh-feature-book__copy > p:not(.ieh-publication-meta) {
        font-size: 14px;
    }

    .ieh-book-list {
        display: grid;
        grid-auto-columns: 88%;
        grid-auto-flow: column;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .ieh-book-list::-webkit-scrollbar {
        display: none;
    }

    .ieh-book-list article {
        scroll-snap-align: start;
    }

    .ieh-editorial-list article {
        min-height: 0;
        padding: 24px;
    }

    .ieh-editorial-list h3 {
        font-size: 29px;
    }
}

/* Shared WordPress shell: native menus used by every theme template. */
.illueca-editorial-shell {
    overflow-x: clip;
}

.illueca-editorial-shell .ieh-header *,
.illueca-editorial-shell .ieh-footer *,
.illueca-editorial-shell .ieh-mobile-drawer *,
.illueca-editorial-shell .ieh-mobile-dock * {
    box-sizing: border-box;
}

.illueca-editorial-shell .ieh-header a,
.illueca-editorial-shell .ieh-footer a,
.illueca-editorial-shell .ieh-mobile-drawer a,
.illueca-editorial-shell .ieh-mobile-dock a {
    color: inherit;
    text-decoration: none;
}

.illueca-editorial-internal {
    padding-top: var(--ieh-header-height);
}

.illueca-editorial-internal .ieh-header {
    background: rgba(6, 31, 24, .98);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.illueca-editorial-internal #react-navbar[hidden] {
    display: none !important;
}

.ieh-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ieh-desktop-nav > .ieh-menu {
    align-items: stretch;
    display: flex;
    gap: clamp(20px, 2.5vw, 38px);
    height: 100%;
}

.ieh-menu--desktop > .menu-item {
    align-items: stretch;
    display: flex;
    margin: 0;
    padding: 0;
}

.ieh-menu--desktop > .ieh-menu-item--practices {
    align-items: center;
    gap: 7px;
}

.ieh-menu--desktop > .ieh-menu-item--practices > .ieh-nav-practices {
    align-items: center;
    align-self: stretch;
    display: inline-flex;
    flex: 0 0 auto;
    justify-content: center;
    margin-right: -12px;
    width: 20px;
}

.ieh-menu--desktop > .ieh-menu-item--practices > .ieh-nav-practices::after {
    display: none;
}

.ieh-menu--desktop > .ieh-menu-item--practices > .ieh-nav-practices:hover,
.ieh-menu--desktop > .ieh-menu-item--practices > .ieh-nav-practices:focus-visible,
.ieh-menu--desktop > .ieh-menu-item--practices > .ieh-nav-practices[aria-expanded="true"] {
    color: var(--ieh-gold-light);
}

.ieh-menu--desktop > .menu-item > a {
    align-items: center;
    color: rgba(255, 255, 255, .88);
    display: flex;
    font-family: var(--ieh-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .01em;
    padding: 0;
    position: relative;
    white-space: nowrap;
}

.ieh-menu--desktop > .menu-item > a::after {
    background: var(--ieh-gold);
    bottom: -8px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
    width: 100%;
}

.ieh-menu--desktop > .menu-item > a:hover::after,
.ieh-menu--desktop > .menu-item > a:focus-visible::after,
.ieh-menu--desktop > .current-menu-item > a::after,
.ieh-menu--desktop > .current_page_item > a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.ieh-mobile-drawer nav > .ieh-menu {
    display: flex;
    flex-direction: column;
}

.ieh-menu--mobile > .menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    margin: 0;
}

.ieh-menu--mobile > .menu-item > a {
    align-items: center;
    display: flex;
    font-family: var(--ieh-serif);
    font-size: 28px;
    justify-content: space-between;
    padding: 16px 0;
    width: 100%;
}

.ieh-menu--mobile > .current-menu-item > a,
.ieh-menu--mobile > .current_page_item > a {
    color: var(--ieh-gold-light);
}

/* Mobile navigation — shared editorial experience across every template. */
.ieh-mobile-drawer {
    background:
        radial-gradient(circle at 100% 0, rgba(200, 153, 39, .18), transparent 34%),
        linear-gradient(155deg, #0b3026 0%, var(--ieh-green-950) 55%, #031710 100%);
    box-shadow: -24px 0 70px rgba(1, 12, 8, .34);
    max-width: 480px;
    overscroll-behavior: contain;
    padding: 0;
    scrollbar-color: rgba(213, 170, 63, .58) transparent;
    width: min(100%, 480px);
}

.ieh-mobile-drawer::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 42px 42px;
    content: "";
    inset: 0;
    opacity: .42;
    pointer-events: none;
    position: fixed;
}

.ieh-mobile-drawer > * {
    position: relative;
    z-index: 1;
}

.ieh-mobile-drawer__top {
    backdrop-filter: blur(18px);
    background: rgba(5, 28, 21, .76);
    border-bottom-color: rgba(255, 255, 255, .11);
    padding: max(16px, env(safe-area-inset-top)) clamp(20px, 6vw, 34px) 15px;
    position: sticky;
    top: 0;
    z-index: 4;
}

.ieh-mobile-drawer__brand {
    align-items: center;
    display: inline-flex;
    min-height: 52px;
}

.ieh-mobile-drawer__top img {
    height: 54px;
    width: 128px;
}

.ieh-drawer-close {
    align-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.ieh-drawer-close:hover,
.ieh-drawer-close:focus-visible {
    background: var(--ieh-gold);
    border-color: var(--ieh-gold);
    color: var(--ieh-green-950);
    transform: rotate(6deg);
}

.ieh-mobile-drawer__intro {
    padding: 24px clamp(20px, 6vw, 34px) 5px;
}

.ieh-mobile-drawer__intro > span {
    color: var(--ieh-gold-light);
    display: block;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .2em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.ieh-mobile-drawer__intro p {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    margin: 0;
}

.ieh-mobile-drawer .ieh-mobile-drawer__nav {
    display: block;
    padding: 9px clamp(20px, 6vw, 34px) 18px;
}

.ieh-mobile-drawer__nav > .ieh-menu {
    counter-reset: mobile-nav;
    margin: 0;
    padding: 0;
}

.ieh-menu--mobile > .menu-item {
    border-bottom-color: rgba(255, 255, 255, .14);
    counter-increment: mobile-nav;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    list-style: none;
    position: relative;
}

.ieh-menu--mobile > .menu-item > a {
    display: grid;
    font-family: var(--ieh-serif);
    font-size: clamp(27px, 7vw, 34px);
    font-weight: 400;
    gap: 1px 13px;
    grid-template-columns: 28px minmax(0, 1fr) 24px;
    line-height: 1.08;
    padding: 17px 0;
    transition: color .2s ease, padding-left .2s ease;
}

.ieh-menu--mobile > .menu-item > a::before {
    color: var(--ieh-gold-light);
    content: "0" counter(mobile-nav);
    font-family: var(--ieh-sans);
    font-size: 9px;
    font-weight: 750;
    grid-column: 1;
    letter-spacing: .1em;
    padding-top: 6px;
}

.ieh-menu--mobile > .menu-item:not(.ieh-menu-item--practices) > a::after {
    color: rgba(255, 255, 255, .56);
    content: "↗";
    font-family: var(--ieh-sans);
    font-size: 15px;
    grid-column: 3;
    justify-self: end;
    padding-top: 3px;
}

.ieh-menu--mobile > .menu-item > a:hover,
.ieh-menu--mobile > .menu-item > a:focus-visible {
    color: var(--ieh-gold-light);
    padding-left: 5px;
}

.ieh-menu--mobile > .ieh-menu-item--practices {
    grid-template-columns: minmax(0, 1fr) 52px;
}

.ieh-menu--mobile > .ieh-menu-item--practices > a {
    grid-column: 1;
    grid-template-columns: 28px minmax(0, 1fr);
}

.ieh-mobile-accordion {
    align-items: center;
    align-self: stretch;
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, .14);
    color: var(--ieh-gold-light);
    cursor: pointer;
    display: flex;
    grid-column: 2;
    justify-content: flex-end;
    margin-block: 9px;
    padding: 0 0 0 15px;
}

.ieh-mobile-accordion svg {
    fill: none;
    height: 24px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.5;
    transition: transform .25s ease;
    width: 24px;
}

.ieh-mobile-accordion[aria-expanded="true"] svg {
    transform: rotate(45deg);
}

.ieh-mobile-practices {
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .11);
    display: grid;
    gap: 0;
    grid-column: 1 / -1;
    margin: 0 0 18px;
    padding: 4px 15px;
}

.ieh-mobile-practices[hidden] {
    display: none;
}

.ieh-mobile-practices a {
    align-items: start;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    display: grid;
    gap: 3px 11px;
    grid-template-columns: 23px minmax(0, 1fr) 18px;
    padding: 14px 0;
}

.ieh-mobile-practices a > span {
    color: var(--ieh-gold-light);
    font-size: 9px;
    grid-row: 1 / span 2;
    letter-spacing: .08em;
    padding-top: 3px;
}

.ieh-mobile-practices a > strong {
    font-family: var(--ieh-serif);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.18;
}

.ieh-mobile-practices a > small {
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
    grid-column: 2;
    line-height: 1.45;
}

.ieh-mobile-practices a > svg {
    fill: none;
    grid-column: 3;
    grid-row: 1 / span 2;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.4;
    width: 18px;
}

.ieh-mobile-practices a:hover,
.ieh-mobile-practices a:focus-visible {
    color: var(--ieh-gold-light);
}

.ieh-mobile-practices .ieh-mobile-practices__all {
    align-items: center;
    border-bottom: 0;
    grid-template-columns: minmax(0, 1fr) 18px;
}

.ieh-mobile-practices__all > strong {
    font-family: var(--ieh-sans) !important;
    font-size: 10px !important;
    font-weight: 750 !important;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ieh-mobile-practices__all > svg {
    grid-column: 2 !important;
}

.ieh-mobile-drawer__footer {
    border-top: 1px solid rgba(255, 255, 255, .13);
    margin: 0 clamp(20px, 6vw, 34px);
    padding: 22px 0 max(28px, env(safe-area-inset-bottom));
}

.ieh-mobile-drawer__cta {
    align-items: center;
    background: var(--ieh-gold);
    color: var(--ieh-green-950) !important;
    display: flex;
    font-size: 11px;
    font-weight: 800;
    justify-content: space-between;
    letter-spacing: .08em;
    min-height: 56px;
    padding: 0 18px;
    text-transform: uppercase;
}

.ieh-mobile-drawer__cta svg {
    fill: none;
    height: 20px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
    width: 20px;
}

.ieh-mobile-drawer__cta:hover,
.ieh-mobile-drawer__cta:focus-visible {
    background: var(--ieh-gold-light);
}

.ieh-mobile-drawer__meta {
    display: grid;
    gap: 12px;
    grid-template-columns: auto minmax(0, 1fr);
    margin-top: 18px;
}

.ieh-mobile-drawer__language {
    border-right: 1px solid rgba(255, 255, 255, .14);
    display: flex;
    flex-direction: column;
    padding-right: 18px;
}

.ieh-mobile-drawer__language span {
    color: rgba(255, 255, 255, .5);
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ieh-mobile-drawer__language strong,
.ieh-mobile-drawer__contact a {
    color: var(--ieh-gold-light);
    font-size: 12px;
    font-weight: 650;
}

.ieh-mobile-drawer__contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.ieh-menu-toggle {
    align-items: center;
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(218, 176, 69, .72);
    border-radius: 1px;
    color: var(--ieh-gold-light);
    box-shadow: none;
    gap: 0;
    height: 38px;
    justify-content: center;
    min-width: 74px;
    padding: 0 14px;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
    width: auto;
    white-space: nowrap;
}

.ieh-menu-toggle:hover,
.ieh-menu-toggle:focus-visible {
    background: var(--ieh-gold-light);
    border-color: var(--ieh-gold-light);
    color: var(--ieh-green-950);
    transform: translateY(-1px);
}

.ieh-menu-toggle .ieh-menu-toggle__label {
    background: transparent;
    display: block;
    font-family: var(--ieh-sans);
    font-size: 9px;
    font-weight: 750;
    height: auto;
    letter-spacing: .2em;
    line-height: 1;
    text-transform: uppercase;
    width: auto;
}

@media (max-width: 1080px) {
    .illueca-editorial-shell .ieh-header .ieh-menu-toggle {
        background: rgba(255, 255, 255, .035);
        border-color: rgba(218, 176, 69, .72);
        color: var(--ieh-gold-light);
        display: inline-flex;
        flex-direction: row;
    }

    .illueca-editorial-shell .ieh-header .ieh-menu-toggle:hover,
    .illueca-editorial-shell .ieh-header .ieh-menu-toggle:focus-visible {
        background: var(--ieh-gold-light);
        border-color: var(--ieh-gold-light);
        color: var(--ieh-green-950);
    }

}

@media (max-width: 520px) {
    .ieh-mobile-drawer {
        max-width: none;
        width: 100%;
    }

    .ieh-drawer-backdrop {
        background: var(--ieh-green-950);
    }
}

@media (max-width: 360px) {
    .ieh-menu--mobile > .menu-item > a {
        font-size: 25px;
        padding-block: 14px;
    }

    .ieh-mobile-drawer__intro {
        padding-top: 18px;
    }

    .ieh-mobile-practices a > small {
        display: none;
    }
}

.ieh-footer nav > .ieh-menu {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.ieh-menu--footer > .menu-item {
    margin: 0;
    padding: 0;
}

.ieh-menu--footer > .menu-item > a {
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
}

.ieh-menu--footer > .menu-item > a:hover,
.ieh-menu--footer > .menu-item > a:focus-visible,
.ieh-menu--footer > .current-menu-item > a,
.ieh-menu--footer > .current_page_item > a {
    color: var(--ieh-gold-light);
}

@media (max-width: 1160px) {
    .ieh-desktop-nav > .ieh-menu {
        gap: 18px;
    }

    .ieh-menu--desktop > .menu-item > a {
        font-size: 12px;
    }
}

@media (max-width: 960px) {
    .ieh-desktop-nav > .ieh-menu {
        display: none;
    }
}
