@font-face {
    font-family: "Arteley Akzidenz";
    src: url("../../../fonts/akzidenzgrotesk-regular-webfont.woff") format("woff");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Arteley Akzidenz";
    src: url("../../../fonts/akzidenzgrotesk-medium-webfont.woff") format("woff");
    font-display: swap;
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: "Arteley Akzidenz";
    src: url("../../../fonts/akzidenzgrotesk-bold-webfont.woff") format("woff");
    font-display: swap;
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "Arteley Akzidenz Condensed";
    src: url("../../../fonts/akzidenzgrotesk-boldcond-webfont.woff") format("woff");
    font-display: swap;
    font-style: normal;
    font-weight: 700;
}

:root {
    --arteley-ink: #0a0a0a;
    --arteley-paper: #f2f1ed;
    --arteley-white: #fff;
    --arteley-orange: #ff6600;
    --arteley-line: #cac8c1;
    --arteley-muted: #696863;
    --arteley-header-height: 96px;
    --arteley-gutter: clamp(20px, 4vw, 72px);
    --arteley-section-space: clamp(88px, 9vw, 152px);
    --arteley-max: 100%;
    --arteley-type-section: clamp(64px, 6.8vw, 108px);
    --arteley-type-lead: clamp(27px, 2.35vw, 36px);
    --arteley-type-body-large: clamp(18px, 1.45vw, 22px);
    --arteley-type-quote: clamp(24px, 2.1vw, 32px);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--arteley-header-height);
}

body.arteley-home-body {
    margin: 0;
    color: var(--arteley-ink);
    background: var(--arteley-white);
    font-family: "Arteley Akzidenz", Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.arteley-home-body *,
body.arteley-home-body *::before,
body.arteley-home-body *::after {
    box-sizing: border-box;
}

body.arteley-home-body img {
    display: block;
    max-width: 100%;
}

body.arteley-home-body a {
    color: inherit;
    text-decoration: none;
}

body.arteley-home-body button,
body.arteley-home-body input {
    font: inherit;
}

body.arteley-home-body button {
    color: inherit;
}

body.arteley-home-body h1,
body.arteley-home-body h2,
body.arteley-home-body h3,
body.arteley-home-body p,
body.arteley-home-body figure,
body.arteley-home-body blockquote {
    margin-top: 0;
}

body.arteley-home-body.contact-open,
body.arteley-home-body.menu-open {
    overflow: hidden;
}

.arteley-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10000;
    padding: 12px 18px;
    color: var(--arteley-white) !important;
    background: var(--arteley-ink);
    transform: translateY(-180%);
    transition: transform 180ms ease;
}

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

.arteley-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    min-height: var(--arteley-header-height);
    padding: 0 var(--arteley-gutter);
    border-bottom: 1px solid rgba(10, 10, 10, 0.14);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    transition: min-height 220ms ease, background 220ms ease;
}

.arteley-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
    min-height: inherit;
    margin: 0 auto;
    padding: 12px 0;
}

.arteley-header.is-compact {
    min-height: 76px;
    background: rgba(255, 255, 255, 0.97);
}

.arteley-logo {
    position: relative;
    z-index: 2;
    width: 72px;
    height: 72px;
}

.arteley-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.arteley-nav {
    display: block;
    padding: 0 28px;
}

.arteley-nav__inner {
    display: flex;
    justify-content: center;
}

.arteley-nav__primary {
    display: flex;
    gap: clamp(22px, 2.8vw, 48px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.arteley-nav__primary li,
.arteley-nav__primary a {
    display: block;
}

.arteley-nav__primary a span,
.arteley-nav__label,
.arteley-nav__secondary {
    display: none;
}

.arteley-nav a,
.arteley-language {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.015em;
}

.arteley-nav a::after,
.arteley-language::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--arteley-orange);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
}

.arteley-nav a:hover::after,
.arteley-nav a:focus-visible::after,
.arteley-language:hover::after,
.arteley-language:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.arteley-header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.arteley-contact-trigger,
.arteley-text-button,
.arteley-menu-toggle,
.arteley-contact-panel__close,
.arteley-contact-layer__backdrop {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
}

.arteley-contact-trigger--header {
    display: inline-flex;
    align-items: center;
    gap: 26px;
    min-height: 48px;
    padding: 0 18px;
    color: var(--arteley-white) !important;
    background: var(--arteley-ink);
    font-size: 14px;
    font-weight: 500;
    transition: color 180ms ease, background 180ms ease;
}

.arteley-contact-trigger--header:hover,
.arteley-contact-trigger--header:focus-visible {
    color: var(--arteley-ink) !important;
    background: var(--arteley-orange);
}

.arteley-menu-toggle {
    display: none;
}

.arteley-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(460px, 0.96fr);
    width: 100%;
    min-height: 100svh;
    padding-top: var(--arteley-header-height);
    overflow: hidden;
    background: var(--arteley-paper);
}

.arteley-hero__copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(92px, 11vw, 170px) var(--arteley-gutter) clamp(112px, 12vw, 180px);
}

.arteley-eyebrow {
    margin-bottom: 26px;
    color: var(--arteley-orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.arteley-hero h1 {
    max-width: 930px;
    margin-bottom: 52px;
    font-family: "Arteley Akzidenz Condensed", "Arial Narrow", sans-serif;
    font-size: clamp(74px, 8vw, 142px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 0.78;
    text-transform: uppercase;
}

.arteley-hero h1 span {
    display: block;
}

.arteley-hero h1 span::after {
    display: inline-block;
    width: 0.22em;
    height: 0.22em;
    margin-left: 0.04em;
    background: var(--arteley-orange);
    content: "";
}

.arteley-hero h1 small {
    display: block;
    max-width: 720px;
    margin-top: 42px;
    font-family: "Arteley Akzidenz", Arial, sans-serif;
    font-size: clamp(20px, 1.75vw, 29px);
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.18;
    text-transform: none;
}

.arteley-hero__actions {
    display: flex;
    align-items: center;
    gap: 44px;
}

.arteley-arrow-link,
.arteley-text-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-width: 238px;
    padding: 16px 0;
    border-bottom: 2px solid var(--arteley-ink);
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    transition: color 180ms ease, border-color 180ms ease;
}

.arteley-arrow-link:hover,
.arteley-arrow-link:focus-visible,
.arteley-text-button:hover,
.arteley-text-button:focus-visible {
    color: var(--arteley-orange);
    border-color: var(--arteley-orange);
}

.arteley-hero__visual {
    position: relative;
    min-height: min(calc(100svh - var(--arteley-header-height)), 984px);
    background: #dad9d5;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.arteley-hero__visual.is-dragging {
    cursor: grabbing;
}

.arteley-hero__visual picture,
.arteley-hero__visual img {
    width: 100%;
    height: 100%;
}

.arteley-hero__slides,
.arteley-hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.arteley-hero__slides {
    overflow: hidden;
}

.arteley-hero__slide {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 780ms ease, visibility 780ms ease;
}

.arteley-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
}

.arteley-hero__visual img {
    object-fit: cover;
    object-position: 54% 50%;
    pointer-events: none;
    -webkit-user-drag: none;
}

.arteley-hero__slide img {
    transform: none;
}

.arteley-hero__visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.16), transparent 32%);
    content: "";
    pointer-events: none;
}

.arteley-hero__frame {
    position: absolute;
    right: clamp(22px, 4vw, 70px);
    bottom: clamp(28px, 5vw, 78px);
    z-index: 2;
    width: clamp(92px, 10vw, 164px);
    aspect-ratio: 1;
    border: clamp(9px, 1vw, 16px) solid var(--arteley-orange);
    mix-blend-mode: multiply;
}

.arteley-hero__controls {
    position: absolute;
    bottom: clamp(14px, 1.8vw, 26px);
    left: clamp(14px, 1.8vw, 26px);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0;
    min-height: 36px;
    padding: 2px 4px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--arteley-white);
    background: rgba(10, 10, 10, 0.58);
    backdrop-filter: blur(6px);
    cursor: default;
}

.arteley-hero__controls button {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    font: inherit;
    font-size: 15px;
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease;
}

.arteley-hero__controls button:hover,
.arteley-hero__controls button:focus-visible {
    color: var(--arteley-orange);
    background: rgba(255, 255, 255, 0.08);
}

.arteley-hero__index {
    min-width: 52px;
    padding: 0 7px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
}

