/* ================================================================
   LEADING LAW — main.css v3
   Mobile-first responsive con breakpoint a 1280, 1024, 768, 480.
================================================================ */

/* ────────────────────────────────────────────────────────────────
   NAVIGATION
──────────────────────────────────────────────────────────────── */
.ll-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ll-border);
    height: var(--ll-nav-h);
    display: flex;
    align-items: center;
    padding: 0 var(--ll-gutter);
}

.ll-nav__logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }

.ll-nav__wordmark {
    font-family: var(--ll-serif);
    font-size: 20px;
    color: var(--ll-dark);
    letter-spacing: -0.01em;
    line-height: 1;
}

.ll-nav__links {
    display: flex;
    gap: 32px;
    margin-left: auto;
    margin-right: 28px;
    list-style: none;
    padding: 0;
}

.ll-nav__links .nav-link {
    font-family: var(--ll-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--ll-muted);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color var(--ll-ease);
}

.ll-nav__links .nav-link:hover,
.ll-nav__links .nav-item.is-active .nav-link { color: var(--ll-text); }

.ll-nav__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.ll-nav__lang {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--ll-muted);
    text-transform: uppercase;
    padding: 4px 8px;
}

.ll-nav__cta {
    background: var(--ll-blue);
    color: var(--ll-white) !important;
    font-family: var(--ll-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: var(--ll-radius);
    text-decoration: none;
    transition: background var(--ll-ease);
}

.ll-nav__cta:hover { background: var(--ll-blue-dark); }

.ll-nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 12px;
}

.ll-nav__burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--ll-text);
    transition: transform var(--ll-ease), opacity var(--ll-ease);
}

/* ────────────────────────────────────────────────────────────────
   HERO
──────────────────────────────────────────────────────────────── */
.ll-hero {
    min-height: 100vh;
    background: var(--ll-dark);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: calc(var(--ll-nav-h) + 32px) var(--ll-gutter) 64px;
    position: relative;
    overflow: hidden;
}

.ll-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(43, 93, 169, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.ll-hero__watermark {
    position: absolute;
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
    opacity: 0.035;
    pointer-events: none;
    width: 680px;
    max-width: 90vw;
}

.ll-hero__badge {
    position: absolute;
    top: calc(var(--ll-nav-h) + 36px);
    right: var(--ll-gutter);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.ll-hero__badge-year {
    font-family: var(--ll-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.ll-hero__badge-tag {
    font-family: var(--ll-sans);
    font-size: 11px;
    font-weight: 500;
    color: var(--ll-teal);
    border: 1px solid rgba(61, 122, 110, 0.5);
    padding: 5px 12px;
    border-radius: var(--ll-radius);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ll-hero__eyebrow {
    font-family: var(--ll-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ll-teal);
    margin-bottom: 24px;
    position: relative;
}

.ll-hero__title {
    font-family: var(--ll-serif);
    font-size: clamp(56px, 11vw, 144px);
    line-height: 0.94;
    color: var(--ll-white);
    letter-spacing: -0.03em;
    position: relative;
    margin-bottom: 48px;
    word-break: break-word;
}

.ll-hero__title-dim { color: rgba(255, 255, 255, 0.18); }

.ll-hero__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    gap: 48px;
}

.ll-hero__desc p {
    font-family: var(--ll-sans);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 440px;
    margin-bottom: 28px;
}

.ll-hero__ctas { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

.ll-hero__cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ll-white);
    color: var(--ll-dark);
    font-family: var(--ll-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: var(--ll-radius);
    text-decoration: none;
    transition: background var(--ll-ease);
}

.ll-hero__cta-primary:hover { background: #e8e8e4; }

.ll-hero__cta-ghost {
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--ll-sans);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.04em;
    padding: 14px 0;
    transition: color var(--ll-ease);
}

.ll-hero__cta-ghost:hover { color: white; }

.ll-hero__offices { text-align: right; flex-shrink: 0; }

.ll-hero__offices-label {
    font-family: var(--ll-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.22);
    margin-bottom: 12px;
}

.ll-hero__offices-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    list-style: none;
}

.ll-hero__offices-list li {
    font-family: var(--ll-sans);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 0.04em;
}

.ll-hero__scroll {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 56px;
}

.ll-hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3));
    animation: ll-scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes ll-scroll-pulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%      { opacity: 1;   transform: scaleY(1.25); }
}

/* ────────────────────────────────────────────────────────────────
   TICKER
──────────────────────────────────────────────────────────────── */
.ll-ticker {
    background: var(--ll-off-white);
    border-top: 1px solid var(--ll-border);
    border-bottom: 1px solid var(--ll-border);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

.ll-ticker::before, .ll-ticker::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.ll-ticker::before { left: 0;  background: linear-gradient(to right, var(--ll-off-white), transparent); }
.ll-ticker::after  { right: 0; background: linear-gradient(to left,  var(--ll-off-white), transparent); }

.ll-ticker__track {
    display: flex;
    white-space: nowrap;
    animation: ll-ticker 50s linear infinite;
}

.ll-ticker__track:hover { animation-play-state: paused; }

.ll-ticker__item {
    display: inline-flex;
    align-items: center;
    padding: 0 24px;
    font-family: var(--ll-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--ll-teal);
}

.ll-ticker__item::after {
    content: '·';
    color: rgba(61, 122, 110, 0.3);
    font-size: 20px;
    margin-left: 24px;
}

@keyframes ll-ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ────────────────────────────────────────────────────────────────
   STATS
──────────────────────────────────────────────────────────────── */
.ll-stats {
    padding: var(--ll-section) 0;
    background: var(--ll-white);
    border-bottom: 1px solid var(--ll-border);
}

.ll-stats__inner { padding: 0 var(--ll-gutter); }

.ll-stats__statement {
    margin-top: 52px;
    line-height: 1.05;
}

.ll-stats__num {
    font-family: var(--ll-serif);
    font-size: clamp(40px, 7vw, 96px);
    color: var(--ll-blue);
    letter-spacing: -0.03em;
}

.ll-stats__suffix {
    font-size: 0.45em;
    vertical-align: super;
    letter-spacing: 0;
}

.ll-stats__desc, .ll-stats__sep {
    font-family: var(--ll-serif);
    font-size: clamp(40px, 7vw, 96px);
    color: var(--ll-text);
    letter-spacing: -0.03em;
}

.ll-stats__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 56px;
    border-top: 1px solid var(--ll-border-mid);
}

.ll-stats__col {
    padding: 36px 32px 36px 0;
    border-right: 1px solid var(--ll-border-mid);
}

.ll-stats__col:last-child { border-right: none; }
.ll-stats__col + .ll-stats__col { padding-left: 32px; }

