/* ─── FONTS ────────────────────────────────────────────── */
@font-face {
    font-family: 'QuadrantText';
    src: url('assets/fonts/QuadrantText-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Unica77';
    src: url('assets/fonts/Unica77LL-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Unica77';
    src: url('assets/fonts/Unica77LL-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg:        #f9f9f3;
    --ink:       #1A1A18;
    --ink-muted: #888880;
    --ink-light: #C8C5BC;
    --rule:      rgba(26,26,24,0.12);
    --serif:     'QuadrantText', Georgia, serif;
    --sans:      'Unica77', 'Helvetica Neue', Arial, sans-serif;
    --pad:       28px;
}

html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── PLACEHOLDERS ─────────────────────────────────────── */
.ph {
    background: #E8E5DE;
    display: block;
    width: 100%;
}
.ph-landscape { aspect-ratio: 16/9; }
.ph-portrait  { aspect-ratio: 3/4; width: 100%; }
.ph-square    { aspect-ratio: 1/1; }
.ph-tall      { height: 80vh; }

/* ─── BUTTONS ──────────────────────────────────────────── */
/* ─── WHATSAPP FLOAT ────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 998;
    transition: opacity 0.2s;
    text-decoration: none;
}
.whatsapp-float:hover { opacity: 0.7; }
.whatsapp-float svg { width: 36px; height: 36px; display: block; fill: var(--ink); }

.btn-primary,
.btn-outline {
    display: inline-block;
    font-family: var(--sans);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.01em;
    padding: 13px 26px;
    border-radius: 50px;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
}
.btn-primary {
    background: var(--ink);
    color: var(--bg);
    border: 1px solid var(--ink);
}
.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
}
.btn-primary:hover,
.btn-outline:hover { opacity: 0.65; }

.arrow-link {
    display: inline-block;
    font-size: 16px;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.arrow-link:hover { opacity: 0.6; }

/* ─── NAV ──────────────────────────────────────────────── */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: var(--pad);
    pointer-events: none;
    transition: background 0.3s ease;
}
#navbar.scrolled {
    background: var(--bg);
}
#navbar > * { pointer-events: all; }

.nav-left { position: relative; display: flex; flex-direction: column; gap: 4px; }

.nav-menu-btn {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 17px;
    color: var(--ink);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1.4;
    text-align: left;
}

.nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    z-index: 10;
    padding-top: 0;
}
.nav-links.open { max-height: 300px; padding-top: 4px; }

.nav-links a {
    font-size: 17px;
    line-height: 1.4;
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}
.nav-links.open a { opacity: 1; }

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(249, 249, 243, 0.82);
    z-index: 9;
}
.nav-backdrop.active {
    display: block;
    pointer-events: all;
}

.nav-mobile-close {
    display: none;
    position: fixed;
    top: var(--pad);
    right: var(--pad);
    z-index: 101;
    background: none;
    border: none;
    font-family: var(--sans);
    font-size: 11px;
    color: var(--ink);
    cursor: pointer;
    padding: 0;
    line-height: 1.4;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: var(--pad);
    font-family: var(--serif);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.04em;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
#navbar.scrolled .nav-center {
    opacity: 1;
    pointer-events: all;
}

.nav-right {
    font-size: 17px;
    font-weight: 400;
}
.nav-lang { display: flex; gap: 6px; align-items: center; }
.nav-lang .lang { transition: opacity 0.2s; }
.nav-lang .lang:hover { opacity: 0.5; }
.nav-lang .lang.active { text-decoration: underline; text-underline-offset: 3px; }
.nav-lang span { opacity: 0.35; }

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--pad);
    text-align: center;
    position: relative;
}

.hero-text {
    font-family: var(--serif);
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.3;
    transition: color 0.3s ease;
}
.hero-text.faded { color: var(--ink-light); }