.arteley-scroll-cue {
    position: absolute;
    bottom: 0;
    left: clamp(14px, 2vw, 32px);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.arteley-scroll-cue i {
    display: block;
    width: 1px;
    height: 48px;
    background: var(--arteley-orange);
}

@media (max-height: 820px) {
    .arteley-scroll-cue {
        display: none;
    }
}

.arteley-section {
    padding: var(--arteley-section-space) var(--arteley-gutter);
}

.arteley-section > * {
    width: min(100%, var(--arteley-max));
    margin-right: auto;
    margin-left: auto;
}

.arteley-section__heading {
    margin-bottom: clamp(48px, 5vw, 76px);
}

.arteley-section__heading .arteley-eyebrow {
    margin-bottom: 18px;
}

.arteley-section h2,
.arteley-contact-cta h2,
.arteley-contact-panel h2 {
    max-width: 1050px;
    margin-bottom: 0;
    font-family: "Arteley Akzidenz Condensed", "Arial Narrow", sans-serif;
    font-size: var(--arteley-type-section);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 0.84;
    text-transform: uppercase;
}

.arteley-section__heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.76fr);
    align-items: end;
    gap: 9vw;
}

.arteley-purpose__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(56px, 6vw, 96px);
    align-items: start;
}

.arteley-purpose__image {
    position: sticky;
    top: calc(var(--arteley-header-height) + 30px);
    width: min(100%, 780px);
    align-self: start;
}

.arteley-purpose__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center 38%;
}

.arteley-purpose__image > span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: grid;
    align-content: center;
    width: clamp(132px, 11vw, 168px);
    aspect-ratio: 1;
    padding: clamp(12px, 1.2vw, 16px);
    color: var(--arteley-ink);
    background: var(--arteley-orange);
    font-family: "Arteley Akzidenz Condensed", "Arial Narrow", sans-serif;
    font-size: clamp(32px, 3.1vw, 48px);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 0.82;
    white-space: nowrap;
    text-transform: uppercase;
}

.arteley-purpose__copy {
    padding-top: clamp(8px, 2.5vw, 36px);
}

.arteley-purpose__copy p {
    max-width: 900px;
    margin-bottom: 32px;
    font-size: var(--arteley-type-body-large);
    line-height: 1.45;
}

.arteley-purpose__copy .arteley-purpose__lead {
    margin-bottom: 58px;
    font-size: var(--arteley-type-lead);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.arteley-section--dark {
    color: var(--arteley-white);
    background: var(--arteley-ink);
}

.arteley-sectors__lead {
    max-width: 760px;
    margin-bottom: 0;
    font-size: var(--arteley-type-lead);
    letter-spacing: -0.02em;
    line-height: 1.16;
}

.arteley-sectors__intro {
    margin-bottom: 18px;
    color: var(--arteley-orange);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.arteley-sector-list,
.arteley-practice-list {
    border-top: 1px solid currentColor;
}

.arteley-sector,
.arteley-practice {
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.arteley-sector summary,
.arteley-practice summary,
.arteley-career summary,
.arteley-privacy-summary summary {
    list-style: none;
    cursor: pointer;
}

.arteley-sector summary::-webkit-details-marker,
.arteley-practice summary::-webkit-details-marker,
.arteley-career summary::-webkit-details-marker,
.arteley-privacy-summary summary::-webkit-details-marker {
    display: none;
}

.arteley-sector summary {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 42px;
    gap: 24px;
    align-items: center;
    min-height: clamp(92px, 9vw, 144px);
}

.arteley-sector__number {
    color: var(--arteley-orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.arteley-sector__title {
    max-width: 1050px;
    font-family: "Arteley Akzidenz Condensed", "Arial Narrow", sans-serif;
    font-size: clamp(34px, 4vw, 62px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 0.96;
    text-transform: uppercase;
}

.arteley-sector__toggle {
    font-size: 38px;
    font-weight: 300;
    transition: color 180ms ease, transform 220ms ease;
}

.arteley-sector summary:hover .arteley-sector__toggle,
.arteley-sector summary:focus-visible .arteley-sector__toggle {
    color: var(--arteley-orange);
}

.arteley-sector[open] .arteley-sector__toggle {
    color: var(--arteley-orange);
    transform: rotate(45deg);
}

.arteley-sector__body {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 42px;
    gap: 24px;
    padding-bottom: clamp(34px, 5vw, 72px);
}

.arteley-sector__body p {
    grid-column: 2;
    max-width: 900px;
    margin-bottom: 0;
    color: #d6d4ce;
    font-size: clamp(18px, 1.65vw, 25px);
    line-height: 1.42;
}

.arteley-motion-image {
    position: relative;
    height: clamp(480px, 52vw, 720px);
    margin: 0;
    overflow: hidden;
    background: var(--arteley-ink);
}

.arteley-motion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.arteley-motion-image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.arteley-motion-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 55%);
    content: "";
}

.arteley-motion-image figcaption {
    position: absolute;
    right: var(--arteley-gutter);
    bottom: clamp(34px, 6vw, 88px);
    left: var(--arteley-gutter);
    z-index: 2;
    color: var(--arteley-white);
    font-family: "Arteley Akzidenz Condensed", "Arial Narrow", sans-serif;
    font-size: clamp(38px, 4.8vw, 72px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 0.92;
    text-align: center;
    text-wrap: balance;
    text-transform: uppercase;
}

.arteley-motion-image figcaption span {
    color: var(--arteley-orange);
}

.arteley-practices__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: clamp(56px, 6vw, 96px);
    align-items: start;
    margin-bottom: clamp(70px, 9vw, 140px);
}

.arteley-practices__intro .arteley-section__heading {
    margin-bottom: 0;
    padding-right: clamp(20px, 2.5vw, 48px);
}

.arteley-practices__intro .arteley-section__heading h2 {
    max-width: 760px;
    font-size: clamp(58px, 5.8vw, 92px);
    line-height: 0.9;
}

.arteley-practices__lead > p:first-child {
    margin-bottom: 38px;
    font-size: var(--arteley-type-lead);
    letter-spacing: -0.02em;
    line-height: 1.16;
}

.arteley-practices__lead p:not(:first-child) {
    margin-bottom: 20px;
    color: var(--arteley-muted);
    font-size: 18px;
}

.arteley-practice-list {
    border-color: var(--arteley-ink);
}

.arteley-practice {
    border-color: var(--arteley-line);
}

.arteley-practice summary {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) 48px;
    gap: 26px;
    align-items: center;
    min-height: clamp(114px, 11vw, 180px);
}

.arteley-practice__number {
    color: var(--arteley-orange);
    font-family: "Arteley Akzidenz Condensed", "Arial Narrow", sans-serif;
    font-size: clamp(31px, 3.7vw, 56px);
    font-weight: 700;
}

.arteley-practice__title {
    max-width: 1100px;
    font-family: "Arteley Akzidenz Condensed", "Arial Narrow", sans-serif;
    font-size: clamp(34px, 4.2vw, 68px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 0.94;
    text-transform: uppercase;
}

.arteley-practice__toggle {
    display: grid;
    place-items: center;
    width: 46px;
    aspect-ratio: 1;
    border: 1px solid currentColor;
    font-size: 22px;
    transition: color 180ms ease, background 180ms ease, transform 220ms ease;
}

.arteley-practice summary:hover .arteley-practice__toggle,
.arteley-practice summary:focus-visible .arteley-practice__toggle,
.arteley-practice[open] .arteley-practice__toggle {
    color: var(--arteley-ink);
    background: var(--arteley-orange);
}

.arteley-practice[open] .arteley-practice__toggle {
    transform: rotate(90deg);
}

.arteley-practice__content {
    max-width: 1040px;
    margin-left: 110px;
    padding: 0 0 clamp(50px, 7vw, 100px);
}

.arteley-practice__content p,
.arteley-practice__content li {
    font-size: clamp(18px, 1.65vw, 25px);
    line-height: 1.46;
}

.arteley-practice__content p {
    margin-bottom: 24px;
}

.arteley-practice__content ul {
    display: grid;
    gap: 18px;
    margin: 38px 0 0;
    padding-left: 1.25em;
}

.arteley-practice__content li::marker {
    color: var(--arteley-orange);
}

.arteley-section--soft {
    background: var(--arteley-paper);
}

.arteley-firm {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(56px, 6vw, 96px);
    align-items: start;
}

.arteley-firm > * {
    width: auto;
    margin: 0;
}

.arteley-firm__portrait {
    position: sticky;
    top: calc(var(--arteley-header-height) + 30px);
    width: min(100%, 780px);
}

.arteley-firm__portrait img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center 30%;
}

.arteley-firm__content {
    padding-top: clamp(8px, 2.5vw, 36px);
}

.arteley-firm__content .arteley-section__heading {
    margin-bottom: 38px;
}

.arteley-firm__name {
    max-width: 700px;
    margin-bottom: 42px;
    font-size: clamp(21px, 1.8vw, 28px);
    font-weight: 700;
    line-height: 1.18;
}

.arteley-firm blockquote {
    position: relative;
    max-width: 820px;
    margin: 0 0 70px;
    padding-left: 0;
    font-size: var(--arteley-type-quote);
    font-style: normal;
    letter-spacing: -0.02em;
    line-height: 1.22;
}

.arteley-firm blockquote::before {
    position: absolute;
    top: 0.18em;
    bottom: 0.12em;
    left: -40px;
    width: 8px;
    background: var(--arteley-orange);
    content: "";
}

.arteley-career {
    border-top: 1px solid var(--arteley-ink);
    border-bottom: 1px solid var(--arteley-ink);
}

.arteley-career summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 86px;
    font-size: 18px;
    font-weight: 700;
}

.arteley-career summary span:last-child {
    font-size: 34px;
    font-weight: 300;
    transition: transform 220ms ease;
}

.arteley-career[open] summary span:last-child {
    transform: rotate(45deg);
}

.arteley-career > div {
    padding: 10px 0 44px;
}

.arteley-career p {
    margin-bottom: 24px;
    color: #3f3e3a;
    font-size: 17px;
    line-height: 1.58;
}

.arteley-contact-cta {
    position: relative;
    min-height: min(86svh, 920px);
    overflow: hidden;
    color: var(--arteley-white);
    background: var(--arteley-ink);
}

.arteley-contact-cta > picture,
.arteley-contact-cta > picture img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.arteley-contact-cta > picture img {
    object-fit: cover;
}

.arteley-contact-cta::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.7) 48%, rgba(0, 0, 0, 0.14) 100%);
    content: "";
}