.ll-stats__col-num {
    font-family: var(--ll-serif);
    font-size: clamp(36px, 4vw, 52px);
    color: var(--ll-blue);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.ll-stats__col-label {
    font-family: var(--ll-sans);
    font-size: 14px;
    color: var(--ll-muted);
    line-height: 1.6;
    max-width: 220px;
}

/* ────────────────────────────────────────────────────────────────
   PROFESSIONALS HOME SCROLL
──────────────────────────────────────────────────────────────── */
.ll-professionals {
    padding: var(--ll-section) 0;
    background: var(--ll-off-white);
    overflow: hidden;
}

.ll-professionals__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 var(--ll-gutter);
    margin-bottom: 48px;
    gap: 24px;
}

.ll-professionals__title {
    font-family: var(--ll-serif);
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ll-text);
    margin-top: 16px;
}

.ll-professionals__scroll {
    display: flex;
    gap: 2px;
    padding: 0 var(--ll-gutter);
    overflow-x: auto;
    scrollbar-width: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.ll-professionals__scroll::-webkit-scrollbar { display: none; }
.ll-professionals__scroll.is-dragging { cursor: grabbing; }

.ll-professionals__empty {
    padding: 0 var(--ll-gutter);
    color: var(--ll-muted);
    font-size: 14px;
}

/* ────────────────────────────────────────────────────────────────
   PROF CARD (riutilizzata in più sezioni)
──────────────────────────────────────────────────────────────── */
.ll-prof-card {
    flex-shrink: 0;
    width: 252px;
    background: var(--ll-white);
    border: 1px solid var(--ll-border);
    overflow: hidden;
    transition: transform var(--ll-ease-slow);
}

.ll-prof-card:hover { transform: translateY(-4px); }

.ll-prof-card__link { display: block; text-decoration: none; color: inherit; }

.ll-prof-card__photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(145deg, #d8dde8 0%, #b8c1d0 100%);
    position: relative;
    overflow: hidden;
}

.ll-prof-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: url('#ll-duotone');
    transition: filter 0.45s var(--ll-ease);
}

.ll-prof-card__link:hover .ll-prof-card__photo img,
.ll-prof-card:hover .ll-prof-card__photo img {
    filter: none;
}

.ll-prof-card__initials {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-family: var(--ll-serif);
    font-size: 52px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: -0.05em;
}

.ll-prof-card__area-tag {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(14, 27, 46, 0.85);
    padding: 10px 14px;
    font-family: var(--ll-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--ll-teal);
}

.ll-prof-card__info { padding: 18px; }

.ll-prof-card__name {
    font-family: var(--ll-serif);
    font-size: 20px;
    color: var(--ll-text);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.ll-prof-card__role {
    font-family: var(--ll-sans);
    font-size: 12px;
    color: var(--ll-muted);
    margin-bottom: 10px;
}

.ll-prof-card__sede {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ll-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ll-gray);
}

.ll-prof-card__sede::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--ll-teal);
}

/* ────────────────────────────────────────────────────────────────
   PRACTICE AREAS HOME
──────────────────────────────────────────────────────────────── */
.ll-areas { padding: var(--ll-section) 0; background: var(--ll-white); }
.ll-areas__inner { padding: 0 var(--ll-gutter); }

.ll-areas__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    gap: 24px;
}

.ll-areas__title {
    font-family: var(--ll-serif);
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-top: 16px;
}

.ll-areas__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 56px;
}

.ll-areas__cat-label {
    font-family: var(--ll-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ll-teal);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(61, 122, 110, 0.2);
}

.ll-areas__cat-label a { color: inherit; text-decoration: none; transition: color var(--ll-ease); }
.ll-areas__cat-label a:hover { color: var(--ll-blue); }

.ll-areas__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--ll-border);
    text-decoration: none;
    transition: all var(--ll-ease);
}

.ll-areas__item:hover .ll-areas__item-name { color: var(--ll-blue); transform: translateX(4px); }
.ll-areas__item:hover .ll-areas__item-arrow { opacity: 1; color: var(--ll-blue); }

.ll-areas__item-name {
    font-family: var(--ll-sans);
    font-size: 14px;
    color: var(--ll-text);
    transition: all var(--ll-ease);
    line-height: 1.4;
}

.ll-areas__item-arrow {
    font-size: 16px;
    color: var(--ll-gray);
    opacity: 0;
    transition: all var(--ll-ease);
    margin-left: 8px;
    flex-shrink: 0;
}

/* ────────────────────────────────────────────────────────────────
   SEDI HOME
──────────────────────────────────────────────────────────────── */
.ll-sedi {
    background: var(--ll-dark);
    padding: var(--ll-section) var(--ll-gutter);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.ll-sedi::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 80% at 20% 50%, rgba(43, 93, 169, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.ll-sedi__eyebrow {
    font-family: var(--ll-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ll-teal);
    margin-bottom: 36px;
    position: relative;
}

.ll-sedi__title {
    font-family: var(--ll-serif);
    font-size: clamp(36px, 5vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ll-white);
    margin-bottom: 48px;
    position: relative;
}

.ll-sedi__list {
    list-style: none;
    position: relative;
}

.ll-sedi__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    cursor: pointer;
    transition: all var(--ll-ease);
}

.ll-sedi__item:first-child { border-top: 1px solid rgba(255, 255, 255, 0.07); }

.ll-sedi__item-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    text-decoration: none;
    color: inherit;
}

.ll-sedi__item:hover .ll-sedi__city,
.ll-sedi__item.is-active .ll-sedi__city { color: white; }

.ll-sedi__item:hover .ll-sedi__arrow,
.ll-sedi__item.is-active .ll-sedi__arrow { opacity: 1; }

.ll-sedi__city {
    font-family: var(--ll-serif);
    font-size: clamp(22px, 2.5vw, 30px);
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.42);
    transition: color var(--ll-ease);
}

.ll-sedi__item-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.ll-sedi__hq-badge {
    background: rgba(61, 122, 110, 0.2);
    color: var(--ll-teal);
    border: 1px solid rgba(61, 122, 110, 0.3);
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 1px;
    letter-spacing: 0.1em;
    font-family: var(--ll-sans);
}

.ll-sedi__meta-text {
    font-family: var(--ll-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}

.ll-sedi__arrow {
    color: rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: opacity var(--ll-ease);
    font-size: 18px;
}

.ll-sedi__frame {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: var(--ll-dark-mid);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ll-sedi__photo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.45s var(--ll-ease);
    will-change: opacity;
}

.ll-sedi__photo-img.is-visible {
    opacity: 1;
}

.ll-sedi__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ll-serif);
    font-size: clamp(48px, 6vw, 80px);
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: -0.05em;
    text-align: center;
    line-height: 1.1;
    opacity: 0;
    transition: opacity 0.45s var(--ll-ease);
}

.ll-sedi__placeholder.is-visible {
    opacity: 1;
}

