/* ===========================================================================
   JLM Mayfair — site-wide stylesheet
   Based on the MC Private Finance Wix design, rebuilt as clean HTML/CSS.
   =========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --green: #0B291A;
    --green-deep: #071B10;
    --green-marble: #10331f;
    --cream: #E4DCD3;
    --cream-alt: #ece4d8;
    --coral: #EA695D;
    --ink: #0B291A;
    --muted: #7a756c;
    --line: rgba(234, 105, 93, 0.5);

    --font-body: 'Jost', 'Avenir Next', Avenir, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --wrap: 1140px;
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 40px;
}

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
    background: var(--green);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px 13px;
    max-width: var(--wrap);
    margin: 0 auto;
}

.logo {
    color: var(--cream);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1;
    transition: opacity 0.25s ease;
}

.logo:hover { opacity: 0.85; }

.nav-links { display: flex; gap: 0; align-items: center; }

.nav-links a {
    font-size: 16px;
    font-weight: 300;
    color: var(--cream);
    padding: 12px 20px;
    letter-spacing: 0.005em;
    line-height: 50px;
    transition: opacity 0.25s ease;
    position: relative;
}

.nav-links a.active::before {
    content: '';
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 8px;
    height: 1px;
    background: var(--coral);
}

.nav-links a:hover { opacity: 0.75; }

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 1px;
    background: var(--cream);
    margin: 7px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--green);
    z-index: 99;
    padding: 120px 40px 60px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.mobile-menu.active { opacity: 1; pointer-events: all; }

.mobile-menu a {
    display: block;
    font-size: 22px;
    color: var(--cream);
    padding: 14px 0;
    border-bottom: 1px solid rgba(228, 220, 211, 0.12);
    font-weight: 300;
}

/* ─── HOME HERO (tufted leather) ─────────────────────────── */
.hero {
    position: relative;
    background: var(--green);
    min-height: 648px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--green) url('assets/hero-home.png') center/cover no-repeat;
}

.hero-veil {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, transparent 0%, rgba(11,41,26,0.35) 70%, rgba(7,27,16,0.7) 100%);
}

.hero-social {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-social a {
    width: 26px; height: 26px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--cream);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.hero-social a:hover { opacity: 1; }
.hero-social svg { width: 22px; height: 22px; fill: currentColor; }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 150px 40px 70px;
}

.hero h1 {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 43px;
    line-height: 1.3em;
    letter-spacing: 0.02em;
    color: #fff;
    margin-bottom: 6px;
}

.hero-sub {
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #fff;
    margin-bottom: 28px;
}

.hero-body {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto 22px;
}

.hero-tag {
    font-size: 16px;
    color: #fff;
    margin-bottom: 48px;
    font-weight: 300;
}

.hero-cta {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    padding: 4px 4px 6px;
    border-bottom: 1px solid var(--coral);
    transition: border-bottom-width 0.2s ease, padding 0.2s ease;
    letter-spacing: 0;
}

.hero-cta:hover {
    border-bottom: 2px solid var(--coral);
    padding-bottom: 5px;
}

/* ─── PAGE HERO (non-home: team/services/contact/news) ─── */
.page-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--green);
    color: #fff;
    text-align: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.9;
}

.page-hero-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(11,41,26,0.55), rgba(11,41,26,0.65));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 72px 40px;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #fff;
    margin-bottom: 18px;
}

.page-hero p {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
    font-weight: 300;
    max-width: 620px;
    margin: 0 auto;
}

/* ─── VALUES ROW ─────────────────────────────────────────── */
.values { background: #fff; padding: 56px 0 72px; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    max-width: 1040px;
    margin: 0 auto;
}