.arteley-contact-cta__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(100%, var(--arteley-max));
    min-height: min(86svh, 920px);
    margin: 0 auto;
    padding: var(--arteley-section-space) var(--arteley-gutter);
}

.arteley-contact-cta h2 {
    max-width: 1050px;
    margin-bottom: clamp(50px, 7vw, 92px);
}

.arteley-contact-trigger--large {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 390px);
    min-height: 78px;
    padding: 0 24px;
    color: var(--arteley-ink);
    background: var(--arteley-orange);
    font-weight: 700;
    transition: color 180ms ease, background 180ms ease;
}

.arteley-contact-trigger--large:hover,
.arteley-contact-trigger--large:focus-visible {
    color: var(--arteley-white);
    background: var(--arteley-ink);
    outline-color: var(--arteley-white);
}

.arteley-footer {
    width: 100%;
    padding: clamp(64px, 7vw, 112px) var(--arteley-gutter) 34px;
    color: var(--arteley-white);
    background: var(--arteley-ink);
    border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.arteley-footer__top,
.arteley-footer__body,
.arteley-footer__bottom {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.arteley-footer__top {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: clamp(40px, 7vw, 120px);
    align-items: end;
    padding-bottom: clamp(64px, 8vw, 124px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}

.arteley-footer__brand {
    display: block;
    width: 72px;
    aspect-ratio: 1;
    flex: 0 0 auto;
}

.arteley-footer__brand img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    filter: invert(1);
}

.arteley-footer__statement {
    max-width: 760px;
    margin: 0;
}

.arteley-footer__statement span,
.arteley-footer__navigation > p,
.arteley-footer__location > p {
    display: block;
    margin: 0 0 18px;
    color: var(--arteley-orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.arteley-footer__statement strong {
    display: block;
    max-width: 760px;
    font-family: "Arteley Akzidenz Condensed", "Arial Narrow", sans-serif;
    font-size: clamp(42px, 5vw, 78px);
    letter-spacing: -0.025em;
    line-height: 0.88;
    text-transform: uppercase;
}

.arteley-footer__body {
    display: grid;
    grid-template-columns: repeat(3, minmax(170px, 1fr)) minmax(180px, 0.75fr);
    gap: clamp(34px, 6vw, 96px);
    padding: clamp(52px, 6vw, 88px) 0;
}

.arteley-footer__navigation {
    display: grid;
    align-content: start;
    gap: 12px;
    font-size: 15px;
}

.arteley-footer__navigation a,
.arteley-footer__navigation button,
.arteley-footer__location a {
    width: fit-content;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.arteley-footer__navigation a:hover,
.arteley-footer__navigation a:focus-visible,
.arteley-footer__navigation button:hover,
.arteley-footer__navigation button:focus-visible,
.arteley-footer__location a:hover,
.arteley-footer__location a:focus-visible {
    color: var(--arteley-orange);
}

.arteley-footer__location {
    display: grid;
    align-content: start;
    gap: 14px;
}

.arteley-footer__location strong {
    font-size: 16px;
    font-weight: 500;
}

.arteley-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.arteley-footer__bottom p {
    margin: 0;
    color: #aaa8a2;
    font-size: 12px;
}

.arteley-footer a:hover,
.arteley-footer a:focus-visible {
    color: var(--arteley-orange);
}

.arteley-contact-layer {
    position: fixed;
    inset: 0;
    z-index: 5000;
}

.arteley-contact-layer[hidden] {
    display: none;
}

.arteley-contact-layer__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.66);
    opacity: 0;
    transition: opacity 280ms ease;
}

.arteley-contact-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(760px, 100%);
    overflow-y: auto;
    color: var(--arteley-ink);
    background: var(--arteley-paper);
    outline: 0;
    transform: translateX(100%);
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.arteley-contact-layer.is-open .arteley-contact-layer__backdrop {
    opacity: 1;
}

.arteley-contact-layer.is-open .arteley-contact-panel {
    transform: translateX(0);
}

.arteley-contact-panel__top {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 0 clamp(24px, 5vw, 60px);
    border-bottom: 1px solid var(--arteley-line);
    background: rgba(242, 241, 237, 0.96);
    backdrop-filter: blur(14px);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.arteley-contact-panel__close {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    font-size: 38px;
    font-weight: 300;
    line-height: 1;
}

.arteley-contact-panel__body {
    padding: clamp(54px, 8vw, 92px) clamp(24px, 7vw, 76px) 80px;
}

.arteley-contact-panel h2 {
    margin-bottom: 58px;
    font-size: clamp(54px, 7.4vw, 92px);
}

.arteley-contact-form {
    display: grid;
    gap: 30px;
}

.arteley-form-field {
    display: grid;
    gap: 10px;
}

.arteley-form-field > span {
    font-size: 13px;
    font-weight: 700;
}

.arteley-form-field input {
    width: 100%;
    min-height: 58px;
    padding: 8px 0;
    border: 0;
    border-bottom: 1px solid var(--arteley-ink);
    border-radius: 0;
    color: var(--arteley-ink);
    background: transparent;
    font-size: 19px;
    outline: 0;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.arteley-form-field input:focus {
    border-color: var(--arteley-orange);
    box-shadow: 0 2px 0 var(--arteley-orange);
}

.arteley-form-field input[aria-invalid="true"] {
    border-color: #b42318;
}

.arteley-form-field--honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.arteley-consent {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 13px;
    align-items: start;
    font-size: 14px;
    line-height: 1.45;
}

.arteley-consent input {
    width: 20px;
    height: 20px;
    margin: 2px 0 0;
    accent-color: var(--arteley-orange);
}

.arteley-consent a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.arteley-form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 70px;
    padding: 0 22px;
    border: 1px solid var(--arteley-orange);
    color: var(--arteley-ink) !important;
    background: var(--arteley-orange);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.arteley-form-submit:hover,
.arteley-form-submit:focus-visible {
    color: var(--arteley-ink) !important;
    border-color: var(--arteley-ink);
    background: var(--arteley-white);
}

.arteley-form-submit:focus-visible {
    outline: 2px solid var(--arteley-orange);
    outline-offset: 3px;
}

.arteley-form-submit:disabled {
    cursor: wait;
    opacity: 0.58;
}

.arteley-form-status {
    min-height: 24px;
    margin: -10px 0 0;
    font-size: 14px;
    font-weight: 700;
}

.arteley-form-status.is-error {
    color: #9d1c12;
}

.arteley-form-status.is-success {
    color: #24642b;
}

.arteley-privacy-summary {
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid var(--arteley-line);
}

.arteley-privacy-summary summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
}

.arteley-privacy-summary summary::after {
    content: "+";
    font-size: 26px;
    font-weight: 300;
}

.arteley-privacy-summary[open] summary::after {
    transform: rotate(45deg);
}

.arteley-privacy-summary > div {
    padding-top: 22px;
}

.arteley-privacy-summary p {
    margin-bottom: 12px;
    color: var(--arteley-muted);
    font-size: 12px;
    line-height: 1.5;
}

/* Páginas interiores */
.arteley-interior {
    padding-top: var(--arteley-header-height);
}

.arteley-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(460px, 0.96fr);
    width: 100%;
    min-height: min(78svh, 900px);
    margin: 0 auto;
    color: var(--arteley-ink);
    background: var(--arteley-paper);
}

.arteley-page-hero--dark {
    color: var(--arteley-white);
    background: var(--arteley-ink);
}

.arteley-page-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: clamp(90px, 9vw, 150px) var(--arteley-gutter);
}

.arteley-page-hero h1 {
    max-width: 860px;
    margin: 0 0 clamp(42px, 6vw, 82px);
    font-family: "Arteley Akzidenz Condensed", "Arial Narrow", sans-serif;
    font-size: clamp(72px, 7.4vw, 122px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.82;
    text-wrap: balance;
    text-transform: uppercase;
}

.arteley-page-hero h1.arteley-page-hero__title--long {
    margin-bottom: clamp(36px, 4.5vw, 62px);
    font-size: clamp(60px, 6.4vw, 104px);
    line-height: 0.84;
}

.arteley-page-hero h1.arteley-page-hero__title--extended {
    margin-bottom: clamp(32px, 4vw, 54px);
    font-size: clamp(56px, 5.9vw, 90px);
    line-height: 0.86;
}

.arteley-page-hero__lead {
    max-width: 740px;
    margin: 0;
    font-size: clamp(23px, 2.25vw, 36px);
    letter-spacing: -0.02em;
    line-height: 1.17;
    text-wrap: balance;
}

.arteley-page-hero__title--long + .arteley-page-hero__lead {
    max-width: 640px;
    font-size: clamp(20px, 1.8vw, 28px);
    line-height: 1.24;
}

.arteley-page-hero__title--extended + .arteley-page-hero__lead {
    max-width: 520px;
    font-size: clamp(18px, 1.55vw, 23px);
    letter-spacing: -0.012em;
    line-height: 1.28;
}

.arteley-page-hero__visual {
    position: relative;
    min-width: 0;
    min-height: 100%;
    overflow: hidden;
    background: #d8d7d2;
}

.arteley-page-hero__visual picture,
.arteley-page-hero__visual img {
    width: 100%;
    height: 100%;
}

.arteley-page-hero__visual img {
    object-fit: cover;
    object-position: center;
}

.arteley-page-hero__visual > span {
    position: absolute;
    right: clamp(24px, 4vw, 64px);
    bottom: clamp(24px, 4vw, 64px);
    width: clamp(78px, 9vw, 142px);
    aspect-ratio: 1;
    border: clamp(8px, 0.8vw, 14px) solid var(--arteley-orange);
    mix-blend-mode: multiply;
}

.arteley-profile {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(56px, 6vw, 96px);
    align-items: start;
}

.arteley-profile > * {
    width: auto;
    margin: 0;
}

.arteley-profile__portrait {
    position: sticky;
    top: calc(var(--arteley-header-height) + 28px);
    width: min(100%, 780px);
}

.arteley-profile__portrait img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center 30%;
}

.arteley-profile__content h2 {
    max-width: 880px;
    margin-bottom: 56px;
    font-size: clamp(48px, 5.4vw, 86px);
}

.arteley-profile blockquote {
    position: relative;
    max-width: 900px;
    margin: 0 0 74px;
    padding-left: 0;
    font-size: var(--arteley-type-quote);
    letter-spacing: -0.025em;
    line-height: 1.19;
}

.arteley-profile blockquote::before {
    position: absolute;
    inset: 0 auto 0 -38px;
    width: 8px;
    background: var(--arteley-orange);
    content: "";
}

.arteley-profile__career {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--arteley-ink);
}

.arteley-profile__career p {
    margin: 0;
    padding: 28px 0;
    border-bottom: 1px solid var(--arteley-line);
    color: #3f3e3a;
    font-size: clamp(17px, 1.35vw, 21px);
    line-height: 1.58;
}

.arteley-services-page__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
    column-gap: clamp(60px, 10vw, 170px);
    row-gap: 26px;
    margin-bottom: clamp(100px, 12vw, 190px);
}