.ll-sedi__frame-label {
    position: absolute;
    bottom: 24px; left: 24px; right: 24px;
    background: rgba(14, 27, 46, 0.92);
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ll-sedi__frame-city {
    font-family: var(--ll-serif);
    font-size: 22px;
    color: white;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.ll-sedi__frame-address {
    font-family: var(--ll-sans);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

/* ────────────────────────────────────────────────────────────────
   ABOUT
──────────────────────────────────────────────────────────────── */
.ll-about {
    padding: var(--ll-section) var(--ll-gutter);
    background: var(--ll-off-white);
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 96px;
    align-items: start;
}

.ll-about__title {
    font-family: var(--ll-serif);
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 16px 0 28px;
}

.ll-about__text {
    font-family: var(--ll-sans);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--ll-muted);
    margin-bottom: 22px;
}

.ll-about__sidebar { padding-top: 56px; }

.ll-about__index-rule { height: 1px; background: rgba(130, 133, 139, 0.2); }

.ll-about__index-inner {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px 0;
}

.ll-about__index-item:hover .ll-about__index-num { color: rgba(43, 93, 169, 0.5); }

.ll-about__index-num {
    font-family: var(--ll-serif);
    font-size: clamp(40px, 5vw, 56px);
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(43, 93, 169, 0.1);
    flex-shrink: 0;
    width: 64px;
    transition: color var(--ll-ease-slow);
}

.ll-about__index-body { padding-top: 6px; }

.ll-about__index-title {
    font-family: var(--ll-sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--ll-text);
    margin-bottom: 8px;
}

.ll-about__index-text {
    font-family: var(--ll-sans);
    font-size: 13px;
    color: var(--ll-muted);
    line-height: 1.65;
}

/* ────────────────────────────────────────────────────────────────
   CTA
──────────────────────────────────────────────────────────────── */
.ll-cta {
    background: var(--ll-blue);
    padding: 100px var(--ll-gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    overflow: hidden;
}

.ll-cta__eyebrow {
    font-family: var(--ll-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
}

.ll-cta__title {
    font-family: var(--ll-serif);
    font-size: clamp(28px, 4vw, 60px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ll-white);
    max-width: 480px;
}

.ll-cta__right { display: flex; flex-direction: column; align-items: flex-end; gap: 20px; flex-shrink: 0; }

.ll-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ll-white);
    color: var(--ll-blue);
    font-family: var(--ll-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 18px 32px;
    border-radius: var(--ll-radius);
    text-decoration: none;
    white-space: nowrap;
}

.ll-cta__btn:hover { background: #e8e8e4; }

.ll-cta__contacts { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }

.ll-cta__contact {
    font-family: var(--ll-sans);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color var(--ll-ease);
}

.ll-cta__contact:hover { color: white; }

/* ────────────────────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────────────────────── */
.ll-footer { background: var(--ll-dark); padding: 72px var(--ll-gutter) 36px; }

.ll-footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ll-footer__wordmark {
    font-family: var(--ll-serif);
    font-size: 22px;
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.ll-footer__claim {
    font-family: var(--ll-sans);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.32);
    max-width: 240px;
    margin-bottom: 28px;
}

.ll-footer__social { display: flex; gap: 10px; }

.ll-footer__social-link {
    width: 34px; height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--ll-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.32);
    font-size: 12px;
    font-family: var(--ll-sans);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--ll-ease);
}

.ll-footer__social-link:hover { background: rgba(255, 255, 255, 0.05); color: white; }

.ll-footer__col-title {
    font-family: var(--ll-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.22);
    margin-bottom: 22px;
}

.ll-footer__links { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.ll-footer__links a {
    font-family: var(--ll-sans);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.42);
    text-decoration: none;
    transition: color var(--ll-ease);
}

.ll-footer__links a:hover { color: white; }

.ll-footer__bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.ll-footer__copy, .ll-footer__credits {
    font-family: var(--ll-sans);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.ll-footer__copy a, .ll-footer__credits a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--ll-ease);
}

.ll-footer__copy a:hover, .ll-footer__credits a:hover {
    color: white;
}

.ll-footer__sep {
    color: rgba(255, 255, 255, 0.18);
    margin: 0 4px;
}

/* ════════════════════════════════════════════════════════════════
   ARCHIVE HERO (riutilizzato per /sedi-contatti/, /aree-di-attivita/, /professionisti/)
═══════════════════════════════════════════════════════════════ */
.ll-archive-hero {
    padding: calc(var(--ll-nav-h) + 80px) 0 64px;
    background: var(--ll-off-white);
    border-bottom: 1px solid var(--ll-border);
}

.ll-archive-hero__title {
    font-family: var(--ll-serif);
    font-size: clamp(36px, 6vw, 80px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin: 16px 0 24px;
}

.ll-archive-hero__desc {
    font-family: var(--ll-sans);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--ll-muted);
    max-width: 640px;
}

/* ════════════════════════════════════════════════════════════════
   SINGLE SEDE
═══════════════════════════════════════════════════════════════ */
.ll-sede-hero {
    position: relative;
    min-height: 60vh;
    padding: calc(var(--ll-nav-h) + 64px) var(--ll-gutter) 80px;
    background: var(--ll-dark);
    color: white;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.ll-sede-hero__photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.45;
}

.ll-sede-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,27,46,0.95) 0%, rgba(14,27,46,0.5) 60%, rgba(14,27,46,0.3) 100%);
}

.ll-sede-hero__inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; }