.hero-label {
    font-family: var(--serif);
    font-size: clamp(30px, 3.6vw, 52px);
    line-height: 1.3;
    margin-bottom: 0;
}

.hero-scroll {
    position: absolute;
    bottom: var(--pad);
    font-size: 13px;
    color: var(--ink);
    letter-spacing: 0.01em;
}

/* ─── INTRO SECTION ────────────────────────────────────── */
.intro-section { padding-top: 0; }

.intro-hero-img { width: 100%; }
.intro-hero-img img {
    width: 100%;
    height: 72vh;
    object-fit: cover;
    display: block;
}

.intro-columns {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px var(--pad) 96px;
    width: 80%;
    margin: 0 auto;
}

.intro-tagline {
    font-family: var(--sans);
    font-weight: 500;
    font-size: clamp(25px, 2.05vw, 29.3px);
    line-height: 1.23;
    margin-bottom: 48px;
}

.intro-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
}

.intro-note {
    font-size: 14px;
    color: var(--ink-muted);
    margin-top: 8px;
}

.intro-photo {
    width: 56%;
    margin-bottom: 28px;
}
.intro-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-right-content p {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 24px;
}
.feature-list li {
    font-size: 20px;
    line-height: 1.25;
}

/* ─── CONTENT SECTIONS (01–04) ─────────────────────────── */
.cs { }

.cs-image { width: 100%; }
.cs-image .ph { height: 68vh; }

.cs-duo-img {
    display: flex;
    align-items: center;
    padding: 0 var(--pad);
    width: 100%;
}

.cs-centered-img {
    display: flex;
    justify-content: center;
    padding: 0 var(--pad);
}
.cs-centered-img img {
    width: 63%;
    height: auto;
    display: block;
}

.cs-duo-img--02 {
    align-items: center;
}

.cs-duo3-left {
    width: 25.2%;
    height: auto;
    flex-shrink: 0;
    align-self: center;
}
.cs-duo3-right {
    width: 35%;
    height: auto;
    flex-shrink: 0;
    margin-left: auto;
}
.cs-duo2-left {
    width: 35%;
    height: auto;
    max-height: none;
    flex-shrink: 0;
    align-self: flex-start;
}
.cs-duo2-right {
    width: 24.2%;
    height: auto;
    flex-shrink: 0;
    margin-left: auto;
}
.cs-duo-left {
    width: 21.1%;
    height: auto;
    flex-shrink: 0;
}
.cs-duo-right {
    width: 35%;
    height: auto;
    flex-shrink: 0;
    margin-left: auto;
}

.cs-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 106px;
    padding: 72px var(--pad) 80px;
}

#services .cs-body,
#how-we-work .cs-body,
#inversion .cs-body,
#para-quien .cs-body {
    gap: 0;
}

#services .cs-right,
#how-we-work .cs-right,
#inversion .cs-right,
#para-quien .cs-right {
    padding-left: 85px;
}

.cs-label-title {
    font-family: var(--serif);
    font-size: clamp(30px, 2.2vw, 34px);
    font-weight: 400;
    line-height: 1.2;
    display: flex;
    gap: 65px;
    align-items: flex-start;
}

.cs-num {
    font-family: var(--serif);
    flex-shrink: 0;
}

.cs-right p {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.cs-right .feature-list { margin-top: 0; margin-bottom: 32px; }

.feature-list--medium li {
    font-family: var(--sans);
    font-weight: 500;
}

/* Process steps */
.process-step { margin-bottom: 32px; }
.process-highlight { font-weight: 500; }
.process-num {
    display: block;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 8px;
}
.process-step p { font-size: 20px; line-height: 1.38; }

/* ─── INVERSION SECTION (03) ───────────────────────────── */

.big-percent {
    font-family: var(--serif);
    font-size: clamp(140px, 16vw, 220px);
    line-height: 0.85;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    text-align: center;
}

.percent-label {
    font-size: 14px;
    margin-bottom: 28px;
}

.inversion-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}
.inversion-list li {
    font-size: 15px;
    line-height: 1.55;
    padding-left: 16px;
    position: relative;
}
.inversion-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    opacity: 0.4;
}