.value {
    position: relative;
    padding: 20px 18px 28px;
    text-align: center;
    cursor: pointer;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.value-default {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.value-icon {
    width: 92px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

.value-icon svg { width: 100%; height: 100%; }

.value-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.05em;
    color: var(--green);
}

.value-hover {
    position: absolute;
    inset: 20px 18px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.value-hover-head {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 18px;
    color: var(--green);
    line-height: 1.3;
}

.value-hover-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--green);
    font-weight: 300;
    max-width: 170px;
}

.value:hover .value-default,
.value:focus-within .value-default { opacity: 0; visibility: hidden; }

.value:hover .value-hover,
.value:focus-within .value-hover { opacity: 1; visibility: visible; transition-delay: 0.1s; }

/* ─── QUOTE BAND (home) ──────────────────────────────────── */
.quote-band {
    position: relative;
    min-height: 613px;
    display: flex;
    align-items: center;
    background: var(--cream);
    overflow: hidden;
}

.quote-bg {
    position: absolute;
    inset: 0;
    background: url('assets/bg-quote.png') center/cover no-repeat;
}

.quote-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(228,220,211,0.78) 0%, rgba(228,220,211,0.55) 50%, rgba(228,220,211,0.72) 100%);
}

.quote-content {
    position: relative; z-index: 2;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 70px 40px;
}

.quote-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: var(--green);
    margin-bottom: 36px;
    max-width: 820px;
}

.quote-text::before { content: '\201C'; }
.quote-text::after  { content: '\201D'; }

.quote-link {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--green);
    padding: 4px 4px 6px;
    border-bottom: 1px solid var(--coral);
    transition: border-bottom-width 0.2s ease, padding 0.2s ease;
}

.quote-link:hover { border-bottom: 2px solid var(--coral); padding-bottom: 5px; }

/* ─── JOURNEY (home timeline carousel) ───────────────────── */
.journey {
    position: relative;
    background: var(--green);
    color: #fff;
    padding: 73px 0 0;
    overflow: hidden;
}

.journey-bg {
    position: absolute;
    inset: 0;
    background: url('assets/bg-journey.png') center/cover no-repeat;
    opacity: 0.45;
    mix-blend-mode: overlay;
}

.journey-head {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 40px;
}

.journey-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 34px;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 32px;
}

.journey-intro { max-width: 680px; margin: 0 auto 26px; }
.journey-intro p {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    font-weight: 300;
    margin-bottom: 22px;
}
.journey-intro p:last-child { margin-bottom: 0; }

.journey-divider {
    width: 272px;
    height: 1px;
    background: var(--coral);
    margin: 26px auto 32px;
}

.carousel {
    position: relative; z-index: 2;
    max-width: 980px;
    margin: 0 auto;
    padding: 79px 80px 96px;
    min-height: 274px;
}

.carousel-arrow {
    position: absolute;
    top: 108px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: var(--coral);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 3;
}

.carousel-arrow:hover { opacity: 0.7; }
.carousel-arrow.prev { left: 39px; }
.carousel-arrow.next { right: 39px; transform: scaleX(-1); }
.carousel-arrow.next:hover { transform: scaleX(-1) translateX(3px); }
.carousel-arrow.prev:hover { transform: translateX(-3px); }

.carousel-arrow svg { width: 21px; height: 41px; fill: currentColor; stroke: currentColor; stroke-width: 1; }

.carousel-track { position: relative; min-height: 200px; }

.carousel-slide {
    display: none;
    grid-template-columns: 267px 331px;
    gap: 0;
    justify-content: center;
    align-items: flex-start;
    padding: 0 16px;
    animation: fadeIn 1.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.carousel-slide.active { display: grid; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.slide-year {
    font-family: var(--font-body);
    font-size: 37px;
    font-weight: 300;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    padding-right: 40px;
}

.slide-text {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    letter-spacing: 0.05em;
    font-weight: 300;
    max-width: 331px;
}

.carousel-dots { display: flex; justify-content: center; gap: 16px; margin-top: 32px; }

.dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(232, 230, 230, 0.36);
    border: none; cursor: pointer; padding: 0;
    transition: background 0.3s ease;
}

.dot:hover { background: rgba(255, 255, 255, 0.7); }
.dot.active { background: #fff; opacity: 1; }

/* ─── NEWS GRID (news page + home "latest news") ────────── */
.news-page { background: var(--green); padding: 70px 0 100px; color: #fff; }

.news-heading {
    text-align: center;
    font-weight: 300;
    font-size: 38px;
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 72px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px 80px;
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 40px;
}

.news-card { text-align: center; transition: transform 0.3s ease; }
.news-card:hover { transform: translateY(-3px); }

.news-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 18px;
}

.news-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
    padding: 0 12px;
}

.news-card-date {
    font-size: 13px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.02em;
    opacity: 0.95;
}

/* ─── CONTENT SECTION (services, team, policy) ─────────── */
.content { background: #fff; padding: 80px 0 100px; }

.content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--green);
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: 0.01em;
}