.ll-sede-hero__eyebrow {
    font-family: var(--ll-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
}

.ll-sede-hero__eyebrow a { color: inherit; text-decoration: none; transition: color var(--ll-ease); }
.ll-sede-hero__eyebrow a:hover { color: white; }

.ll-sede-hero__title {
    font-family: var(--ll-serif);
    font-size: clamp(48px, 7vw, 96px);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ll-sede-hero__hq-badge {
    font-family: var(--ll-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--ll-teal);
    background: rgba(61,122,110,0.2);
    border: 1px solid rgba(61,122,110,0.4);
    padding: 6px 12px;
    border-radius: 1px;
}

.ll-sede-hero__address {
    font-family: var(--ll-sans);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    max-width: 540px;
}

.ll-sede-hero__contacts {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.ll-sede-hero__contact {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.15);
    min-width: 140px;
    transition: border-color var(--ll-ease);
}

.ll-sede-hero__contact:hover { border-top-color: var(--ll-teal); }

.ll-sede-hero__contact-label {
    font-family: var(--ll-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.ll-sede-hero__contact-value {
    font-family: var(--ll-sans);
    font-size: 16px;
    font-weight: 400;
    color: white;
}

.ll-sede-content {
    padding: 80px var(--ll-gutter);
    max-width: 880px;
    margin: 0 auto;
}

/* ════════════════════════════════════════════════════════════════
   SINGLE AREA ATTIVITÀ
═══════════════════════════════════════════════════════════════ */
.ll-area-hero {
    padding: calc(var(--ll-nav-h) + 96px) 0 80px;
    background: var(--ll-off-white);
    border-bottom: 1px solid var(--ll-border);
}

.ll-area-hero__eyebrow {
    font-family: var(--ll-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ll-teal);
    margin-bottom: 28px;
}

.ll-area-hero__eyebrow a { color: inherit; text-decoration: none; }
.ll-area-hero__eyebrow a:hover { color: var(--ll-text); }

.ll-area-hero__title {
    font-family: var(--ll-serif);
    font-size: clamp(36px, 5.5vw, 80px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
}

.ll-area-hero__desc {
    font-family: var(--ll-sans);
    font-size: 19px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--ll-muted);
    max-width: 720px;
}

.ll-area-content {
    padding: 80px var(--ll-gutter);
    max-width: 880px;
    margin: 0 auto;
}

.ll-area-children {
    padding: 64px var(--ll-gutter);
    background: var(--ll-white);
}

.ll-area-children__title {
    font-family: var(--ll-serif);
    font-size: clamp(28px, 3.5vw, 44px);
    margin: 12px 0 40px;
}

.ll-area-children__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--ll-border);
    padding: 1px;
    border: 1px solid var(--ll-border);
}

.ll-area-children__card {
    background: var(--ll-white);
    padding: 32px 28px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: background var(--ll-ease);
    min-height: 200px;
}

.ll-area-children__card:hover { background: var(--ll-off-white); }
.ll-area-children__card:hover .ll-area-children__card-arrow { color: var(--ll-blue); gap: 14px; }

.ll-area-children__card-title {
    font-family: var(--ll-serif);
    font-size: 22px;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 12px;
}

.ll-area-children__card-desc {
    font-family: var(--ll-sans);
    font-size: 14px;
    color: var(--ll-muted);
    line-height: 1.6;
    margin-bottom: auto;
    padding-bottom: 16px;
}

.ll-area-children__card-arrow {
    font-family: var(--ll-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ll-muted);
    display: inline-flex;
    gap: 8px;
    transition: all var(--ll-ease);
}

/* ════════════════════════════════════════════════════════════════
   PROF LIST (lista professionisti collegati a sede/area)
═══════════════════════════════════════════════════════════════ */
.ll-prof-list {
    padding: var(--ll-section) 0;
    background: var(--ll-off-white);
}

.ll-prof-list__inner { padding: 0 var(--ll-gutter); max-width: 1440px; margin: 0 auto; }

.ll-prof-list__header { margin-bottom: 48px; max-width: 720px; }

.ll-prof-list__title {
    font-family: var(--ll-serif);
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 12px 0 16px;
}

.ll-prof-list__subtitle {
    font-family: var(--ll-sans);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--ll-muted);
}

.ll-prof-list__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.ll-prof-list__grid .ll-prof-card { width: auto; }

.ll-prof-list__empty {
    padding: 40px 0;
    color: var(--ll-muted);
    font-size: 14px;
}

/* ════════════════════════════════════════════════════════════════
   ARCHIVE SEDE — card grid
═══════════════════════════════════════════════════════════════ */
.ll-sedi-grid { padding: 80px var(--ll-gutter); }

.ll-sedi-grid__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1440px;
    margin: 0 auto;
}

.ll-sede-card {
    background: var(--ll-white);
    border: 1px solid var(--ll-border);
    overflow: hidden;
    transition: transform var(--ll-ease-slow), box-shadow var(--ll-ease-slow);
}

.ll-sede-card:hover { transform: translateY(-4px); box-shadow: var(--ll-shadow-lg); }

.ll-sede-card__link { display: flex; flex-direction: column; text-decoration: none; color: inherit; height: 100%; }

.ll-sede-card__photo {
    aspect-ratio: 3 / 2;
    background: linear-gradient(145deg, #d8dde8 0%, #b8c1d0 100%);
    position: relative;
    overflow: hidden;
}

.ll-sede-card__photo img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.ll-sede-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ll-serif);
    font-size: 40px;
    color: rgba(255,255,255,0.45);
    letter-spacing: -0.02em;
}

.ll-sede-card__hq {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(14,27,46,0.85);
    color: var(--ll-teal);
    font-family: var(--ll-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 1px;
}

.ll-sede-card__body { padding: 28px 24px; display: flex; flex-direction: column; flex: 1; }

.ll-sede-card__title {
    font-family: var(--ll-serif);
    font-size: 28px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 12px;
}

.ll-sede-card__address {
    font-family: var(--ll-sans);
    font-size: 14px;
    color: var(--ll-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.ll-sede-card__meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--ll-border);
}

.ll-sede-card__meta-item {
    font-family: var(--ll-sans);
    font-size: 12px;
    color: var(--ll-muted);
}

.ll-sede-card__arrow {
    font-family: var(--ll-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ll-blue);
    margin-top: auto;
}

/* ════════════════════════════════════════════════════════════════
   ARCHIVE AREE — indice editoriale numerato + accordion
═══════════════════════════════════════════════════════════════ */
.ll-aree-hero {
    padding: calc(var(--ll-nav-h) + 80px) 0 64px;
    background: var(--ll-off-white);
    border-bottom: 1px solid var(--ll-border);
}

.ll-aree-hero .ll-container {
    max-width: 960px;
}

.ll-aree-hero__title {
    font-family: var(--ll-serif);
    font-size: clamp(48px, 7vw, 96px);
    line-height: 1.0;
    letter-spacing: -0.025em;
    margin: 12px 0 24px;
}

.ll-aree-hero__desc {
    font-family: var(--ll-sans);
    font-size: 17px;
    font-weight: 300;
    color: var(--ll-muted);
    line-height: 1.7;
    max-width: 680px;
}

.ll-aree-index {
    padding: 0 var(--ll-gutter) 120px;
    max-width: 1280px;
    margin: 0 auto;
}

/* ─── Item ─── */
.ll-aree-item {
    border-bottom: 1px solid var(--ll-border);
}

.ll-aree-item:first-child {
    border-top: 1px solid var(--ll-border);
}

/* ─── Toggle (la riga clickabile) ─── */
.ll-aree-item__toggle {
    width: 100%;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 28px 0;
    display: grid;
    grid-template-columns: 64px 1fr 32px;
    align-items: baseline;
    gap: 24px;
    text-align: left;
    color: var(--ll-text);
    font: inherit;
    transition: color var(--ll-ease), padding var(--ll-ease);
}

.ll-aree-item__toggle:hover { color: var(--ll-blue); }
.ll-aree-item.is-open .ll-aree-item__toggle { color: var(--ll-blue); }

.ll-aree-item__num {
    font-family: var(--ll-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--ll-muted);
    font-variant-numeric: tabular-nums;
}

.ll-aree-item__title {
    font-family: var(--ll-serif);
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.1;
    letter-spacing: -0.015em;
}

/* Indicatore + / − */
.ll-aree-item__indicator {
    position: relative;
    width: 18px;
    height: 18px;
    display: inline-block;
    justify-self: end;
    margin-top: 12px;
    flex-shrink: 0;
}

.ll-aree-item__indicator-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 18px;
    height: 1.5px;
    background: currentColor;
    transition: transform var(--ll-ease);
}