.arteley-services-page__intro .arteley-eyebrow,
.arteley-services-page__intro h2 {
    grid-column: 1;
}

.arteley-services-page__intro h2 {
    max-width: 1050px;
    margin-top: 12px;
    font-size: clamp(55px, 6.8vw, 112px);
    line-height: 0.9;
}

.arteley-services-page__intro > p:not(.arteley-eyebrow) {
    grid-column: 2;
    margin: 0;
    color: var(--arteley-muted);
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: 1.48;
}

.arteley-services-page__intro > p:nth-of-type(2) {
    grid-row: 1 / span 2;
    align-self: end;
}

.arteley-practice-list--page {
    margin-top: 0;
}

.arteley-page-cta {
    display: grid;
    grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr) auto;
    gap: clamp(34px, 6vw, 96px);
    align-items: end;
    padding: clamp(90px, 11vw, 180px) var(--arteley-gutter);
    color: var(--arteley-white);
    background: var(--arteley-ink);
}

.arteley-page-cta > * {
    width: auto;
    margin: 0;
}

.arteley-page-cta > p {
    color: var(--arteley-orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.arteley-page-cta h2 {
    max-width: 980px;
    font-family: "Arteley Akzidenz Condensed", "Arial Narrow", sans-serif;
    font-size: clamp(58px, 7.5vw, 120px);
    letter-spacing: -0.035em;
    line-height: 0.84;
    text-transform: uppercase;
}

.arteley-page-cta--hub {
    grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1.35fr) auto;
    gap: clamp(28px, 4vw, 72px);
}

.arteley-page-cta--hub h2 {
    max-width: 1120px;
    font-size: clamp(48px, 5.4vw, 86px);
    line-height: 0.91;
    text-wrap: balance;
}

.arteley-page-cta button {
    min-width: 180px;
    min-height: 64px;
    padding: 0 22px;
    border: 0;
    color: var(--arteley-ink);
    background: var(--arteley-orange);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.arteley-page-cta--image {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.93), rgba(0, 0, 0, 0.68)), url("../images/brand-detail-1800.webp");
    background-position: center;
    background-size: cover;
}

.arteley-journal__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.66fr);
    gap: clamp(50px, 9vw, 150px);
    align-items: end;
    margin-bottom: clamp(70px, 9vw, 140px);
}

.arteley-journal__intro h2 {
    max-width: 950px;
    font-size: clamp(60px, 7vw, 116px);
}

.arteley-journal__intro > p {
    margin: 0;
    color: var(--arteley-muted);
    font-size: clamp(19px, 1.7vw, 25px);
    line-height: 1.48;
}

.arteley-journal__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 54px;
}

.arteley-journal__filters a {
    padding: 10px 16px;
    border: 1px solid var(--arteley-ink);
    font-size: 13px;
    font-weight: 700;
}

.arteley-journal__filters a:hover,
.arteley-journal__filters a:focus-visible,
.arteley-journal__filters .is-current {
    color: var(--arteley-ink);
    background: var(--arteley-orange);
}

.arteley-article-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--arteley-ink);
    border-left: 1px solid var(--arteley-ink);
}

.arteley-article-card {
    min-width: 0;
    border-right: 1px solid var(--arteley-ink);
    border-bottom: 1px solid var(--arteley-ink);
}

.arteley-article-card > a {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 430px;
    padding: clamp(28px, 3vw, 48px);
    transition: color 180ms ease, background 180ms ease;
}

.arteley-article-card > a:hover,
.arteley-article-card > a:focus-visible {
    color: var(--arteley-white);
    background: var(--arteley-ink);
}

.arteley-article-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 58px;
    color: var(--arteley-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.arteley-article-card h2,
.arteley-article-card h3 {
    margin: 0 0 32px;
    font-family: "Arteley Akzidenz Condensed", "Arial Narrow", sans-serif;
    font-size: clamp(38px, 3.7vw, 58px);
    letter-spacing: -0.025em;
    line-height: 0.95;
    text-transform: uppercase;
}

.arteley-article-card p {
    margin: auto 0 0;
    color: var(--arteley-muted);
    font-size: 16px;
}

.arteley-article-card > a:hover p,
.arteley-article-card > a:focus-visible p {
    color: #d6d4ce;
}

.arteley-article-card__arrow {
    position: absolute;
    right: 28px;
    bottom: 24px;
    color: var(--arteley-orange);
    font-size: 24px;
}

.arteley-pagination,
.arteley-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 48px;
}

.arteley-pagination a,
.arteley-pagination .current {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0 15px;
    border: 1px solid var(--arteley-ink);
}

.arteley-pagination .current {
    background: var(--arteley-orange);
}