.content .lead {
    font-size: 15px;
    color: var(--green);
    text-align: center;
    margin-bottom: 46px;
    letter-spacing: 0.01em;
}

.content ul.plain {
    list-style: none;
    max-width: 620px;
    margin: 0 auto 72px;
    text-align: center;
}

.content ul.plain li {
    font-size: 16px;
    color: var(--green);
    padding: 11px 0;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Team card grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 354px);
    gap: 48px;
    justify-content: center;
    max-width: 1040px;
    margin: 0 auto;
    padding: 24px 40px 0;
}

.team-card img {
    width: 100%;
    aspect-ratio: 354 / 402;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-card h3 {
    font-size: 22px;
    font-weight: 400;
    color: var(--green);
    text-align: center;
    margin-bottom: 4px;
}

.team-card .role {
    font-size: 14px;
    color: var(--muted);
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.team-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--ink);
    text-align: center;
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-section { background: #fff; padding: 80px 0 100px; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: start;
}

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

.contact-form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.contact-form input,
.contact-form textarea {
    font-family: var(--font-body);
    font-size: 15px;
    width: 100%;
    padding: 8px 4px;
    border: none;
    border-bottom: 1px solid rgba(11,41,26,0.2);
    background: transparent;
    color: var(--ink);
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--coral);
}

.contact-form textarea { min-height: 84px; resize: vertical; }

.contact-form button {
    justify-self: start;
    background: var(--green);
    color: #fff;
    border: none;
    padding: 12px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 8px;
}

.contact-form button:hover { background: var(--green-deep); }

.contact-map {
    width: 100%;
    aspect-ratio: 400 / 300;
    border: none;
    filter: saturate(0.7);
}

/* ─── ARTICLE PAGE ──────────────────────────────────────── */
.article {
    background: #fff;
    padding: 80px 0 100px;
}

.article-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.article-meta {
    text-align: center;
    margin-bottom: 28px;
}

.article-date {
    font-size: 14px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article h1 {
    font-size: 36px;
    font-weight: 400;
    color: var(--green);
    line-height: 1.25;
    text-align: center;
    margin-bottom: 44px;
    letter-spacing: 0.01em;
}

.article-hero {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin-bottom: 44px;
}

.article-body { font-size: 16px; line-height: 1.8; color: var(--ink); }
.article-body p { margin-bottom: 18px; }
.article-body h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--green);
    margin: 32px 0 14px;
}
.article-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--green);
    margin: 24px 0 10px;
}
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 18px; }
.article-body li { margin-bottom: 6px; list-style: disc; }
.article-body a { color: var(--coral); text-decoration: underline; text-underline-offset: 3px; }
.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0 28px;
    font-size: 14px;
    line-height: 1.55;
}
.article-body table th,
.article-body table td {
    border: 1px solid rgba(11, 41, 26, 0.18);
    padding: 12px 14px;
    vertical-align: top;
    text-align: left;
}
.article-body table th {
    background: var(--cream);
    color: var(--green);
    font-weight: 500;
}
.article-body table tbody tr:nth-child(even) td { background: #faf7f2; }
.article-body.policy h2 {
    text-align: center;
    margin: 36px 0 18px;
    font-size: 20px;
    letter-spacing: 0.01em;
}
.article-body.policy h3 {
    text-align: left;
    margin: 28px 0 10px;
    font-size: 17px;
}
.article-body.policy p { text-align: left; }
.article-body.policy.left h2 {
    text-align: left;
    font-size: 17px;
    margin: 32px 0 14px;
}
@media (max-width: 640px) {
    .article-body table { font-size: 13px; }
    .article-body table th,
    .article-body table td { padding: 10px; }
}

.back-to-news {
    display: inline-block;
    margin-top: 56px;
    font-size: 15px;
    font-weight: 500;
    color: var(--green);
    border-bottom: 1px solid var(--coral);
    padding-bottom: 4px;
    transition: padding 0.2s ease;
}

.back-to-news:hover { padding-bottom: 6px; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
    background: var(--cream);
    color: var(--green);
    padding: 19px 0 42px;
}

.footer-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    padding: 0 0 32px;
    align-items: start;
}