.ll-aree-item__indicator-line--v {
    transform: rotate(90deg);
}

.ll-aree-item.is-open .ll-aree-item__indicator-line--v {
    transform: rotate(0deg);
}

/* ─── Detail expanded ─── */
.ll-aree-item__detail {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ll-aree-item.is-open .ll-aree-item__detail {
    max-height: 4000px; /* sufficiente per contenuti lunghi */
}

.ll-aree-item__detail-inner {
    padding: 8px 0 56px 88px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.ll-aree-item__intro {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ll-aree-item__desc {
    font-family: var(--ll-sans);
    font-size: 15px;
    line-height: 1.75;
    color: var(--ll-text);
}

.ll-aree-item__desc p { margin: 0 0 12px; }
.ll-aree-item__desc p:last-child { margin-bottom: 0; }

.ll-aree-item__desc-empty { color: var(--ll-muted); font-style: italic; }

.ll-aree-item__permalink a {
    font-family: var(--ll-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ll-blue);
    text-decoration: none;
    transition: opacity var(--ll-ease);
}

.ll-aree-item__permalink a:hover { opacity: 0.7; }

/* ─── Team grid (interno al detail) ─── */
.ll-aree-item__team .ll-section-label {
    margin-bottom: 20px;
}

.ll-aree-item__team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ll-aree-prof-card {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--ll-text);
    padding: 8px;
    border: 1px solid transparent;
    border-radius: var(--ll-radius);
    transition: all var(--ll-ease);
}

.ll-aree-prof-card:hover {
    border-color: var(--ll-border);
    background: var(--ll-off-white);
}

.ll-aree-prof-card__photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--ll-off-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ll-aree-prof-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: url('#ll-duotone');
    transition: filter 0.45s var(--ll-ease);
}

.ll-aree-prof-card:hover .ll-aree-prof-card__photo img {
    filter: none;
}

.ll-aree-prof-card__initials {
    font-family: var(--ll-serif);
    font-size: 18px;
    color: var(--ll-muted);
}

.ll-aree-prof-card__info { min-width: 0; flex: 1; }

.ll-aree-prof-card__name {
    font-family: var(--ll-serif);
    font-size: 16px;
    line-height: 1.2;
    margin: 0 0 2px;
    letter-spacing: -0.005em;
}

.ll-aree-prof-card__role {
    font-family: var(--ll-sans);
    font-size: 11px;
    color: var(--ll-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
    line-height: 1.3;
}

.ll-aree-prof-card__sede {
    font-family: var(--ll-sans);
    font-size: 11px;
    color: var(--ll-blue);
    margin: 2px 0 0;
    line-height: 1.3;
}

/* ════════════════════════════════════════════════════════════════
   SINGLE AREA — pagina dedicata stand-alone
═══════════════════════════════════════════════════════════════ */
.ll-area-single {
    padding: calc(var(--ll-nav-h) + 64px) 0 96px;
}

.ll-area-single__inner {
    max-width: 880px;
}

.ll-area-single__back {
    margin-bottom: 32px;
}

.ll-area-single__back a {
    font-family: var(--ll-sans);
    font-size: 12px;
    font-weight: 600;
    color: var(--ll-muted);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color var(--ll-ease);
}

.ll-area-single__back a:hover { color: var(--ll-blue); }

.ll-area-single__header { margin-bottom: 56px; }

.ll-area-single__title {
    font-family: var(--ll-serif);
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.ll-area-single__lead {
    font-family: var(--ll-sans);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--ll-muted);
    max-width: 720px;
}

.ll-area-single__body {
    font-family: var(--ll-sans);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 72px;
}

.ll-area-single__body p { margin: 0 0 16px; }
.ll-area-single__body p:last-child { margin-bottom: 0; }

.ll-area-single__children { margin-bottom: 72px; }

.ll-area-single__children-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--ll-border);
}

.ll-area-single__children-list li {
    border-bottom: 1px solid var(--ll-border);
}

.ll-area-single__children-list a {
    display: block;
    padding: 16px 0;
    font-family: var(--ll-serif);
    font-size: 20px;
    color: var(--ll-text);
    text-decoration: none;
    transition: color var(--ll-ease), padding-left var(--ll-ease);
}

.ll-area-single__children-list a:hover {
    color: var(--ll-blue);
    padding-left: 8px;
}

.ll-area-single__team {
    border-top: 1px solid var(--ll-border);
    padding-top: 56px;
}

.ll-area-single__team .ll-section-label { margin-bottom: 24px; }

/* Riusa la griglia .ll-aree-item__team-grid e .ll-aree-prof-card definite sopra */

/* ════════════════════════════════════════════════════════════════
   SINGLE PROFESSIONISTA
═══════════════════════════════════════════════════════════════ */
.ll-prof-single {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: calc(var(--ll-nav-h) + 60px) auto 80px;
    padding: 0 var(--ll-gutter);
}