.inversion-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

/* ─── LA DIFERENCIA ────────────────────────────────────── */
.diferencia-section {
    padding: 0 var(--pad);
    text-align: center;
}

.diferencia-section > .section-rule:first-child {
    margin-top: 64px;
    margin-bottom: 64px;
}

.diferencia-section > .section-rule:last-child {
    margin-top: 64px;
    margin-bottom: 64px;
}

.section-rule {
    border: none;
    border-top: 1px solid var(--rule);
    width: 72%;
    margin: 16px auto;
}

.diferencia-title {
    font-family: var(--serif);
    font-size: clamp(28px, 2.8vw, 40px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 40px;
}

.diferencia-title--lo-que {
    margin-top: 56px;
}

.diferencia-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 640px;
    margin: 0 auto;
}

.diferencia-item { }

.diferencia-sub {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 23px;
    line-height: 1.2;
    margin-bottom: 4px;
}

.diferencia-desc {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink);
}

.diferencia-section > .btn-primary {
    margin-top: 48px;
}

.section-heading {
    font-family: var(--serif);
    font-size: clamp(32px, 3vw, 44px);
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 12px;
}

.section-subhead {
    font-size: 15px;
    text-align: center;
    color: var(--ink-muted);
    margin-bottom: 56px;
}

/* ─── TESTIMONIALS ──────────────────────────────────────── */
.testimonials-section {
    text-align: center;
    padding: 40px var(--pad) 0;
}

.testimonials-title {
    font-family: var(--serif);
    font-size: clamp(33.6px, 3.36vw, 48px);
    font-weight: 400;
    margin-bottom: 6px;
}

.testimonials-sub {
    font-family: var(--serif);
    font-size: 21px;
    color: var(--ink);
    margin-bottom: 0;
}

.testimonial-block {
    max-width: 620px;
    margin: 0 auto;
    padding: 12px 0;
}

.testimonial-block p {
    font-family: var(--serif);
    font-size: clamp(19.2px, 1.68vw, 24px);
    line-height: 1.3;
    margin-bottom: 24px;
}

.testimonial-block cite {
    font-family: var(--serif);
    font-size: clamp(19.2px, 1.68vw, 24px);
    color: var(--ink);
    font-style: normal;
}

.privacy-note {
    font-size: 12px;
    color: var(--ink-muted);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 40px;
}

.testimonials-section > .btn-primary {
    margin-bottom: 0;
}

.testimonials-section > .section-rule:last-child {
    margin-top: 64px;
}

/* ─── GALLERY PREVIEW ───────────────────────────────────── */
.gallery-preview {
    padding: 96px var(--pad);
    text-align: center;
}

.gallery-preview .section-heading { margin-bottom: 12px; }
.gallery-preview .section-subhead  {
    margin-bottom: 48px;
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.25;
    color: var(--ink);
}

.gif-placeholder {
    width: 31.2%;
    margin: 0 auto 40px;
}
.gif-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-preview-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* ─── INSIGHTS ──────────────────────────────────────────── */
.insights-section {
    padding: 96px var(--pad);
}

.insights-section .section-heading { margin-bottom: 10px; }

.insights-sub {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--ink);
    margin-bottom: 56px;
    text-align: center;
}

.article-img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 16px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.article-card .ph-square { margin-bottom: 16px; }

.article-tag {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--ink-muted);
}

.article-card h3 {
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 12px;
}

.article-card p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 14px;
}