.footer-brand { position: relative; }

.footer-name {
    font-size: 34px;
    font-weight: 300;
    color: var(--green);
    margin-bottom: 20px;
}

.footer-contact {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--green);
    margin-bottom: 14px;
}

.footer-contact a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-contact a:hover { color: var(--coral); }

.footer-address {
    font-size: 16px;
    color: var(--green);
    font-weight: 400;
    line-height: 1.6;
}

.footer-links {
    font-size: 16px;
    text-align: right;
    line-height: 1.8;
    color: var(--green);
    font-weight: 300;
}

.footer-links a { text-decoration: underline; text-underline-offset: 3px; }
.footer-links a:hover { color: var(--coral); }
.footer-links .sep { margin: 0 4px; }

.footer-copyright {
    font-size: 14px;
    font-weight: 700;
    text-align: right;
    margin-top: 12px;
    color: var(--green);
}

.footer-divider {
    height: 1px;
    background: var(--coral);
    width: calc(100% - 80px);
    max-width: 980px;
    margin: 0 auto 9px;
}

.footer-legal {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 40px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--green);
    font-weight: 300;
}

.footer-legal a { text-decoration: underline; }
.footer-legal a:hover { color: var(--coral); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .nav-links a { padding: 12px 14px; font-size: 15px; }
    .hero-social { right: 24px; }
}

@media (max-width: 820px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .mobile-menu { display: block; }
    .nav-inner { padding: 18px 24px; }

    .hero { min-height: 600px; }
    .hero-content { padding: 120px 24px 60px; }
    .hero h1 { font-size: 32px; }
    .hero-social { right: 16px; gap: 12px; }
    .hero-social a { width: 22px; height: 22px; }

    .page-hero { min-height: 320px; }
    .page-hero-content { padding: 56px 24px; }
    .page-hero h1 { font-size: 30px; }

    .values { padding: 40px 0 48px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .value:last-child { grid-column: span 2; }

    .quote-band { min-height: 440px; }
    .quote-text { font-size: 28px; }
    .quote-content { padding: 60px 24px; }

    .journey { padding: 60px 0 0; }
    .journey-title { font-size: 26px; }
    .journey-head { padding: 0 24px; }
    .carousel { padding: 60px 56px 80px; }
    .carousel-arrow.prev { left: 16px; }
    .carousel-arrow.next { right: 16px; }
    .carousel-slide { grid-template-columns: 1fr; gap: 16px; }
    .slide-year { text-align: left; padding-right: 0; font-size: 30px; }
    .slide-text { max-width: 100%; }

    .news-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; padding: 0 24px; }
    .news-heading { font-size: 30px; margin-bottom: 48px; }

    .team-grid { grid-template-columns: 1fr; gap: 32px; padding: 24px 24px 0; max-width: 420px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }

    .article-inner { padding: 0 24px; }
    .article h1 { font-size: 28px; }

    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .footer-links, .footer-copyright { text-align: left; }
    .footer-name { font-size: 28px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 26px; }
    .quote-text { font-size: 22px; }
    .news-grid { grid-template-columns: 1fr; }
    .footer-legal, .footer-inner { padding: 0 24px; }
    .footer-divider { width: calc(100% - 48px); }
}