.ll-prof-single__photo {
    position: sticky;
    top: calc(var(--ll-nav-h) + 24px);
    background: linear-gradient(145deg, #d8dde8 0%, #b8c1d0 100%);
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.ll-prof-single__photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
}

.ll-prof-single__initials {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-family: var(--ll-serif);
    font-size: 80px;
    color: rgba(255,255,255,0.4);
}

.ll-prof-single__name {
    font-family: var(--ll-serif);
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 8px;
}

.ll-prof-single__ruolo {
    font-family: var(--ll-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--ll-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.ll-prof-single__aree { margin-bottom: 32px; }
.ll-prof-single__aree-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

.ll-prof-single__area-tag {
    font-family: var(--ll-sans);
    font-size: 12px;
    font-weight: 500;
    color: var(--ll-teal);
    background: var(--ll-teal-light);
    border: 1px solid rgba(61, 122, 110, 0.2);
    padding: 6px 14px;
    border-radius: var(--ll-radius);
    text-decoration: none;
    transition: all var(--ll-ease);
}

.ll-prof-single__area-tag:hover { background: rgba(61, 122, 110, 0.22); }

/* Blocco Sede — stesso tag grafico ma in stile blu (distinto dal teal delle aree) */
.ll-prof-single__sede-block { margin-bottom: 48px; }

.ll-prof-single__sede-tag {
    font-family: var(--ll-sans);
    font-size: 12px;
    font-weight: 500;
    color: var(--ll-blue);
    background: rgba(43, 93, 169, 0.08);
    border: 1px solid rgba(43, 93, 169, 0.18);
    padding: 6px 14px;
    border-radius: var(--ll-radius);
    text-decoration: none;
    transition: all var(--ll-ease);
}

.ll-prof-single__sede-tag:hover { background: rgba(43, 93, 169, 0.16); }

.ll-prof-single__bio { margin-bottom: 48px; line-height: 1.8; }
.ll-prof-single__bio .ll-section-label { margin-bottom: 20px; }

/* Blocco Contatti — lista editoriale con riga separatrice */
.ll-prof-single__contatti { margin-bottom: 48px; }
.ll-prof-single__contatti .ll-section-label { margin-bottom: 8px; }

.ll-prof-single__contatti-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--ll-border, #e6e3dd);
}

.ll-prof-single__contatto-item { margin: 0; padding: 0; }

.ll-prof-single__contatto {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid var(--ll-border, #e6e3dd);
    text-decoration: none;
    color: var(--ll-text);
    font-family: var(--ll-sans);
    transition: color var(--ll-ease);
}

.ll-prof-single__contatto:hover { color: var(--ll-blue); }
.ll-prof-single__contatto:hover .ll-prof-single__contatto-arrow {
    transform: translateX(4px);
}

.ll-prof-single__contatto-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ll-muted);
    flex-shrink: 0;
    min-width: 90px;
}

.ll-prof-single__contatto-value {
    font-size: 15px;
    text-align: right;
    word-break: break-word;
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
}

.ll-prof-single__contatto-arrow {
    display: inline-block;
    transition: transform var(--ll-ease);
    color: var(--ll-muted);
}

/* ════════════════════════════════════════════════════════════════
   ARCHIVE PROFESSIONISTI (filtri)
═══════════════════════════════════════════════════════════════ */
.ll-archive { padding-bottom: 80px; }

.ll-prof-filters {
    display: flex;
    gap: 32px;
    align-items: flex-end;
    padding: 32px 0;
    margin: 48px 0;
    border-top: 1px solid var(--ll-border-mid);
    border-bottom: 1px solid var(--ll-border-mid);
    flex-wrap: wrap;
}

.ll-prof-filter { display: flex; flex-direction: column; gap: 6px; min-width: 220px; }

.ll-prof-filter > span {
    font-family: var(--ll-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ll-teal);
}

.ll-prof-filter select {
    font-family: var(--ll-sans);
    font-size: 14px;
    color: var(--ll-text);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--ll-border-mid);
    padding: 8px 28px 8px 0;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1L6 6L11 1' stroke='%23666' stroke-width='1.5'/></svg>");
    background-repeat: no-repeat;
    background-position: right 6px center;
}

.ll-prof-filter select:focus { outline: none; border-bottom-color: var(--ll-blue); }

.ll-prof-filter__reset {
    font-family: var(--ll-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ll-muted);
    text-decoration: underline;
    padding: 8px 0;
}

.ll-prof-filter__reset:hover { color: var(--ll-blue); }

.ll-prof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.ll-prof-grid .ll-prof-card { width: auto; }

.ll-archive__pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 8px;
    font-family: var(--ll-sans);
    font-size: 14px;
}

.ll-archive__pagination .page-numbers {
    padding: 10px 16px;
    background: var(--ll-off-white);
    color: var(--ll-text);
    text-decoration: none;
}

.ll-archive__pagination .page-numbers.current,
.ll-archive__pagination .page-numbers:hover {
    background: var(--ll-blue);
    color: var(--ll-white);
}

/* ════════════════════════════════════════════════════════════════
   NEWS — archivio (editoriale, coerente con /aree-di-attivita/)
═══════════════════════════════════════════════════════════════ */
.ll-news-hero {
    padding: calc(var(--ll-nav-h) + 80px) 0 64px;
    background: var(--ll-off-white);
    border-bottom: 1px solid var(--ll-border);
}

.ll-news-hero .ll-container { max-width: 960px; }

.ll-news-hero__title {
    font-family: var(--ll-serif);
    font-size: clamp(48px, 7vw, 96px);
    line-height: 1.0;
    letter-spacing: -0.025em;
    margin: 12px 0 24px;
}

.ll-news-hero__desc {
    font-family: var(--ll-sans);
    font-size: 17px;
    font-weight: 300;
    color: var(--ll-muted);
    line-height: 1.7;
    max-width: 680px;
}

.ll-news-list {
    padding: 0 var(--ll-gutter) 120px;
    max-width: 1280px;
    margin: 0 auto;
}

.ll-news-row {
    border-bottom: 1px solid var(--ll-border);
}

.ll-news-row:first-child {
    border-top: 1px solid var(--ll-border);
}

.ll-news-row__link {
    display: grid;
    grid-template-columns: 200px 1fr 40px;
    align-items: baseline;
    gap: 32px;
    padding: 28px 0;
    text-decoration: none;
    color: var(--ll-text);
    transition: color var(--ll-ease), padding-left var(--ll-ease);
}

.ll-news-row__link:hover {
    color: var(--ll-blue);
    padding-left: 8px;
}

.ll-news-row__meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: var(--ll-sans);
    font-size: 13px;
}

.ll-news-row__date {
    font-weight: 500;
    color: var(--ll-text);
    letter-spacing: 0.04em;
    font-variant-numeric: tabular-nums;
}

.ll-news-row__cat {
    color: var(--ll-teal);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ll-news-row__body { min-width: 0; }

.ll-news-row__title {
    font-family: var(--ll-serif);
    font-size: clamp(22px, 2.5vw, 32px);
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin: 0 0 12px;
}

.ll-news-row__excerpt {
    font-family: var(--ll-sans);
    font-size: 14px;
    line-height: 1.6;
    color: var(--ll-muted);
    margin: 0;
    max-width: 720px;
}

.ll-news-row__arrow {
    font-family: var(--ll-sans);
    font-size: 22px;
    color: var(--ll-muted);
    text-align: right;
    align-self: center;
    transition: transform var(--ll-ease), color var(--ll-ease);
}

.ll-news-row__link:hover .ll-news-row__arrow {
    color: var(--ll-blue);
    transform: translateX(6px);
}

/* Paginazione news */
.ll-news-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 8px;
    font-family: var(--ll-sans);
    font-size: 13px;
}

.ll-news-pagination .page-numbers {
    padding: 10px 16px;
    background: var(--ll-off-white);
    color: var(--ll-text);
    text-decoration: none;
    border-radius: var(--ll-radius);
    transition: all var(--ll-ease);
}

.ll-news-pagination .page-numbers.current,
.ll-news-pagination .page-numbers:hover {
    background: var(--ll-blue);
    color: var(--ll-white);
}

/* ════════════════════════════════════════════════════════════════
   NEWS — single post
═══════════════════════════════════════════════════════════════ */
.ll-news-single {
    padding: calc(var(--ll-nav-h) + 64px) 0 96px;
}

.ll-news-single__inner {
    max-width: 760px;
}

.ll-news-single__back {
    margin-bottom: 32px;
}

.ll-news-single__back a {
    font-family: var(--ll-sans);
    font-size: 12px;
    font-weight: 600;
    color: var(--ll-muted);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color var(--ll-ease);
}

.ll-news-single__back a:hover { color: var(--ll-blue); }