.arteley-contact-page {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1.28fr);
    gap: clamp(60px, 10vw, 180px);
    align-items: start;
}

.arteley-contact-page > * {
    width: auto;
    margin: 0;
}

.arteley-contact-page__intro {
    position: sticky;
    top: calc(var(--arteley-header-height) + 32px);
}

.arteley-contact-page__intro h2 {
    margin-bottom: 46px;
    font-size: clamp(56px, 6.4vw, 104px);
}

.arteley-contact-page__intro > p:not(.arteley-eyebrow) {
    max-width: 620px;
    color: var(--arteley-muted);
    font-size: 20px;
    line-height: 1.5;
}

.arteley-contact-page__intro dl {
    margin-top: 58px;
    border-top: 1px solid var(--arteley-ink);
}

.arteley-contact-page__intro dl > div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--arteley-line);
}

.arteley-contact-page__intro dt {
    font-weight: 700;
}

.arteley-contact-page__intro dd {
    margin: 0;
}

.arteley-contact-page__form {
    padding: clamp(34px, 5vw, 72px);
    color: var(--arteley-white);
    background: var(--arteley-ink);
}

.arteley-contact-page__form .arteley-form-field input {
    color: var(--arteley-white);
    border-color: rgba(255, 255, 255, 0.54);
}

.arteley-contact-page__form .arteley-consent,
.arteley-contact-page__form .arteley-privacy-summary p {
    color: #c5c3bd;
}

.arteley-contact-page__form .arteley-privacy-summary {
    border-color: rgba(255, 255, 255, 0.5);
}

.arteley-legal-page,
.arteley-story-page {
    display: grid;
    grid-template-columns: minmax(210px, 0.36fr) minmax(0, 1fr);
    gap: clamp(60px, 11vw, 190px);
    align-items: start;
}

.arteley-legal-page > *,
.arteley-story-page > * {
    width: auto;
    margin: 0;
}

.arteley-legal-page__aside,
.arteley-story-page__aside {
    position: sticky;
    top: calc(var(--arteley-header-height) + 32px);
}

.arteley-legal-page__aside p {
    color: var(--arteley-muted);
    font-size: 14px;
}

.arteley-legal-page__aside a {
    display: inline-block;
    margin-top: 24px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--arteley-ink);
    font-weight: 700;
}

.arteley-inline-action {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: min(100%, 300px);
    min-height: 62px;
    margin-top: 28px;
    padding: 0 20px;
    border: 0;
    color: var(--arteley-ink);
    background: var(--arteley-orange);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.arteley-cookie-control {
    margin-bottom: clamp(62px, 8vw, 110px);
    padding: clamp(30px, 5vw, 62px);
    border-top: 4px solid var(--arteley-orange);
    background: var(--arteley-paper);
}

.arteley-cookie-control .arteley-eyebrow {
    margin-bottom: 18px;
}

.arteley-legal-page__content .arteley-cookie-control h2 {
    max-width: 700px;
    margin: 0 0 22px;
}

.arteley-cookie-control > p:not(.arteley-eyebrow) {
    max-width: 650px;
    margin-bottom: 0;
}

.arteley-legal-page__content,
.arteley-story-page__content,
.arteley-article-page__body {
    max-width: 960px;
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.67;
}

.arteley-legal-page__content h2,
.arteley-legal-page__content h3,
.arteley-story-page__content h2,
.arteley-story-page__content h3,
.arteley-article-page__body h2,
.arteley-article-page__body h3 {
    margin: 2.2em 0 0.7em;
    font-family: "Arteley Akzidenz Condensed", "Arial Narrow", sans-serif;
    font-size: clamp(36px, 4vw, 60px);
    letter-spacing: -0.02em;
    line-height: 0.96;
    text-transform: uppercase;
}

.arteley-legal-page__content p,
.arteley-story-page__content p,
.arteley-article-page__body p {
    margin: 0 0 1.35em;
}

.arteley-legal-page__content table {
    width: 100%;
    margin: 2rem 0 3rem;
    border-collapse: collapse;
    font-size: clamp(14px, 1.05vw, 17px);
    line-height: 1.45;
}

.arteley-legal-page__content th,
.arteley-legal-page__content td {
    padding: 16px 14px;
    border: 1px solid var(--arteley-line);
    text-align: left;
    vertical-align: top;
}

.arteley-legal-page__content th {
    color: var(--arteley-white);
    background: var(--arteley-ink);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.arteley-legal-page__content tbody tr:nth-child(even) {
    background: var(--arteley-paper);
}

@media (max-width: 760px) {
    .arteley-legal-page__content table,
    .arteley-legal-page__content thead,
    .arteley-legal-page__content tbody,
    .arteley-legal-page__content tr,
    .arteley-legal-page__content th,
    .arteley-legal-page__content td {
        display: block;
    }

    .arteley-legal-page__content thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
    }

    .arteley-legal-page__content tr {
        margin-bottom: 18px;
        border-top: 3px solid var(--arteley-ink);
    }

    .arteley-legal-page__content td {
        padding: 11px 12px 11px 44%;
        border-top: 0;
    }

    .arteley-legal-page__content td::before {
        float: left;
        width: calc(44% - 18px);
        margin-left: calc(-44% + 6px);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        content: attr(data-label);
    }
}

.arteley-story-page__aside h2 {
    max-width: 460px;
    font-size: clamp(48px, 5vw, 80px);
}

.arteley-story-page--hub {
    grid-template-columns: minmax(300px, 0.48fr) minmax(0, 1fr);
    gap: clamp(48px, 7vw, 120px);
}

.arteley-story-page--hub .arteley-story-page__aside h2 {
    max-width: 640px;
    font-size: clamp(44px, 4vw, 68px);
    line-height: 0.92;
    text-wrap: balance;
}

.arteley-protected-content {
    max-width: 820px;
    padding: clamp(32px, 5vw, 66px);
    border-top: 4px solid var(--arteley-orange);
    background: var(--arteley-paper);
}

.arteley-protected-content .arteley-eyebrow {
    margin-bottom: 18px;
}

.arteley-story-page__content .arteley-protected-content h3 {
    max-width: 620px;
    margin: 0 0 24px;
    font-size: clamp(48px, 5.2vw, 78px);
}

.arteley-protected-content > p:not(.arteley-eyebrow) {
    max-width: 630px;
    margin-bottom: 0;
    color: #4b4944;
    font-size: clamp(17px, 1.5vw, 21px);
}

.arteley-password-form {
    margin-top: clamp(34px, 5vw, 58px);
    padding-top: 28px;
    border-top: 1px solid var(--arteley-line);
}

.arteley-password-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.arteley-password-form > div {
    display: flex;
    gap: 10px;
}

.arteley-password-form input {
    min-width: 0;
    min-height: 58px;
    flex: 1;
    padding: 0 16px;
    border: 1px solid #85827a;
    border-radius: 0;
    color: var(--arteley-ink);
    background: var(--arteley-white);
    outline: 0;
}

.arteley-password-form input:focus {
    border-color: var(--arteley-orange);
    box-shadow: 0 0 0 2px var(--arteley-orange);
}

body.arteley-home-body .arteley-password-form button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-width: 164px;
    min-height: 58px;
    padding: 0 18px;
    border: 0;
    color: var(--arteley-white);
    background: var(--arteley-ink);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease;
}

body.arteley-home-body .arteley-password-form button:hover,
body.arteley-home-body .arteley-password-form button:focus-visible {
    color: var(--arteley-ink);
    background: var(--arteley-orange);
}

.arteley-article-page {
    padding: clamp(130px, 13vw, 210px) var(--arteley-gutter) var(--arteley-section-space);
}

.arteley-article-page__header,
.arteley-article-page__body {
    width: min(100%, 1120px);
    margin: 0 auto;
}

.arteley-article-page__header > a {
    display: inline-block;
    margin-bottom: 70px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--arteley-ink);
    font-weight: 700;
}