.insights-section > .btn-outline {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* ─── NEWSLETTER ────────────────────────────────────────── */
.newsletter-section {
    background: #EDEBE5;
    padding: 80px var(--pad);
    text-align: center;
}

.newsletter-label {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.newsletter-desc {
    font-size: 18px;
    line-height: 1.33;
    margin-bottom: 36px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 420px;
    margin: 0 auto 16px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    cursor: pointer;
}

.email-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--ink);
    padding: 8px 0;
    font-family: var(--sans);
    font-size: 15px;
    color: var(--ink);
    outline: none;
    text-align: center;
}
.email-input::placeholder { color: var(--ink-muted); }

.newsletter-note {
    font-size: 12px;
    color: var(--ink-muted);
}

/* ─── FINAL CTA ─────────────────────────────────────────── */
.final-cta {
    padding: 120px var(--pad);
    text-align: center;
}

.final-cta h2 {
    font-family: var(--serif);
    font-size: clamp(32px, 3.6vw, 52px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.final-cta p {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.33;
    color: var(--ink);
    margin-bottom: 40px;
}

.final-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* ─── FOOTER ────────────────────────────────────────────── */
.site-footer {
    padding: 48px var(--pad);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1.5fr 1fr 0.8fr;
    gap: 40px;
}

.footer-accordion-btn { display: none; }
.footer-copy-mobile { display: none; }

.footer-col-legal a[aria-current="page"] {
    opacity: 0.35;
    pointer-events: none;
    cursor: default;
}

.footer-col .footer-brand {
    font-family: var(--serif);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-decoration: none;
    color: var(--ink);
}

.footer-col p, .footer-col a {
    display: block;
    font-size: 13px;
    line-height: 1.9;
    color: var(--ink);
}

.footer-col .footer-copy {
    color: var(--ink-muted);
}

.footer-col a:hover { color: var(--ink); }

.footer-copy {
    margin-top: 24px;
    font-size: 11px !important;
}

.footer-top {
    margin-top: 24px;
}

.footer-col-right {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.footer-col .footer-linkedin { display: none; }

/* ─── MOBILE ────────────────────────────────────────────── */
@media (max-width: 768px) {

    /* ── NAV ─── */
    .nav-center {
        font-size: 10px;
        white-space: nowrap;
    }

    .nav-menu-btn,
    .nav-right {
        font-size: 11px;
    }

    /* ── NAV LANG DROPDOWN ─── */
    .nav-lang span { display: none; }
    .nav-lang .lang:not(.active) { display: none; }

    .nav-lang {
        flex-direction: column;
        align-items: flex-end;
        gap: 6px;
        cursor: pointer;
    }

    .nav-lang .lang.active::after {
        content: ' ↓';
        font-size: 11px;
        opacity: 0.45;
    }

    .nav-lang.open .lang.active::after {
        content: ' ↑';
    }

    .nav-lang.open .lang:not(.active) {
        display: block;
        color: var(--ink-muted);
    }

    /* ── MOBILE MENU OVERLAY ─── */
    #navLinks.open {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-height: none;
        overflow: visible;
        padding-top: 0;
        z-index: 10;
        align-items: center;
        gap: 4px;
    }
    #navLinks.open a {
        font-size: 22px;
        line-height: 1.7;
        white-space: normal;
        text-align: center;
    }
    body.menu-open .nav-mobile-close { display: block; }
    body.menu-open .nav-right { visibility: hidden; }

    /* ── HERO ─── */
    .hero {
        height: 100svh;
        min-height: 100vh;
        padding-top: var(--pad);
        padding-bottom: var(--pad);
    }
    .hero-label { font-size: 21px; }
    .hero-text { font-size: 18px; }

    /* ── INTRO ─── */
    .intro-columns {
        width: 100%;
        padding: 48px var(--pad) 64px;
    }

    .intro-tagline {
        font-size: clamp(16px, 4.5vw, 22px);
        margin-bottom: 36px;
    }

    .intro-photo {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }

    .intro-ctas { margin-top: 18px; }

    /* ── CONTENT SECTIONS ─── */
    .cs-body,
    #services .cs-body,
    #how-we-work .cs-body,
    #inversion .cs-body,
    #para-quien .cs-body {
        grid-template-columns: 1fr;
        gap: 64px;
        padding: 48px var(--pad) 56px;
    }

    #services .cs-right,
    #how-we-work .cs-right,
    #inversion .cs-right,
    #para-quien .cs-right {
        padding-left: 0;
    }

    .cs-right > div[style] {
        align-items: center !important;
    }

    .inversion-actions {
        align-items: center;
        margin-top: 10px;
    }

    .cs-right > .btn-primary {
        display: block;
        width: fit-content;
        margin: 0 auto;
    }

    .cs-label-title {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 20px;
        font-size: 20px;
    }

    .cs-label-title span:not(.cs-num) {
        text-align: right;
    }

    .cs-right p,
    .process-step p,
    .process-num,
    .feature-list li,
    #para-quien .cs-right p,
    #para-quien .feature-list li {
        font-size: 17px;
    }

    .cs-image img {
        height: auto !important;
        object-fit: unset !important;
    }

    /* ── DUO IMAGES ─── */
    .cs-duo-left  { width: 27%; }
    .cs-duo-right { width: 42%; }
    .cs-duo2-left  { width: 52%; }
    .cs-duo2-right { width: 38%; }
    .cs-duo3-left  { width: 38%; }
    .cs-duo3-right { width: 52%; }

    /* ── CENTERED IMAGE (nico en lancha) ─── */
    .cs-centered-img img { width: 75%; }

    /* ── SECTION RULE ─── */
    .section-rule { width: 90%; }

    /* ── LA DIFERENCIA ─── */
    .diferencia-title { font-size: clamp(24px, 6vw, 32px); }
    .diferencia-sub { font-size: 19px; }

    .diferencia-section > .section-rule:first-child,
    .diferencia-section > .section-rule:last-child {
        margin-top: 48px;
        margin-bottom: 48px;
    }

    /* ── INVERSION ─── */
    .big-percent { font-size: clamp(90px, 25vw, 140px); }

    /* ── TESTIMONIALS ─── */
    .testimonials-section { padding: 32px var(--pad) 0; }
    .testimonials-title { font-size: clamp(28px, 7vw, 38px); }
    .testimonials-sub { font-size: 17px; }
    .testimonial-block p,
    .testimonial-block cite { font-size: 17px; }

    /* ── GALLERY ─── */
    .gallery-preview { padding: 64px var(--pad); }
    .gif-placeholder { width: 80%; }

    /* ── NEWSLETTER ─── */
    .newsletter-section { padding: 60px var(--pad); }
    .newsletter-desc { font-size: 16px; }

    /* ── FINAL CTA ─── */
    .final-cta { padding: 80px var(--pad); }

    /* ── FOOTER ─── */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-col-brand { padding-bottom: 24px; }
    .footer-col-brand .footer-copy { display: none; }

    .footer-accordion-btn {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 20px 0;
        font-family: var(--sans);
        font-size: 13px;
        font-weight: 400;
        color: var(--ink);
        background: none;
        border: none;
        border-top: 1px solid var(--rule);
        border-bottom: 1px solid var(--rule);
        cursor: pointer;
        text-align: left;
    }

    .footer-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .footer-accordion-content.open { max-height: 600px; }

    .footer-col-legal {
        border-top: 1px solid var(--rule);
        padding-top: 20px;
    }

    .footer-col-legal a {
        padding: 6px 0;
    }

    .footer-col-right {
        border-top: 1px solid var(--rule);
        padding-top: 20px;
        text-align: left;
    }

    .footer-col .footer-linkedin { display: none; }

    .footer-copy-mobile {
        display: block;
        font-size: 11px;
        color: var(--ink-muted);
        border-top: 1px solid var(--rule);
        padding-top: 20px;
        margin-top: 20px;
    }
}