.ll-news-single__header { margin-bottom: 48px; }

.ll-news-single__meta {
    display: flex;
    gap: 16px;
    align-items: center;
    font-family: var(--ll-sans);
    font-size: 12px;
    color: var(--ll-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.ll-news-single__date { font-variant-numeric: tabular-nums; }

.ll-news-single__cat {
    color: var(--ll-teal);
    font-weight: 600;
}

.ll-news-single__title {
    font-family: var(--ll-serif);
    font-size: clamp(36px, 5.5vw, 64px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
}

.ll-news-single__lead {
    font-family: var(--ll-sans);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--ll-text);
    margin: 0;
}

.ll-news-single__thumb {
    margin: 0 0 48px;
    overflow: hidden;
}

.ll-news-single__thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.ll-news-single__body {
    font-family: var(--ll-sans);
    font-size: 16px;
    line-height: 1.75;
}

.ll-news-single__body p { margin: 0 0 20px; }
.ll-news-single__body p:last-child { margin-bottom: 0; }

.ll-news-single__body h2,
.ll-news-single__body h3 {
    font-family: var(--ll-serif);
    letter-spacing: -0.01em;
    line-height: 1.25;
    margin: 40px 0 16px;
}

.ll-news-single__body h2 { font-size: 28px; }
.ll-news-single__body h3 { font-size: 22px; }

.ll-news-single__body a {
    color: var(--ll-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ll-news-single__body blockquote {
    margin: 32px 0;
    padding: 16px 0 16px 24px;
    border-left: 3px solid var(--ll-blue);
    font-family: var(--ll-serif);
    font-size: 20px;
    line-height: 1.5;
    color: var(--ll-text);
    font-style: italic;
}

.ll-news-single__tags {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--ll-border);
}

.ll-news-single__tags-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ll-news-single__tags-list a {
    display: inline-block;
    padding: 6px 14px;
    background: var(--ll-teal-light);
    border: 1px solid rgba(61, 122, 110, 0.2);
    border-radius: var(--ll-radius);
    color: var(--ll-teal);
    font-family: var(--ll-sans);
    font-size: 12px;
    text-decoration: none;
    transition: background var(--ll-ease);
}

.ll-news-single__tags-list a:hover { background: rgba(61, 122, 110, 0.22); }

.ll-news-single__related {
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid var(--ll-border);
}

.ll-news-single__related-list {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ll-news-single__related-item {
    display: block;
    text-decoration: none;
    color: var(--ll-text);
    transition: color var(--ll-ease);
}

.ll-news-single__related-item:hover { color: var(--ll-blue); }

.ll-news-single__related-item time {
    font-family: var(--ll-sans);
    font-size: 11px;
    color: var(--ll-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    display: block;
}

.ll-news-single__related-item h3 {
    font-family: var(--ll-serif);
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   PAGE (Pagelayer, contenuti liberi)
═══════════════════════════════════════════════════════════════ */
.ll-page { margin-top: var(--ll-nav-h); padding: 80px 0; max-width: 880px; }
.ll-page__title { font-family: var(--ll-serif); font-size: clamp(36px, 5vw, 64px); letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 40px; }
.ll-page__content { line-height: 1.8; }
.ll-page__content h2 { font-size: 32px; margin: 48px 0 20px; }
.ll-page__content h3 { font-size: 22px; margin: 32px 0 14px; }
.ll-page__content p  { margin-bottom: 18px; color: var(--ll-muted); }
.ll-page__content a  { color: var(--ll-blue); text-decoration: underline; }
.ll-page__content ul, .ll-page__content ol { margin: 18px 0 18px 24px; color: var(--ll-muted); }

/* ════════════════════════════════════════════════════════════════
   CONTAINER
═══════════════════════════════════════════════════════════════ */
.ll-container { max-width: 1440px; margin: 0 auto; padding: 0 var(--ll-gutter); width: 100%; }

/* ════════════════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════════════ */
.ll-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.ll-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — Breakpoints mobile-first
═══════════════════════════════════════════════════════════════ */

/* TABLET LARGE — 1280px e sotto */
@media (max-width: 1280px) {
    .ll-areas__grid { grid-template-columns: repeat(2, 1fr); gap: 48px 48px; }
    .ll-prof-list__grid,
    .ll-prof-grid { grid-template-columns: repeat(3, 1fr); }
    .ll-sedi-grid__inner { grid-template-columns: repeat(2, 1fr); }
    .ll-area-children__grid { grid-template-columns: repeat(2, 1fr); }
}

/* TABLET — 1024px e sotto: nav burger attivo */
@media (max-width: 1024px) {
    :root {
        --ll-gutter: 28px;
        --ll-section: 96px;
    }

    /* Nav: nasconde links, mostra burger */
    .ll-nav__links { display: none; }
    .ll-nav__lang { display: none; }
    .ll-nav__burger { display: flex; margin-left: auto; }

    .ll-nav__links.is-open {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: var(--ll-nav-h);
        left: 0; right: 0;
        background: var(--ll-white);
        padding: 24px var(--ll-gutter) 32px;
        border-bottom: 1px solid var(--ll-border);
        gap: 20px;
        box-shadow: var(--ll-shadow-lg);
        margin: 0;
        z-index: 99;
    }

    .ll-nav__links.is-open .nav-link {
        font-size: 16px;
        padding: 8px 0;
    }

    /* Hero */
    .ll-hero__badge { display: none; }
    .ll-hero__bottom { flex-direction: column; align-items: flex-start; gap: 36px; }
    .ll-hero__offices { text-align: left; }
    .ll-hero__offices-list { align-items: flex-start; }

    /* Stats */
    .ll-stats__cols { grid-template-columns: 1fr 1fr; }
    .ll-stats__col:nth-child(2) { border-right: none; }
    .ll-stats__col:nth-child(3) { border-top: 1px solid var(--ll-border-mid); padding-left: 0; padding-top: 32px; margin-top: 0; grid-column: 1 / -1; }

    /* Sedi home: nascondi frame */
    .ll-sedi { grid-template-columns: 1fr; gap: 0; }
    .ll-sedi__right { display: none; }

    /* About */
    .ll-about { grid-template-columns: 1fr; gap: 56px; }
    .ll-about__sidebar { padding-top: 0; }

    /* Aree archive — tablet */
    .ll-aree-item__detail-inner { grid-template-columns: 1fr; gap: 40px; padding-left: 88px; }
    .ll-aree-item__team-grid { grid-template-columns: repeat(2, 1fr); }

    /* CTA */
    .ll-cta { flex-direction: column; align-items: flex-start; gap: 36px; }
    .ll-cta__right { align-items: flex-start; width: 100%; }
    .ll-cta__contacts { align-items: flex-start; }

    /* Footer */
    .ll-footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }

    /* Prof single */
    .ll-prof-single { grid-template-columns: 1fr; gap: 48px; }
    .ll-prof-single__photo { position: static; max-width: 320px; }

    /* Grids */
    .ll-prof-list__grid,
    .ll-prof-grid { grid-template-columns: repeat(2, 1fr); }

    /* Sede hero: meno alta */
    .ll-sede-hero { min-height: 48vh; padding: calc(var(--ll-nav-h) + 48px) var(--ll-gutter) 60px; }
    .ll-sede-hero__contacts { gap: 24px; }
}

/* MOBILE — 768px e sotto */
@media (max-width: 768px) {
    :root {
        --ll-gutter: 20px;
        --ll-section: 72px;
        --ll-nav-h: 60px;
    }

    body { font-size: 15px; }

    /* Hero */
    .ll-hero { padding-bottom: 48px; min-height: 88vh; }
    .ll-hero__watermark { opacity: 0.025; width: 480px; right: -160px; }
    .ll-hero__title { font-size: clamp(52px, 14vw, 84px); margin-bottom: 36px; }
    .ll-hero__desc p { font-size: 15px; max-width: 100%; }
    .ll-hero__ctas { gap: 12px; }
    .ll-hero__cta-primary { padding: 12px 22px; font-size: 12px; }
    .ll-hero__offices-list li { font-size: 12px; }
    .ll-hero__scroll { display: none; }

    /* Ticker */
    .ll-ticker { padding: 14px 0; }
    .ll-ticker__item { font-size: 11px; padding: 0 18px; }
    .ll-ticker__item::after { margin-left: 18px; font-size: 16px; }

    /* Stats */
    .ll-stats__num, .ll-stats__desc, .ll-stats__sep {
        font-size: clamp(36px, 9vw, 64px);
    }
    .ll-stats__cols { grid-template-columns: 1fr; margin-top: 40px; }
    .ll-stats__col { padding: 28px 0 !important; border-right: none !important; border-bottom: 1px solid var(--ll-border-mid); }
    .ll-stats__col:last-child { border-bottom: none; }
    .ll-stats__col + .ll-stats__col { padding-top: 28px !important; border-top: none; }

    /* Professionisti home */
    .ll-professionals__header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .ll-professionals__title br { display: none; }
    .ll-prof-card { width: 220px; }

    /* Areas */
    .ll-areas__header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .ll-areas__title br { display: none; }
    .ll-areas__grid { grid-template-columns: 1fr; gap: 40px; }

    /* Sedi home */
    .ll-sedi__title br { display: none; }
    .ll-sedi__item-link { flex-direction: column; align-items: flex-start; gap: 8px; padding: 18px 0; }
    .ll-sedi__item-meta { justify-content: flex-start; }

    /* About */
    .ll-about { padding-top: var(--ll-section); padding-bottom: var(--ll-section); }
    .ll-about__index-num { font-size: 40px; width: 52px; }
    .ll-about__text { font-size: 15px; line-height: 1.75; }

    /* CTA */
    .ll-cta { padding: 64px var(--ll-gutter); }
    .ll-cta__title { font-size: clamp(28px, 7vw, 40px); }
    .ll-cta__btn { padding: 16px 24px; font-size: 12px; }

    /* Footer */
    .ll-footer { padding: 60px var(--ll-gutter) 32px; }
    .ll-footer__top { grid-template-columns: 1fr; gap: 40px; }
    .ll-footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

    /* Archive hero */
    .ll-archive-hero { padding: calc(var(--ll-nav-h) + 56px) 0 48px; }
    .ll-archive-hero__desc { font-size: 16px; }

    /* Sede / Area single */
    .ll-sede-hero__contacts { gap: 16px; flex-direction: column; }
    .ll-sede-hero__contact { min-width: 0; width: 100%; }
    .ll-sede-content, .ll-area-content { padding: 56px var(--ll-gutter); }
    .ll-area-children { padding: 48px var(--ll-gutter); }
    .ll-area-children__grid { grid-template-columns: 1fr; }

    /* Aree archive — mobile */
    .ll-aree-hero { padding: calc(var(--ll-nav-h) + 56px) 0 48px; }
    .ll-aree-hero__title { font-size: clamp(40px, 11vw, 64px); }
    .ll-aree-item__toggle { grid-template-columns: 40px 1fr 24px; gap: 12px; padding: 20px 0; }
    .ll-aree-item__title { font-size: clamp(20px, 5vw, 28px); }
    .ll-aree-item__detail-inner { padding: 8px 0 40px 52px; grid-template-columns: 1fr; gap: 32px; }
    .ll-aree-item__team-grid { grid-template-columns: 1fr; }

    /* News archive + single — mobile */
    .ll-news-hero { padding: calc(var(--ll-nav-h) + 56px) 0 48px; }
    .ll-news-hero__title { font-size: clamp(40px, 11vw, 64px); }
    .ll-news-row__link { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
    .ll-news-row__link:hover { padding-left: 0; }
    .ll-news-row__arrow { display: none; }
    .ll-news-row__meta { flex-direction: row; gap: 12px; margin-bottom: 4px; }
    .ll-news-row__title { font-size: clamp(20px, 5vw, 28px); }
    .ll-news-single__related-list { grid-template-columns: 1fr; }

    /* Grids generiche */
    .ll-prof-list__grid,
    .ll-prof-grid,
    .ll-sedi-grid__inner { grid-template-columns: 1fr; }

    .ll-sedi-grid { padding: 56px var(--ll-gutter); }

    /* Prof filters */
    .ll-prof-filters { flex-direction: column; align-items: stretch; gap: 16px; padding: 24px 0; margin: 32px 0; }
    .ll-prof-filter { min-width: 0; }

    /* Prof single */
    .ll-prof-single { padding: 0 var(--ll-gutter); margin-top: calc(var(--ll-nav-h) + 32px); }
    .ll-prof-single__photo { max-width: 280px; }
    .ll-prof-single__contatto { flex-wrap: wrap; gap: 8px; padding: 14px 0; }
    .ll-prof-single__contatto-label { min-width: 0; }
    .ll-prof-single__contatto-value { text-align: left; flex: 1 1 100%; font-size: 14px; }
}

/* SMALL MOBILE — 480px e sotto */
@media (max-width: 480px) {
    :root { --ll-gutter: 16px; }

    .ll-hero__title { font-size: clamp(48px, 16vw, 72px); }
    .ll-stats__num, .ll-stats__desc, .ll-stats__sep { font-size: clamp(32px, 11vw, 52px); }

    .ll-sede-hero__title { font-size: clamp(40px, 11vw, 64px); }
    .ll-area-hero__title { font-size: clamp(32px, 9vw, 56px); }
    .ll-archive-hero__title { font-size: clamp(32px, 9vw, 56px); }

    .ll-nav__wordmark { font-size: 17px; }
    .ll-nav__cta { padding: 8px 14px; font-size: 11px; }

    .ll-prof-card { width: 200px; }
    .ll-prof-card__name { font-size: 18px; }
}