.arteley-article-page__meta {
    display: flex;
    gap: 28px;
    margin-bottom: 24px;
    color: var(--arteley-orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.arteley-article-page h1 {
    margin: 0 0 clamp(70px, 9vw, 130px);
    font-family: "Arteley Akzidenz Condensed", "Arial Narrow", sans-serif;
    font-size: clamp(68px, 9vw, 144px);
    letter-spacing: -0.04em;
    line-height: 0.82;
    text-transform: uppercase;
}

/* Consentimiento propio del tema: sin dependencias ni plugins. */
.arteley-cookie-consent {
    position: fixed;
    z-index: 1200;
    right: 18px;
    bottom: 18px;
    width: min(430px, calc(100vw - 36px));
    max-height: calc(100svh - 36px);
    padding: 20px;
    overflow-x: hidden;
    overflow-y: auto;
    color: var(--arteley-ink);
    border: 1px solid #c9c7bf;
    border-top: 3px solid var(--arteley-orange);
    background: rgba(247, 246, 242, 0.98);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.arteley-cookie-consent[hidden] {
    display: none !important;
}

.arteley-cookie-consent.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.arteley-cookie-consent__eyebrow {
    margin: 0 0 5px !important;
    color: #b84900 !important;
    font-size: 10px !important;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.arteley-cookie-consent h2 {
    margin: 0 0 12px;
    font-family: "Arteley Akzidenz Condensed", "Arial Narrow", sans-serif;
    font-size: 27px;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.arteley-cookie-consent p {
    margin: 0;
    color: #4b4944;
    font-size: 12px;
    line-height: 1.5;
}

.arteley-cookie-consent > div > a,
.arteley-cookie-consent > form > a {
    display: inline-block;
    margin-top: 12px;
    color: #914000;
    font-size: 11px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.arteley-cookie-consent__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 17px;
}

body.arteley-home-body .arteley-cookie-consent__actions button {
    min-width: 0;
    min-height: 42px;
    padding: 8px 6px;
    color: var(--arteley-ink);
    border: 1px solid #8f8c84;
    border-radius: 0;
    background: transparent;
    font: inherit;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

body.arteley-home-body .arteley-cookie-consent__actions button.is-primary {
    color: var(--arteley-white);
    border-color: var(--arteley-ink);
    background: var(--arteley-ink);
}

body.arteley-home-body .arteley-cookie-consent__actions button:hover,
body.arteley-home-body .arteley-cookie-consent__actions button:focus-visible {
    color: var(--arteley-ink);
    border-color: var(--arteley-orange);
    background: var(--arteley-orange);
}

.arteley-cookie-consent__categories {
    display: grid;
    gap: 7px;
    margin-top: 16px;
}

.arteley-cookie-consent__category {
    position: relative;
    display: flex;
    min-height: 55px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 10px;
    color: var(--arteley-ink);
    border: 1px solid #d5d2ca;
    background: #fff;
    cursor: pointer;
}

.arteley-cookie-consent__category span {
    display: grid;
    gap: 2px;
}

.arteley-cookie-consent__category strong {
    font-size: 12px;
}

.arteley-cookie-consent__category small {
    color: #5c5953;
    font-size: 10px;
    line-height: 1.25;
}

.arteley-cookie-consent__category em {
    flex: 0 0 auto;
    color: #b84900;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
}

.arteley-cookie-consent__category input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.arteley-cookie-consent__category i {
    position: relative;
    flex: 0 0 auto;
    width: 38px;
    height: 22px;
    border: 1px solid #75726b;
    background: #e4e2dc;
    transition: background 160ms ease, border-color 160ms ease;
}

.arteley-cookie-consent__category i::after {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    content: "";
    transition: transform 160ms ease;
}

.arteley-cookie-consent__category input:checked + i {
    border-color: #b84900;
    background: var(--arteley-orange);
}

.arteley-cookie-consent__category input:checked + i::after {
    transform: translateX(16px);
}

.arteley-cookie-consent__category input:focus-visible + i {
    outline: 2px solid var(--arteley-orange);
    outline-offset: 3px;
}

@media (max-height: 460px) {
    .arteley-cookie-consent {
        right: 10px;
        bottom: 10px;
        max-height: calc(100svh - 20px);
        padding: 15px;
    }
}

@keyframes arteley-header-enter {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes arteley-media-enter {
    from {
        filter: grayscale(1) contrast(0.9);
    }
    to {
        filter: grayscale(0) contrast(1);
    }
}

@keyframes arteley-detail-open {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes arteley-frame-breathe {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(-7px, -7px, 0);
    }
}

.arteley-js .arteley-header__inner {
    animation: arteley-header-enter 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.arteley-js .arteley-hero__slide:first-child img,
.arteley-js .arteley-page-hero__visual img {
    animation: arteley-media-enter 1100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.arteley-js .arteley-hero__copy .arteley-reveal:nth-child(2),
.arteley-js .arteley-page-hero__copy .arteley-reveal:nth-child(2) {
    transition-delay: 90ms;
}

.arteley-js .arteley-hero__copy .arteley-reveal:nth-child(3),
.arteley-js .arteley-page-hero__copy .arteley-reveal:nth-child(3) {
    transition-delay: 180ms;
}

.arteley-hero__frame,
.arteley-page-hero__visual > span {
    animation: arteley-frame-breathe 7s ease-in-out 1.2s infinite;
}

.arteley-purpose__image,
.arteley-firm__portrait,
.arteley-profile__portrait,
.arteley-page-hero__visual {
    overflow: hidden;
}

.arteley-purpose__image img,
.arteley-firm__portrait img,
.arteley-profile__portrait img,
.arteley-motion-image img,
.arteley-contact-cta > picture img {
    transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
}

.arteley-purpose__image:hover img,
.arteley-firm__portrait:hover img,
.arteley-profile__portrait:hover img,
.arteley-motion-image:hover img,
.arteley-contact-cta:hover > picture img {
    transform: scale(1.025);
}

.arteley-sector__title,
.arteley-practice__title {
    transition: color 200ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.arteley-sector summary:hover .arteley-sector__title,
.arteley-sector summary:focus-visible .arteley-sector__title,
.arteley-practice summary:hover .arteley-practice__title,
.arteley-practice summary:focus-visible .arteley-practice__title {
    color: var(--arteley-orange);
    transform: translateX(8px);
}

.arteley-sector[open] .arteley-sector__body,
.arteley-practice[open] .arteley-practice__content,
.arteley-career[open] > div,
.arteley-privacy-summary[open] > div {
    animation: arteley-detail-open 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.arteley-contact-trigger span,
.arteley-page-cta button,
.arteley-inline-action {
    transition: transform 220ms ease, color 180ms ease, background 180ms ease;
}

.arteley-contact-trigger:hover span,
.arteley-contact-trigger:focus-visible span {
    transform: translate(4px, -4px);
}

.arteley-page-cta button:hover,
.arteley-page-cta button:focus-visible,
.arteley-inline-action:hover,
.arteley-inline-action:focus-visible {
    transform: translateY(-3px);
}

.arteley-reveal {
    opacity: 1;
    transform: none;
}

.arteley-js .arteley-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.arteley-js .arteley-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

body.arteley-home-body :focus-visible {
    outline: 3px solid var(--arteley-orange);
    outline-offset: 4px;
}

body.arteley-home-body .arteley-form-field input:focus-visible {
    outline: 0;
}

.arteley-form-field > span {
    transition: color 180ms ease;
}

.arteley-form-field:focus-within > span {
    color: var(--arteley-orange);
}

@media (max-width: 1360px) {
    .arteley-purpose__grid,
    .arteley-firm,
    .arteley-profile {
        gap: clamp(48px, 6vw, 76px);
    }

    .arteley-purpose__image img,
    .arteley-firm__portrait img,
    .arteley-profile__portrait img {
        aspect-ratio: 3 / 2;
    }

    .arteley-purpose__image img {
        object-position: center 38%;
    }

    .arteley-firm__portrait img,
    .arteley-profile__portrait img {
        object-position: center 30%;
    }
}

@media (max-width: 1240px) {
    :root {
        --arteley-header-height: 84px;
    }

    .arteley-logo {
        width: 62px;
        height: 62px;
    }

    .arteley-footer__top {
        grid-template-columns: 62px minmax(0, 1fr);
    }

    .arteley-footer__brand {
        width: 62px;
    }

    .arteley-nav {
        padding: 0 18px;
    }

    .arteley-nav__primary {
        gap: 24px;
    }

    .arteley-nav a {
        font-size: 13px;
    }

    .arteley-contact-trigger--header {
        gap: 18px;
        padding: 0 15px;
    }

    .arteley-hero {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
    }

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

@media (max-width: 1080px) {
    :root {
        --arteley-section-space: clamp(92px, 11vw, 130px);
    }

    .arteley-header__inner {
        grid-template-columns: auto 1fr;
    }

    .arteley-header {
        background: #fff;
        backdrop-filter: none;
    }

    .arteley-header.is-compact {
        min-height: var(--arteley-header-height);
    }

    .arteley-header-actions {
        justify-self: end;
    }

    .arteley-menu-toggle {
        position: relative;
        z-index: 3;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        min-height: 46px;
    }

    .arteley-menu-toggle__label {
        font-size: 13px;
        font-weight: 700;
    }

    .arteley-menu-toggle__icon {
        display: grid;
        gap: 6px;
        width: 28px;
    }

    .arteley-menu-toggle__icon i {
        display: block;
        height: 2px;
        background: currentColor;
        transition: transform 220ms ease;
    }

    .arteley-menu-toggle[aria-expanded="true"] .arteley-menu-toggle__icon i:first-child {
        transform: translateY(4px) rotate(45deg);
    }

    .arteley-menu-toggle[aria-expanded="true"] .arteley-menu-toggle__icon i:last-child {
        transform: translateY(-4px) rotate(-45deg);
    }

    .arteley-nav {
        position: fixed;
        inset: var(--arteley-header-height) 0 auto;
        left: 50%;
        right: auto;
        z-index: 2;
        display: block;
        width: 100vw;
        height: calc(100dvh - var(--arteley-header-height));
        min-height: calc(100svh - var(--arteley-header-height));
        margin-left: -50vw;
        padding: 0;
        color: var(--arteley-white);
        background: var(--arteley-ink);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-18px);
        transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
    }

    .arteley-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    body.menu-open .arteley-cookie-consent {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .arteley-nav__inner {
        display: grid;
        grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
        column-gap: clamp(48px, 9vw, 110px);
        align-content: center;
        width: min(100%, 1440px);
        height: 100%;
        margin: 0 auto;
        padding: clamp(38px, 6vh, 76px) var(--arteley-gutter);
        overflow-y: auto;
    }

    .arteley-nav__label {
        display: block;
        grid-column: 1 / -1;
        margin: 0 0 22px;
        color: var(--arteley-orange);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    .arteley-nav__primary {
        display: grid;
        align-self: start;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.38);
    }

    .arteley-nav__primary li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.26);
    }

    .arteley-nav__primary a {
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 16px;
        align-items: baseline;
        padding: clamp(16px, 2.4vh, 25px) 0;
        font-family: "Arteley Akzidenz Condensed", "Arial Narrow", sans-serif;
        font-size: clamp(40px, 5.8vw, 68px);
        font-weight: 700;
        letter-spacing: -0.025em;
        line-height: 0.9;
        text-transform: uppercase;
    }

    .arteley-nav__primary a span {
        display: block;
        color: var(--arteley-orange);
        font-family: "Arteley Akzidenz", Arial, sans-serif;
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .arteley-nav__primary a::after,
    .arteley-nav__secondary a::after {
        display: none;
    }

    .arteley-nav__secondary {
        display: grid;
        align-content: end;
        align-self: stretch;
        gap: 0;
    }

    .arteley-nav__secondary a,
    .arteley-nav__secondary button {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 16px 0;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.28);
        color: inherit;
        background: transparent;
        font: inherit;
        font-size: 16px;
        text-align: left;
        cursor: pointer;
    }

    .arteley-nav__secondary button {
        margin-top: 22px;
        padding: 18px;
        color: var(--arteley-ink);
        background: var(--arteley-orange);
        font-weight: 700;
    }

    .arteley-section__heading--split,
    .arteley-practices__intro,
    .arteley-firm {
        grid-template-columns: 1fr;
    }

    .arteley-section__heading--split,
    .arteley-practices__intro {
        gap: clamp(58px, 8vw, 86px);
        align-items: start;
    }

    .arteley-practices__intro .arteley-section__heading {
        padding-right: 0;
    }

    .arteley-practices__intro .arteley-section__heading h2 {
        max-width: 680px;
        font-size: clamp(58px, 8.6vw, 88px);
        line-height: 0.92;
    }

    .arteley-practices__lead {
        max-width: 820px;
    }

    .arteley-firm__portrait {
        position: static;
        width: min(100%, 900px);
    }

    .arteley-firm__portrait img {
        aspect-ratio: 16 / 10;
        object-position: center 32%;
    }

    .arteley-page-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .arteley-page-hero__copy {
        min-height: 540px;
    }

    .arteley-page-hero h1 {
        font-size: clamp(76px, 10vw, 108px);
    }

    .arteley-page-hero h1.arteley-page-hero__title--long {
        font-size: clamp(68px, 9vw, 98px);
    }

    .arteley-page-hero h1.arteley-page-hero__title--extended {
        font-size: clamp(62px, 8.3vw, 90px);
    }

    .arteley-page-hero__title--long + .arteley-page-hero__lead,
    .arteley-page-hero__title--extended + .arteley-page-hero__lead {
        max-width: 680px;
        font-size: clamp(20px, 2.5vw, 26px);
    }

    .arteley-page-hero__visual {
        min-height: 0;
        height: auto;
        aspect-ratio: 16 / 9;
        max-height: 680px;
    }

    .arteley-page-hero__visual img {
        object-position: center;
    }

    .arteley-services-page__intro,
    .arteley-journal__intro {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .arteley-services-page__intro .arteley-eyebrow,
    .arteley-services-page__intro h2,
    .arteley-services-page__intro > p:not(.arteley-eyebrow) {
        grid-column: 1;
        grid-row: auto;
    }

    .arteley-services-page__intro h2 {
        margin-top: 0;
    }

    .arteley-article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .arteley-footer__top {
        gap: 40px 54px;
    }

    .arteley-footer__body {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 52px 64px;
    }
}

@media (max-width: 980px) {
    .arteley-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .arteley-hero__copy {
        justify-content: flex-start;
        min-height: 0;
        padding-top: clamp(52px, 7vw, 68px);
        padding-bottom: clamp(68px, 9vw, 88px);
    }

    .arteley-hero__visual {
        min-height: 0;
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .arteley-hero__visual img {
        object-position: center;
    }

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

@media (max-width: 900px) {
    .arteley-contact-trigger--header,
    .arteley-language {
        display: none;
    }

    .arteley-purpose__grid,
    .arteley-profile,
    .arteley-contact-page,
    .arteley-legal-page,
    .arteley-story-page {
        grid-template-columns: 1fr;
    }

    .arteley-page-hero__copy {
        min-height: 0;
        padding-top: clamp(44px, 6vw, 58px);
        padding-bottom: clamp(58px, 8vw, 72px);
    }

    .arteley-purpose__image,
    .arteley-profile__portrait {
        width: min(calc(100% - 28px), 820px);
    }

    .arteley-purpose__image {
        position: relative;
        top: auto;
    }

    .arteley-purpose__image img,
    .arteley-profile__portrait img {
        aspect-ratio: 16 / 9;
    }

    .arteley-purpose__image img {
        object-position: center 38%;
    }

    .arteley-profile__portrait img {
        object-position: center 30%;
    }

    .arteley-profile__portrait,
    .arteley-contact-page__intro,
    .arteley-legal-page__aside,
    .arteley-story-page__aside {
        position: static;
    }

    .arteley-page-cta {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .arteley-story-page--hub {
        grid-template-columns: 1fr;
    }

    .arteley-page-cta--hub h2 {
        max-width: 900px;
        font-size: clamp(44px, 7vw, 64px);
    }

    .arteley-page-cta button {
        width: min(100%, 360px);
    }

    .arteley-motion-image {
        height: auto;
        aspect-ratio: 16 / 9;
        max-height: 760px;
    }

    .arteley-motion-image img {
        object-position: center;
    }

    .arteley-contact-cta > picture img {
        object-position: center;
    }
}

@media (max-width: 760px) {
    :root {
        --arteley-header-height: 76px;
        --arteley-gutter: 20px;
        --arteley-section-space: 88px;
    }

    body.arteley-home-body {
        font-size: 16px;
        overflow-wrap: anywhere;
    }

    .arteley-header {
        min-height: var(--arteley-header-height);
    }

    .arteley-header__inner {
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .arteley-logo {
        width: 56px;
        height: 56px;
    }

    .arteley-contact-trigger--header,
    .arteley-language {
        display: none;
    }

    .arteley-nav__inner {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
        padding: clamp(32px, 5vh, 52px) 24px 28px;
    }

    .arteley-nav__label {
        margin-bottom: 14px;
    }

    .arteley-nav__primary a {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 10px;
        padding: 12px 0;
        font-size: clamp(32px, 8.5vw, 42px);
        line-height: 0.94;
        white-space: normal;
    }

    .arteley-nav__secondary {
        margin-top: 18px;
    }

    .arteley-nav__secondary a,
    .arteley-nav__secondary button {
        padding-top: 12px;
        padding-bottom: 12px;
        font-size: 14px;
    }

    .arteley-nav__secondary button {
        margin-top: 12px;
        padding: 15px;
    }

    .arteley-hero__copy {
        min-height: 0;
        padding-top: 34px;
        padding-bottom: 54px;
    }

    .arteley-hero h1 {
        margin-bottom: 42px;
        font-size: clamp(58px, 18vw, 82px);
        line-height: 0.81;
    }

    .arteley-hero h1 small {
        margin-top: 28px;
        font-size: 19px;
        line-height: 1.22;
    }

    .arteley-hero__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
    }

    .arteley-arrow-link,
    .arteley-text-button {
        width: 100%;
    }

    .arteley-hero__visual {
        min-height: 0;
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .arteley-hero__frame {
        right: 20px;
        bottom: 24px;
        width: 92px;
        border-width: 9px;
    }

    .arteley-section__heading {
        margin-bottom: 54px;
    }

    .arteley-section h2,
    .arteley-contact-cta h2,
    .arteley-contact-panel h2 {
        font-size: clamp(55px, 17vw, 78px);
    }

    .arteley-purpose__grid {
        gap: 58px;
    }

    .arteley-purpose__image {
        width: calc(100% - 18px);
    }

    .arteley-purpose__image img {
        aspect-ratio: 16 / 10;
        object-position: center 38%;
    }

    .arteley-purpose__image > span {
        right: 12px;
        bottom: 12px;
    }

    .arteley-purpose__copy {
        padding-top: 0;
    }

    .arteley-purpose__copy p {
        font-size: 18px;
    }

    .arteley-purpose__copy .arteley-purpose__lead {
        margin-bottom: 38px;
        font-size: 28px;
    }

    .arteley-section__heading--split,
    .arteley-practices__intro {
        gap: 54px;
    }

    .arteley-practices__intro {
        margin-bottom: 86px;
    }

    .arteley-practices__intro .arteley-section__heading h2 {
        max-width: 520px;
        font-size: clamp(50px, 13.5vw, 64px);
        letter-spacing: -0.02em;
        line-height: 0.94;
    }

    .arteley-sector summary,
    .arteley-sector__body {
        grid-template-columns: 34px minmax(0, 1fr) 28px;
        gap: 10px;
    }

    .arteley-sector__title {
        font-size: 32px;
    }

    .arteley-sector__body p {
        grid-column: 2 / -1;
        font-size: 17px;
    }

    .arteley-motion-image {
        max-height: none;
    }

    .arteley-motion-image figcaption {
        font-size: clamp(38px, 12vw, 52px);
    }

    .arteley-practice summary {
        grid-template-columns: 42px minmax(0, 1fr) 36px;
        gap: 10px;
        min-height: 118px;
        padding: 18px 0;
    }

    .arteley-practice__number {
        font-size: 28px;
    }

    .arteley-practice__title {
        font-size: 31px;
    }

    .arteley-practice__toggle {
        width: 34px;
    }

    .arteley-practice__content {
        margin-left: 52px;
    }

    .arteley-practice__content p,
    .arteley-practice__content li {
        font-size: 16px;
    }

    .arteley-firm {
        gap: 48px;
    }

    .arteley-firm blockquote,
    .arteley-profile blockquote {
        padding-left: 0;
        font-size: 25px;
    }

    .arteley-firm blockquote::before,
    .arteley-profile blockquote::before {
        left: -16px;
        width: 5px;
    }

    .arteley-contact-cta,
    .arteley-contact-cta__content {
        min-height: 680px;
    }

    .arteley-contact-cta::after {
        background: rgba(0, 0, 0, 0.68);
    }

    .arteley-page-hero__copy {
        min-height: 0;
        padding-top: 34px;
        padding-bottom: 54px;
    }

    .arteley-page-hero h1 {
        margin-bottom: 34px;
        font-size: clamp(61px, 18vw, 88px);
    }

    .arteley-page-hero h1.arteley-page-hero__title--long {
        font-size: clamp(54px, 15vw, 78px);
    }

    .arteley-page-hero h1.arteley-page-hero__title--extended {
        font-size: clamp(48px, 13.3vw, 68px);
    }

    .arteley-page-hero__lead {
        font-size: 20px;
    }

    .arteley-page-hero__title--long + .arteley-page-hero__lead,
    .arteley-page-hero__title--extended + .arteley-page-hero__lead {
        max-width: 560px;
        font-size: 18px;
        line-height: 1.35;
    }

    .arteley-page-hero__visual {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .arteley-profile,
    .arteley-contact-page,
    .arteley-legal-page,
    .arteley-story-page {
        gap: 58px;
    }

    .arteley-profile__portrait {
        width: calc(100% - 18px);
    }

    .arteley-profile__portrait img,
    .arteley-firm__portrait img {
        aspect-ratio: 16 / 10;
        object-position: center 28%;
    }

    .arteley-profile__content h2,
    .arteley-services-page__intro h2,
    .arteley-journal__intro h2,
    .arteley-contact-page__intro h2,
    .arteley-story-page__aside h2 {
        font-size: clamp(48px, 14vw, 68px);
    }

    .arteley-services-page__intro {
        margin-bottom: 90px;
    }

    .arteley-page-cta {
        gap: 34px;
    }

    .arteley-page-cta h2 {
        font-size: clamp(50px, 15vw, 72px);
    }

    .arteley-page-cta--hub h2 {
        max-width: 620px;
        font-size: clamp(40px, 10.5vw, 56px);
        line-height: 0.94;
    }

    .arteley-article-grid {
        grid-template-columns: 1fr;
    }

    .arteley-article-card > a {
        min-height: 350px;
    }

    .arteley-contact-page__form {
        padding: 30px 20px;
    }

    .arteley-contact-page__intro dl > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .arteley-protected-content {
        padding: 30px 20px;
    }

    .arteley-password-form > div {
        display: grid;
        grid-template-columns: 1fr;
    }

    body.arteley-home-body .arteley-password-form button {
        width: 100%;
    }

    .arteley-article-page {
        padding-top: 44px;
    }

    .arteley-article-page__header > a {
        margin-bottom: 50px;
    }

    .arteley-article-page h1 {
        font-size: clamp(54px, 16vw, 76px);
    }

    .arteley-footer {
        padding-top: 62px;
        padding-bottom: 28px;
    }

    .arteley-footer__top {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-bottom: 64px;
    }

    .arteley-footer__brand {
        width: 56px;
    }

    .arteley-footer__statement strong {
        font-size: clamp(42px, 13vw, 60px);
    }

    .arteley-footer__body {
        grid-template-columns: 1fr 1fr;
        gap: 48px 28px;
        padding: 58px 0;
    }

    .arteley-footer__location {
        grid-column: 1 / -1;
        padding-top: 10px;
    }

    .arteley-footer__language {
        margin-top: 8px;
    }

    .arteley-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .arteley-contact-panel {
        width: 100%;
    }

    .arteley-contact-panel__body {
        padding-right: 20px;
        padding-bottom: 56px;
        padding-left: 20px;
    }

    .arteley-cookie-consent {
        right: 12px;
        bottom: 12px;
        width: min(390px, calc(100vw - 24px));
        max-height: calc(100svh - 24px);
        padding: 16px;
    }

    .arteley-cookie-consent__actions {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .arteley-footer__body {
        grid-template-columns: 1fr;
    }

    .arteley-footer__location {
        grid-column: auto;
    }
}

@media (max-width: 390px) {
    .arteley-menu-toggle__label {
        display: none;
    }

    .arteley-page-hero h1 {
        font-size: clamp(52px, 15vw, 58px);
    }

    .arteley-page-hero h1.arteley-page-hero__title--long {
        font-size: clamp(48px, 13.5vw, 52px);
    }

    .arteley-page-hero h1.arteley-page-hero__title--extended {
        font-size: clamp(44px, 12.5vw, 48px);
    }

    .arteley-page-hero__title--long + .arteley-page-hero__lead,
    .arteley-page-hero__title--extended + .arteley-page-hero__lead {
        font-size: 17px;
    }

    .arteley-hero h1 {
        font-size: 56px;
    }

    .arteley-section h2,
    .arteley-contact-cta h2,
    .arteley-contact-panel h2 {
        font-size: 52px;
    }

    .arteley-sector__title,
    .arteley-practice__title {
        font-size: 28px;
    }

    .arteley-practice__content {
        margin-left: 0;
    }

    .arteley-nav__primary a {
        font-size: 32px;
    }
}

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

    .arteley-reveal,
    .arteley-contact-panel,
    .arteley-contact-layer__backdrop,
    .arteley-nav,
    .arteley-sector__toggle,
    .arteley-practice__toggle,
    .arteley-career summary span:last-child {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .arteley-header__inner,
    .arteley-hero__slide,
    .arteley-hero__slide img,
    .arteley-page-hero__visual img,
    .arteley-hero__frame,
    .arteley-page-hero__visual > span,
    .arteley-sector[open] .arteley-sector__body,
    .arteley-practice[open] .arteley-practice__content,
    .arteley-career[open] > div,
    .arteley-privacy-summary[open] > div {
        animation: none;
        transition: none;
    }
}
