/* =========================================================
   HOME HERO
========================================================= */

.home-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            120deg,
            #fbfaf7 0%,
            #eee7da 100%
        );
}

.home-hero-glow {
    position: absolute;
    top: -180px;
    left: -120px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(198,154,72,.08);
    filter: blur(4px);
}

.home-hero-grid {
    position: relative;
    z-index: 2;

    min-height: 680px;

    display: grid;
    grid-template-columns:
        minmax(0,1.05fr)
        minmax(420px,.95fr);

    align-items: center;
    gap: 70px;

    padding-top: 70px;
    padding-bottom: 70px;
}


/* LEFT */

.home-hero-content {
    max-width: 700px;
}

.home-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 18px;

    color: #9c7128;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.home-hero-eyebrow span {
    width: 34px;
    height: 2px;
    background: var(--tml-gold);
}

.home-hero h1 {
    margin: 0;

    color: var(--tml-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(46px,5.6vw,76px);

    font-weight: 500;

    line-height: 1.04;

    letter-spacing: -.035em;
}

.home-hero h1 em {
    display: block;

    color: var(--tml-gold-dark);

    font-style: italic;
    font-weight: 500;
}

.home-hero-description {
    max-width: 650px;

    margin: 26px 0 0;

    color: #5e6670;

    font-size: 17px;

    line-height: 1.75;
}


/* ACTIONS */

.home-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;

    margin-top: 34px;
}

.home-primary-btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 0 23px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #c79a45,
            #a87525
        );

    color: #fff;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 12px 30px
        rgba(168,117,37,.19);

    transition: .25s ease;
}

.home-primary-btn:hover {
    color: #fff;

    transform:
        translateY(-3px);

    box-shadow:
        0 16px 34px
        rgba(168,117,37,.28);
}

.home-primary-btn span {
    transition:
        transform .2s ease;
}

.home-primary-btn:hover span {
    transform:
        translateX(4px);
}

.home-phone-btn {
    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--tml-navy);

    text-decoration: none;
}

.home-phone-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(17,28,41,.14);

    border-radius: 50%;

    background: #fff;
}

.home-phone-icon svg {
    width: 18px;
    height: 18px;

    fill: var(--tml-gold-dark);
}

.home-phone-btn small {
    display: block;

    margin-bottom: 2px;

    color: #7b8188;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .07em;
}

.home-phone-btn strong {
    color: var(--tml-navy);

    font-size: 13px;
}


/* TRUST */

.home-hero-trust {
    display: flex;
    flex-wrap: wrap;

    gap: 22px;

    margin-top: 37px;

    padding-top: 23px;

    border-top:
        1px solid
        rgba(17,28,41,.1);
}

.home-hero-trust div {
    display: flex;
    align-items: center;

    gap: 7px;

    color: #5c646d;

    font-size: 12px;
    font-weight: 600;
}

.home-hero-trust span {
    color: var(--tml-gold-dark);

    font-weight: 900;
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

/* =========================================================
   HERO IMAGE CAROUSEL
========================================================= */

.home-hero-visual {
    position: relative;
    width: 100%;
    max-width: 655px;
    margin-left: auto;
}

/*.home-hero-visual::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: -20px;*/
/*    right: -20px;*/
/*    width: 72%;*/
/*    height: 76%;*/
    /*border: 1px solid rgba(198,154,72,.45);*/
/*    border: 1px solid black;*/
/*    z-index: -1;*/
/*}*/

.home-slider {
    position: relative;
    height: 535px;
    overflow: hidden;

    border-radius:
        4px 4px 76px 4px;

    background: #111c29;

    box-shadow:
        0 28px 65px
        rgba(17,28,41,.19);
}

.home-slide {
    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;

    transform: scale(1.04);

    transition:
        opacity .9s ease,
        transform 6s ease,
        visibility .9s ease;
}

.home-slide.is-active {
    opacity: 1;
    visibility: visible;

    transform: scale(1);
}

.home-slide img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    filter:
        saturate(.9)
        contrast(1.03);
}

.home-slide-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(10,18,27,.83) 0%,
            rgba(10,18,27,.28) 48%,
            rgba(10,18,27,.08) 100%
        );
}

.home-slide-caption {
    position: absolute;

    left: 38px;
    right: 38px;
    bottom: 52px;

    color: #fff;

    transform: translateY(12px);
    opacity: 0;

    transition:
        opacity .6s ease .25s,
        transform .6s ease .25s;
}

.home-slide.is-active .home-slide-caption {
    opacity: 1;
    transform: translateY(0);
}

.home-slide-caption span {
    display: block;

    margin-bottom: 9px;

    color: #e0bd73;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.home-slide-caption strong {
    display: block;

    max-width: 390px;

    font-family:
        Georgia,
        serif;

    font-size: 27px;
    font-weight: 500;

    line-height: 1.3;
}


/* DOTS */

.home-slider-dots {
    position: absolute;

    right: 25px;
    bottom: 24px;

    z-index: 10;

    display: flex;
    align-items: center;

    gap: 7px;
}

.home-slider-dots button {
    width: 7px;
    height: 7px;

    padding: 0;

    border: 1px solid rgba(255,255,255,.8);
    border-radius: 50%;

    background: transparent;

    cursor: pointer;

    transition: .25s ease;
}

.home-slider-dots button.is-active {
    width: 23px;

    border-radius: 10px;

    border-color: #d8b56b;
    background: #d8b56b;
}


/* PROGRESS */

.home-slider-progress {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 10;

    height: 3px;

    background:
        rgba(255,255,255,.14);
}

.home-slider-progress span {
    display: block;

    width: 0;
    height: 100%;

    background: var(--tml-gold);
}

.home-slider-progress span.is-running {
    animation:
        homeSliderProgress
        5s linear forwards;
}

@keyframes homeSliderProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}


/* FLOATING LEGAL CARD */

.home-hero-card {
    position: absolute;

    left: -48px;
    bottom: 55px;

    z-index: 15;

    min-width: 245px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 17px;

    border:
        1px solid
        rgba(198,154,72,.22);

    border-radius: 12px;

    background:
        rgba(255,255,255,.96);

    box-shadow:
        0 16px 38px
        rgba(17,28,41,.16);

    backdrop-filter: blur(8px);
}

.home-card-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f7efe2;

    color: var(--tml-gold-dark);

    font-family: Georgia, serif;
    font-size: 20px;
}

.home-hero-card small {
    display: block;

    color: #7a8189;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .07em;

    text-transform: uppercase;
}

.home-hero-card strong {
    display: block;

    margin-top: 3px;

    color: var(--tml-navy);

    font-size: 13px;
}


/* TABLET */

@media (max-width: 1050px) {

    .home-hero-visual {
        margin:
            0 auto;
    }

}


/* MOBILE */

@media (max-width: 720px) {

    .home-hero-visual::before {
        top: -12px;
        right: -10px;
    }

    .home-slider {
        height: 430px;

        border-radius:
            3px 3px 50px 3px;
    }

    .home-slide-caption {
        left: 24px;
        right: 24px;
        bottom: 55px;
    }

    .home-slide-caption strong {
        font-size: 22px;
    }

    .home-hero-card {
        left: 14px;
        bottom: -27px;

        min-width: 218px;
    }

}

/* =========================================================
   ABOUT OUR FIRM
========================================================= */

.home-about {
    padding: 110px 0;
    background: #fff;
}

.home-about-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(420px, .95fr);
    gap: 70px;
    align-items: center;
}


/* LEFT */

.home-about-content {
    max-width: 720px;
}

.home-about-content h2 {
    margin: 0;

    color: var(--tml-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(38px, 4.5vw, 58px);

    font-weight: 500;

    line-height: 1.1;
}

.home-about-content h2 em {
    display: block;

    color: var(--tml-gold-dark);

    font-style: italic;
    font-weight: 500;
}

.home-about-lead {
    margin-top: 24px !important;

    color: #4f5862 !important;

    font-size: 17px !important;

    line-height: 1.75 !important;
}

.home-about-content p {
    max-width: 690px;

    margin: 16px 0 0;

    color: var(--tml-muted);

    font-size: 15px;

    line-height: 1.75;
}


/* ACTIONS */

.home-about-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 32px;
}

.home-about-primary {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 20px;

    border-radius: 999px;

    background: var(--tml-navy);

    color: #fff;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: .2s ease;
}

.home-about-primary:hover {
    color: #fff;

    background: var(--tml-gold-dark);

    transform: translateY(-2px);
}

.home-about-secondary {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 20px;

    border:
        1px solid var(--tml-border);

    border-radius: 999px;

    color: var(--tml-navy);

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.home-about-secondary:hover {
    border-color:
        rgba(198,154,72,.45);

    color: var(--tml-gold-dark);
}


/* RIGHT PANEL */

.home-about-panel {
    position: relative;

    padding: 34px;

    border:
        1px solid var(--tml-border);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #faf8f3,
            #f5efe4
        );

    box-shadow:
        0 24px 55px
        rgba(17,28,41,.08);
}

.home-about-panel::before {
    content: "";

    position: absolute;

    top: -18px;
    right: 34px;

    width: 100px;
    height: 3px;

    background: var(--tml-gold);
}


/* STAT */

.home-about-stat {
    display: flex;
    align-items: center;

    gap: 20px;

    padding-bottom: 28px;

    border-bottom:
        1px solid
        rgba(17,28,41,.1);
}

.home-about-stat-number {
    color: var(--tml-gold-dark);

    font-family: Georgia, serif;

    font-size: 58px;

    line-height: 1;
}

.home-about-stat-label {
    max-width: 180px;

    color: var(--tml-navy);

    font-size: 13px;
    font-weight: 700;

    line-height: 1.4;
}


/* FEATURE GRID */

.home-about-features {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 16px;

    margin-top: 24px;
}

.home-about-features article {
    display: flex;

    gap: 13px;

    padding: 16px;

    border:
        1px solid
        rgba(17,28,41,.08);

    border-radius: 14px;

    background:
        rgba(255,255,255,.65);

    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.home-about-features article:hover {
    transform: translateY(-3px);

    border-color:
        rgba(198,154,72,.35);

    background: #fff;
}

.home-about-icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        rgba(198,154,72,.12);

    color:
        var(--tml-gold-dark);
}

.home-about-icon svg {
    width: 20px;
    height: 20px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-about-features h3 {
    margin:
        0 0 5px;

    color: var(--tml-navy);

    font-size: 15px;

    font-weight: 700;
}

.home-about-features p {
    margin: 0;

    color: var(--tml-muted);

    font-size: 12px;

    line-height: 1.55;
}


/* RESPONSIVE */

@media (max-width: 1050px) {

    .home-about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .home-about-panel {
        max-width: 760px;
    }

}

@media (max-width: 720px) {

    .home-about {
        padding: 75px 0;
    }

    .home-about-panel {
        padding: 24px;
    }

    .home-about-features {
        grid-template-columns: 1fr;
    }

    .home-about-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .home-about-primary,
    .home-about-secondary {
        width: 100%;
    }

}

/* =========================================================
   FOUNDER / LEAD COUNSEL
========================================================= */

.home-founder {
    padding: 110px 0;
    background: var(--tml-navy);
    color: #fff;
}

.home-founder-grid {
    display: grid;
    grid-template-columns:
        minmax(360px, .85fr)
        minmax(0, 1.15fr);
    gap: 80px;
    align-items: center;
}


/* IMAGE */

.home-founder-media {
    position: relative;
    max-width: 500px;
}

.home-founder-photo {
    position: relative;
    overflow: hidden;

    min-height: 560px;

    border-radius:
        4px 4px 70px 4px;

    background: #223244;
}

.home-founder-photo::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(9,16,24,.32),
            transparent 55%
        );
}

.home-founder-photo img {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    object-fit: cover;
    object-position: center top;
}

.home-founder-badge {
    position: absolute;
    right: -34px;
    bottom: 34px;
    z-index: 3;

    min-width: 240px;

    padding: 18px 20px;

    border:
        1px solid rgba(198,154,72,.3);

    border-radius: 12px;

    background:
        rgba(255,255,255,.96);

    box-shadow:
        0 18px 40px
        rgba(0,0,0,.18);
}

.home-founder-badge strong {
    display: block;

    color: var(--tml-navy);

    font-family: Georgia, serif;

    font-size: 17px;
}

.home-founder-badge span {
    display: block;

    margin-top: 4px;

    color: var(--tml-gold-dark);

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .08em;
}


/* CONTENT */

.home-founder-content {
    max-width: 710px;
}

.home-founder .home-section-eyebrow {
    color: #d9b76d;
}

.home-founder-content h2 {
    margin: 0;

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(38px,4.4vw,58px);

    font-weight: 500;
    color: white !important;
    line-height: 1.1;
}

.home-founder-content h2 em {
    display: block;

    color: #d9b76d;

    font-style: italic;
    font-weight: 500;
}

.home-founder-content p {
    color:
        rgba(255,255,255,.62);

    font-size: 15px;

    line-height: 1.8;
}

.home-founder-lead {
    margin-top: 24px;

    color:
        rgba(255,255,255,.82) !important;

    font-size: 17px !important;
}


/* POINTS */

.home-founder-points {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 14px;

    margin-top: 30px;
}

.home-founder-points div {
    padding: 18px;

    border:
        1px solid
        rgba(255,255,255,.1);

    border-radius: 12px;

    background:
        rgba(255,255,255,.035);
}

.home-founder-points span {
    display: block;

    margin-bottom: 10px;

    color: #d9b76d;

    font-family: Georgia, serif;

    font-size: 20px;
}

.home-founder-points p {
    margin: 0;

    color:
        rgba(255,255,255,.7);

    font-size: 12px;

    line-height: 1.6;
}


/* LINK */

.home-founder-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 32px;

    color: #fff;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.home-founder-link span {
    color: #d9b76d;

    transition:
        transform .2s ease;
}

.home-founder-link:hover span {
    transform: translateX(4px);
}


/* RESPONSIVE */

@media (max-width: 1050px) {

    .home-founder-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .home-founder-media {
        margin: 0 auto;
    }

}

@media (max-width: 720px) {

    .home-founder {
        padding: 75px 0;
    }

    .home-founder-photo {
        min-height: 450px;
    }

    .home-founder-badge {
        right: 14px;
        bottom: 18px;
        min-width: 210px;
    }

    .home-founder-points {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   PRACTICE AREAS
========================================================= */

.home-practice {
    padding: 110px 0;
    background: #f8f5ef;
}


/* HEADING */

.home-practice-heading {
    display: grid;
    grid-template-columns: 1fr .75fr;
    gap: 70px;

    align-items: end;

    margin-bottom: 52px;
}

.home-practice-heading h2 {
    margin: 0;

    color: var(--tml-navy);

    font-family: Georgia, serif;

    font-size:
        clamp(40px,4.6vw,60px);

    font-weight: 500;

    line-height: 1.08;
}

.home-practice-heading h2 em {
    color: var(--tml-gold-dark);
    font-style: italic;
    font-weight: 500;
}

.home-practice-heading > p {
    max-width: 520px;

    margin: 0 0 4px;

    color: var(--tml-muted);

    font-size: 15px;

    line-height: 1.75;
}


/* GRID */

.home-practice-grid {
    display: grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap: 18px;
}


/* CARD */

.home-practice-card {
    position: relative;

    min-height: 310px;

    display: flex;
    flex-direction: column;

    padding: 27px;

    overflow: hidden;

    border:
        1px solid
        rgba(17,28,41,.09);

    border-radius: 15px;

    background: #fff;

    color: inherit;

    text-decoration: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease,
        background .25s ease;
}

.home-practice-card::after {
    content: "";

    position: absolute;

    right: -50px;
    bottom: -60px;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background:
        rgba(198,154,72,.07);

    transition:
        transform .35s ease;
}

.home-practice-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(198,154,72,.38);

    background: #fff;

    box-shadow:
        0 18px 42px
        rgba(17,28,41,.09);
}

.home-practice-card:hover::after {
    transform: scale(1.35);
}


/* NUMBER */

.home-practice-number {
    position: absolute;

    top: 20px;
    right: 22px;

    color:
        rgba(17,28,41,.18);

    font-family: Georgia, serif;

    font-size: 14px;
}


/* ICON */

.home-practice-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border:
        1px solid
        rgba(198,154,72,.28);

    border-radius: 14px;

    background:
        rgba(198,154,72,.10);

    color:
        var(--tml-gold-dark);

    transition:
        background .25s ease,
        color .25s ease;
}

.home-practice-icon svg {
    width: 22px;
    height: 22px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-rupee-icon {
    font-family: Georgia, serif;
    font-size: 23px;
}

.home-practice-card:hover
.home-practice-icon {
    background: var(--tml-gold);

    color: #fff;
}


/* TEXT */

.home-practice-card h3 {
    margin:
        0 0 12px;

    color:
        var(--tml-navy);

    font-family:
        Georgia, serif;

    font-size: 21px;

    font-weight: 600;

    line-height: 1.25;
}

.home-practice-card p {
    margin: 0 0 24px;

    color:
        var(--tml-muted);

    font-size: 13px;

    line-height: 1.7;
}


/* CARD LINK */

.home-practice-link {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: auto;

    color:
        var(--tml-gold-dark);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .04em;

    text-transform: uppercase;
}

.home-practice-link b {
    font-size: 16px;

    transition:
        transform .2s ease;
}

.home-practice-card:hover
.home-practice-link b {
    transform:
        translateX(4px);
}


/* BOTTOM CTA */

.home-practice-bottom {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    margin-top: 38px;

    padding-top: 30px;

    border-top:
        1px solid
        rgba(17,28,41,.1);
}

.home-practice-bottom p {
    margin: 0;

    color:
        var(--tml-muted);

    font-size: 13px;
}

.home-practice-bottom a {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color:
        var(--tml-navy);

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;
}

.home-practice-bottom a span {
    color:
        var(--tml-gold-dark);

    transition:
        transform .2s ease;
}

.home-practice-bottom a:hover span {
    transform:
        translateX(4px);
}


/* TABLET */

@media (max-width: 1050px) {

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

    .home-practice-heading {
        grid-template-columns: 1fr;

        gap: 20px;
    }

}


/* MOBILE */

@media (max-width: 720px) {

    .home-practice {
        padding: 75px 0;
    }

    .home-practice-heading {
        margin-bottom: 36px;
    }

    .home-practice-grid {
        grid-template-columns: 1fr;
    }

    .home-practice-card {
        min-height: auto;
    }

    .home-practice-bottom {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }

}

/* =========================================================
   WHAT SETS US APART
========================================================= */

.home-difference {
    padding: 120px 0;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fbf9f4 100%
        );
}

.home-difference-grid {
    display: grid;

    grid-template-columns:
        minmax(380px,.9fr)
        minmax(0,1.1fr);

    gap: 90px;

    align-items: center;
}


/* =========================================================
   IMAGE SIDE
========================================================= */

.home-difference-media {
    position: relative;
}

.home-difference-image {
    position: relative;

    height: 630px;

    overflow: hidden;

    border-radius:
        80px 4px 4px 4px;

    background: #e8e3da;

    box-shadow:
        0 26px 65px
        rgba(17,28,41,.13);
}

.home-difference-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(13,23,34,.28),
            transparent 50%
        );
}

.home-difference-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
    transform: scaleX(-1);
}


/* DECORATIVE GOLD LINE */

.home-difference-media::before {
    content: "";

    position: absolute;

    left: -28px;
    top: 55px;

    width: 2px;
    height: 165px;

    background:
        var(--tml-gold);
}


/* =========================================================
   COURTS / LOCATIONS BELOW IMAGE
========================================================= */

.home-difference-courts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 8px;

    margin-top: 18px;

    padding-right: 35px;

    color:
        #737980;
}

.home-difference-courts span {
    font-size: 9px;
    font-weight: 800;

    letter-spacing: .075em;

    text-transform: uppercase;

    white-space: nowrap;

    transition:
        color .2s ease;
}

.home-difference-courts span:hover {
    color:
        var(--tml-gold-dark);
}

.home-difference-courts i {
    width: 3px;
    height: 3px;

    flex: 0 0 3px;

    border-radius: 50%;

    background:
        var(--tml-gold);
}


/* =========================================================
   QUOTE
========================================================= */

.home-difference-quote {
    position: absolute;

    right: -42px;
    bottom: 86px;

    z-index: 3;

    width: 285px;

    padding:
        25px 26px;

    border:
        1px solid
        rgba(198,154,72,.25);

    border-radius: 14px;

    background:
        rgba(17,28,41,.96);

    box-shadow:
        0 20px 40px
        rgba(17,28,41,.2);
}

.home-difference-quote > span {
    display: block;

    height: 30px;

    color:
        var(--tml-gold);

    font-family:
        Georgia,
        serif;

    font-size: 52px;

    line-height: .8;
}

.home-difference-quote p {
    margin:
        8px 0 0;

    color:
        rgba(255,255,255,.86);

    font-family:
        Georgia,
        serif;

    font-size: 16px;

    font-style: italic;

    line-height: 1.55;
}


/* =========================================================
   CONTENT
========================================================= */

.home-difference-content {
    max-width: 720px;
}

.home-difference-content h2 {
    margin: 0;

    color:
        var(--tml-navy);

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(40px,4.5vw,58px);

    font-weight: 500;

    line-height: 1.1;
}

.home-difference-content h2 em {
    display: block;

    color:
        var(--tml-gold-dark);

    font-style: italic;
    font-weight: 500;
}

.home-difference-intro {
    max-width: 660px;

    margin:
        24px 0 0;

    color:
        var(--tml-muted);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   VERTICAL PRINCIPLES
========================================================= */

.home-difference-list {
    position: relative;

    margin-top: 38px;
}

.home-difference-list::before {
    content: "";

    position: absolute;

    left: 19px;
    top: 12px;
    bottom: 16px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            var(--tml-gold),
            rgba(198,154,72,.12)
        );
}

.home-difference-item {
    position: relative;

    display: grid;

    grid-template-columns:
        42px 1fr;

    gap: 20px;

    padding:
        0 0 24px;
}

.home-difference-item:last-child {
    padding-bottom: 0;
}

.home-difference-number {
    position: relative;
    z-index: 2;

    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(198,154,72,.4);

    border-radius: 50%;

    background: #fff;

    color:
        var(--tml-gold-dark);

    font-family:
        Georgia,
        serif;

    font-size: 12px;

    transition:
        color .2s ease,
        background .2s ease,
        transform .2s ease;
}

.home-difference-item:hover
.home-difference-number {
    color: #fff;

    background:
        var(--tml-gold);

    transform:
        scale(1.05);
}

.home-difference-item h3 {
    margin:
        2px 0 7px;

    color:
        var(--tml-navy);

    font-family:
        Georgia,
        serif;

    font-size: 20px;

    font-weight: 600;
}

.home-difference-item p {
    max-width: 580px;

    margin: 0;

    color:
        var(--tml-muted);

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   LINK
========================================================= */

.home-difference-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-top: 34px;

    padding-bottom: 6px;

    border-bottom:
        1px solid
        rgba(198,154,72,.45);

    color:
        var(--tml-navy);

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;
}

.home-difference-link span {
    color:
        var(--tml-gold-dark);

    transition:
        transform .2s ease;
}

.home-difference-link:hover span {
    transform:
        translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .home-difference-grid {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .home-difference-media {
        max-width: 650px;

        margin:
            0 auto;
    }

    .home-difference-content {
        max-width: 760px;

        margin:
            0 auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

    .home-difference {
        padding:
            75px 0;
    }

    .home-difference-image {
        height: 470px;

        border-radius:
            45px 3px 3px 3px;
    }

    .home-difference-media::before {
        display: none;
    }

    .home-difference-quote {
        position: relative;

        right: auto;
        bottom: auto;

        width:
            calc(100% - 30px);

        margin:
            -45px auto 0;
    }

    .home-difference-courts {
        margin-top: 18px;

        padding-right: 0;

        gap: 6px;
    }

    .home-difference-courts span {
        font-size: 8px;
    }

    .home-difference-courts i {
        width: 2px;
        height: 2px;

        flex-basis: 2px;
    }

    .home-difference-content h2 {
        font-size:
            clamp(37px,11vw,50px);
    }

    .home-difference-item {
        gap: 15px;

        padding-bottom: 23px;
    }

    .home-difference-item h3 {
        font-size: 18px;
    }

}

/* =========================================================
   HOW TO BEGIN
========================================================= */

.home-process {
    position: relative;
    overflow: hidden;

    padding: 115px 0;

    background:
        var(--tml-navy);
}


/* SUBTLE BACKGROUND DETAIL */

.home-process::before {
    content: "§";

    position: absolute;

    right: -20px;
    top: -85px;

    color:
        rgba(255,255,255,.05);

    font-family:
        Georgia,
        serif;

    font-size: 430px;

    line-height: 1;
}


/* =========================================================
   HEADING
========================================================= */

.home-process-heading {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0,1.2fr)
        minmax(300px,.8fr);

    gap: 80px;

    align-items: end;

    margin-bottom: 70px;
}


/* EYEBROW */

.home-process .home-section-eyebrow {
    color:
        #d8b66d;
}


/* MAIN HEADING */

.home-process-heading h2 {
    max-width: 760px;

    margin: 0;

    color: #ffffff !important;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(40px,4.5vw,58px);

    font-weight: 500;

    line-height: 1.1;
}


/* GOLD PART */

.home-process-heading h2 em {
    display: block;

    color:
        #d8b66d !important;

    font-style: italic;

    font-weight: 500;
}


/* RIGHT INTRO TEXT */

/* =========================================================
   PROCESS PROMISE
========================================================= */

.home-process-promise {
    position: relative;

    max-width: 520px;

    padding:
        30px 0 26px 30px;

    border-left:
        2px solid
        var(--tml-gold);
}

.home-process-promise::before {
    content: "“";

    position: absolute;

    right: 5px;
    top: -28px;

    color:
        rgba(198,154,72,.12);

    font-family:
        Georgia,
        serif;

    font-size: 125px;

    line-height: 1;
}


/* SMALL GOLD LABEL */

.home-process-promise-label {
    display: block;

    margin-bottom: 13px;

    color:
        #d8b66d;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .14em;

    text-transform: uppercase;
}


/* MAIN STATEMENT */

.home-process-promise p {
    position: relative;
    z-index: 2;

    max-width: 470px;

    margin: 0;

    color:
        rgba(255,255,255,.72);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px;

    line-height: 1.5;
}

.home-process-promise p strong {
    display: block;

    margin-top: 3px;

    color: #fff;

    font-size: 27px;

    font-weight: 500;
}


/* SMALL BOTTOM DETAILS */

.home-process-promise-bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;

    margin-top: 22px;
}

.home-process-promise-bottom span {
    color:
        rgba(255,255,255,.5);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;
}

.home-process-promise-bottom i {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background:
        var(--tml-gold);
}


/* MOBILE */

@media (max-width: 720px) {

    .home-process-promise {
        max-width: none;

        padding:
            24px 0 20px 22px;
    }

    .home-process-promise p {
        font-size: 19px;
    }

    .home-process-promise p strong {
        font-size: 23px;
    }

}


/* =========================================================
   TIMELINE
========================================================= */

.home-process-timeline {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap: 0;

    margin-top: 20px;
}


/* CONNECTING LINE */

.home-process-timeline::before {
    content: "";

    position: absolute;

    left: 7%;
    right: 7%;
    top: 30px;

    height: 1px;

    background:
        linear-gradient(
            to right,
            rgba(198,154,72,.2),
            rgba(198,154,72,.8),
            rgba(198,154,72,.2)
        );
}


/* STEP */

.home-process-step {
    position: relative;

    padding-right: 34px;
}


/* ROUND NUMBER */

.home-process-marker {
    position: relative;

    z-index: 2;

    width: 61px;
    height: 61px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    border:
        1px solid
        rgba(198,154,72,.52);

    border-radius: 50%;

    background:
        var(--tml-navy);

    box-shadow:
        0 0 0 8px
        var(--tml-navy);

    transition:
        background .25s ease,
        border-color .25s ease;
}

.home-process-marker span {
    color:
        #d8b66d;

    font-family:
        Georgia,
        serif;

    font-size: 14px;
}


/* HOVER */

.home-process-step:hover
.home-process-marker {
    background:
        var(--tml-gold);

    border-color:
        var(--tml-gold);
}

.home-process-step:hover
.home-process-marker span {
    color: #fff;
}


/* =========================================================
   STEP TEXT
========================================================= */

/* SMALL TIME LABEL */

.home-process-small {
    display: block;

    margin-top: 5px;

    color:
        #d8b66d !important;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .13em;

    text-transform: uppercase;
}


/* STEP MAIN HEADING */

.home-process-step h3,
.home-process-step-content h3 {
    max-width: 245px;

    margin:
        0 0 12px;

    color: #ffffff !important;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;

    font-weight: 500;

    line-height: 1.35;
}


/* STEP DESCRIPTION */

.home-process-step p,
.home-process-step-content p {
    max-width: 250px;

    margin: 0;

    color:
        rgba(255,255,255,.62) !important;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   BOTTOM CALL SECTION
========================================================= */

.home-process-action {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 70px;

    padding:
        28px 32px;

    border-top:
        1px solid
        rgba(255,255,255,.12);

    border-bottom:
        1px solid
        rgba(255,255,255,.12);
}


/* SMALL TEXT */

.home-process-action > div > span {
    display: block;

    margin-bottom: 7px;

    color:
        #d8b66d !important;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .08em;
}


/* EMERGENCY DESCRIPTION */

.home-process-action strong {
    display: block;

    max-width: 760px;

    color:
        #ffffff !important;

    font-family:
        Georgia,
        serif;

    font-size: 17px;

    font-weight: 500;

    line-height: 1.55;
}


/* CALL BUTTON */

.home-process-action > a {
    min-height: 49px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding:
        0 25px;

    border-radius:
        999px;

    background:
        var(--tml-gold);

    color:
        #ffffff !important;

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;

    text-transform: uppercase;

    letter-spacing: .05em;

    white-space: nowrap;

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.home-process-action > a:hover {
    background:
        var(--tml-gold-dark);

    color: #ffffff;

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.15);
}

.home-process-action > a span {
    transition:
        transform .2s ease;
}

.home-process-action > a:hover span {
    transform:
        translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .home-process-heading {
        grid-template-columns:
            1fr;

        gap: 22px;
    }

    .home-process-timeline {
        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap:
            50px 25px;
    }

    .home-process-timeline::before {
        display: none;
    }

    .home-process-step h3,
    .home-process-step-content h3 {
        max-width: none;
    }

    .home-process-step p,
    .home-process-step-content p {
        max-width: 380px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

    .home-process {
        padding:
            75px 0;
    }

    .home-process-heading {
        margin-bottom:
            50px;
    }

    .home-process-heading h2 {
        font-size:
            clamp(37px,11vw,50px);
    }

    .home-process-timeline {
        display: block;

        margin-left: 8px;
    }

    .home-process-step {
        position: relative;

        display: grid;

        grid-template-columns:
            55px 1fr;

        gap: 17px;

        padding:
            0 0 36px;
    }


    /* MOBILE VERTICAL LINE */

    .home-process-step::before {
        content: "";

        position: absolute;

        left: 26px;
        top: 52px;
        bottom: 0;

        width: 1px;

        background:
            rgba(198,154,72,.3);
    }

    .home-process-step:last-child::before {
        display: none;
    }


    /* NUMBER */

    .home-process-marker {
        width: 53px;
        height: 53px;

        margin: 0;

        box-shadow:
            0 0 0 5px
            var(--tml-navy);
    }


    /* MOBILE TEXT */

    .home-process-step h3,
    .home-process-step-content h3 {
        max-width: none;

        color:
            #ffffff !important;

        font-size: 19px;
    }

    .home-process-step p,
    .home-process-step-content p {
        max-width: 440px;

        color:
            rgba(255,255,255,.64) !important;
    }


    /* BOTTOM CTA */

    .home-process-action {
        align-items:
            flex-start;

        flex-direction:
            column;

        margin-top:
            38px;

        padding:
            25px 0;
    }

    .home-process-action > a {
        width: 100%;
    }

}

/* =========================================================
   HOME - GOOGLE STYLE CLIENT REVIEWS
========================================================= */

.home-google-reviews {
    padding: 105px 0;

    background:
        linear-gradient(
            180deg,
            #eef5f5 0%,
            #eaf2f2 100%
        );
}


/* =========================================================
   SECTION HEADER
========================================================= */

.home-google-reviews-head {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 45px;

    margin-bottom: 48px;
}


.home-google-reviews-head-left {
    max-width: 780px;
}


/* =========================================================
   GOOGLE REVIEWS LOGO
========================================================= */

.home-google-reviews-brand {
    margin-bottom: 24px;
}


.home-google-reviews-brand img {
    display: block;

    width: auto;
    height: auto;

    max-width: 165px;
    max-height: 72px;

    object-fit: contain;
}


/* =========================================================
   HEADING
========================================================= */

.home-google-reviews-head h2 {
    margin:
        13px 0 14px;

    color:
        var(--tml-navy);

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(40px,4.2vw,60px);

    font-weight: 500;

    line-height: 1.08;
}


.home-google-reviews-head h2 em {
    color:
        var(--tml-gold-dark);

    font-style: italic;
    font-weight: 500;
}


.home-google-reviews-head p {
    max-width: 690px;

    margin: 0;

    color:
        var(--tml-muted);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   ALL REVIEWS BUTTON
========================================================= */

.home-google-reviews-all {
    flex: 0 0 auto;

    min-height: 50px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    padding:
        0 24px;

    border-radius: 6px;

    background:
        var(--tml-gold-dark);

    color: #fff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .07em;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


.home-google-reviews-all:hover {
    color: #fff;

    background:
        var(--tml-navy);

    transform:
        translateY(-3px);

    box-shadow:
        0 12px 26px
        rgba(17,28,41,.14);
}


.home-google-reviews-all span {
    font-size: 17px;

    line-height: 1;
}


/* =========================================================
   REVIEW GRID
========================================================= */

.home-google-reviews-grid {
    display: grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap: 24px;
}


/* =========================================================
   REVIEW CARD
========================================================= */

.home-google-review-card {
    position: relative;

    min-height: 325px;

    display: flex;
    flex-direction: column;

    padding:
        27px 26px 23px;

    overflow: hidden;

    border:
        1px solid
        rgba(17,28,41,.065);

    border-radius: 10px;

    background:
        #fff;

    box-shadow:
        0 10px 32px
        rgba(17,28,41,.055);

    transition:
        transform .35s cubic-bezier(.22,1,.36,1),
        border-color .35s ease,
        box-shadow .35s ease;
}


/* GOOGLE COLOUR HOVER LINE */

.home-google-review-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #4285f4 0 25%,
            #ea4335 25% 50%,
            #fbbc05 50% 75%,
            #34a853 75% 100%
        );

    transform:
        scaleX(0);

    transform-origin:
        left;

    transition:
        transform .35s ease;
}


.home-google-review-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(17,28,41,.11);

    box-shadow:
        0 23px 50px
        rgba(17,28,41,.1);
}


.home-google-review-card:hover::before {
    transform:
        scaleX(1);
}


/* =========================================================
   PROFILE AREA
========================================================= */

.home-google-review-profile {
    display: flex;

    align-items: center;

    gap: 14px;

    padding-right: 42px;
}


/* =========================================================
   PROFILE ICON
========================================================= */

.home-google-review-avatar {
    width: 54px;
    height: 54px;

    flex:
        0 0 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #e9f0fc,
            #d8e5f8
        );

    box-shadow:
        0 4px 12px
        rgba(17,28,41,.09);

    color:
        #5279c6;
}

.home-google-review-avatar img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    border-radius: 50%;
}


/* =========================================================
   NAME AND CASE
========================================================= */

.home-google-review-person {
    min-width: 0;
}


.home-google-review-person h3 {
    margin:
        0 0 5px;

    color:
        #1558c5;

    font-family:
        Arial,
        sans-serif;

    font-size: 18px;

    font-weight: 500;

    line-height: 1.2;
}


.home-google-review-person span {
    display: block;

    color:
        #747474;

    font-family:
        Arial,
        sans-serif;

    font-size: 10px;

    line-height: 1.45;
}


/* =========================================================
   REAL GOOGLE G IMAGE
========================================================= */

.home-google-review-source {
    position: absolute;

    top: 27px;
    right: 24px;

    width: 25px;
    height: 25px;

    display: flex;

    align-items: center;
    justify-content: center;
}


.home-google-review-source img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* =========================================================
   STARS
========================================================= */

.home-google-review-stars {
    display: flex;

    gap: 2px;

    margin-top: 24px;

    color:
        #ff9800;

    font-size: 21px;

    line-height: 1;
}


/* =========================================================
   REVIEW TEXT
========================================================= */

.home-google-review-text {
    margin:
        22px 0 0;

    color:
        #34393f;

    font-family:
        Arial,
        sans-serif;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.82;
}


/* =========================================================
   QUOTE
========================================================= */

.home-google-review-quote {
    margin-top: auto;

    padding-top: 18px;

    color:
        #d7dde2;

    font-family:
        Georgia,
        serif;

    font-size: 38px;

    font-weight: 700;

    line-height: .65;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .home-google-reviews {
        padding:
            90px 0;
    }


    .home-google-reviews-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }


    .home-google-review-card:last-child {
        grid-column:
            1 / -1;

        width:
            calc(50% - 12px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

    .home-google-reviews {
        padding:
            72px 0;
    }


    .home-google-reviews-head {
        flex-direction: column;

        align-items: flex-start;

        gap: 24px;

        margin-bottom: 34px;
    }


    .home-google-reviews-brand {
        margin-bottom: 18px;
    }


    .home-google-reviews-brand img {
        max-width: 145px;
        max-height: 62px;
    }


    .home-google-reviews-head h2 {
        font-size:
            clamp(38px,11vw,50px);
    }


    .home-google-reviews-head p {
        font-size: 14px;

        line-height: 1.75;
    }


    .home-google-reviews-all {
        min-height: 46px;

        padding:
            0 20px;
    }


    .home-google-reviews-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .home-google-review-card,
    .home-google-review-card:last-child {
        grid-column: auto;

        width: 100%;

        min-height: 300px;

        padding:
            23px 20px 20px;
    }


    .home-google-review-profile {
        gap: 12px;

        padding-right: 37px;
    }


    .home-google-review-avatar {
        width: 49px;
        height: 49px;

        flex-basis: 49px;
    }


    .home-google-review-person h3 {
        font-size: 17px;
    }


    .home-google-review-source {
        top: 23px;
        right: 19px;

        width: 23px;
        height: 23px;
    }


    .home-google-review-stars {
        margin-top: 20px;

        font-size: 19px;
    }


    .home-google-review-text {
        margin-top: 18px;

        font-size: 14px;

        line-height: 1.75;
    }


    .home-google-review-quote {
        padding-top: 17px;

        font-size: 34px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .home-google-review-card,
    .home-google-reviews-all {
        transition: none;
    }


    .home-google-review-card:hover,
    .home-google-reviews-all:hover {
        transform: none;
    }

}

/* =========================================================
   MODERN PRIVACY SECTION
========================================================= */

.home-privacy-modern {
    position: relative;
    overflow: hidden;
    padding: 120px 0;

    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(198,154,72,.12),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #0d1823 0%,
            #132536 55%,
            #0c1824 100%
        );
}

.home-privacy-modern-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0,.9fr)
        minmax(500px,1.1fr);

    gap: 95px;

    align-items: center;
}


/* WATERMARK */

.home-privacy-watermark {
    position: absolute;

    left: -80px;
    bottom: -130px;

    opacity: .035;
}

.home-privacy-watermark svg {
    width: 520px;
    height: 520px;

    fill: none;
    stroke: #fff;
    stroke-width: .65;
}


/* LEFT */

.home-privacy-modern-intro {
    max-width: 620px;
}

.home-section-eyebrow--light {
    color: #d8b56b;
}

.home-privacy-modern-intro h2 {
    margin: 14px 0 0;

    color: white !important;

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(42px,4.6vw,64px);

    font-weight: 500;

    line-height: 1.08;
}

.home-privacy-modern-intro h2 em {
    display: block;

    color: #d8b56b;

    font-style: italic;
    font-weight: 500;
}

.home-privacy-modern-intro > p {
    margin: 28px 0 0;

    color:
        rgba(255,255,255,.62);

    font-size: 17px;

    line-height: 1.9;
}


/* PRIVACY SEAL */

.home-privacy-seal {
    display: inline-flex;
    align-items: center;

    gap: 13px;

    margin-top: 34px;

    padding:
        13px 18px;

    border:
        1px solid
        rgba(216,181,107,.22);

    border-radius: 999px;

    background:
        rgba(255,255,255,.04);
}

.home-privacy-seal > span {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(216,181,107,.14);

    color:
        #d8b56b;

    font-weight: 800;
}

.home-privacy-seal strong {
    display: block;

    color: #fff;

    font-size: 12px;
}

.home-privacy-seal small {
    display: block;

    margin-top: 2px;

    color:
        rgba(255,255,255,.45);

    font-size: 10px;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.home-privacy-modern-list {
    position: relative;
}


/* CONNECTING LINE */

.home-privacy-modern-list::before {
    content: "";

    position: absolute;

    left: 80px;

    top: 25px;
    bottom: 48px;

    width: 2px;

    background:
        rgba(216,181,107,.25);
}


/* ROW */

.home-privacy-modern-item {
    position: relative;

    display: grid;

    grid-template-columns:
        36px 54px 1fr;

    gap: 18px;

    align-items: start;

    padding:
        28px 0;

    border-bottom:
        1px solid
        rgba(255,255,255,.09);

    transition:
        transform .25s ease;
}

.home-privacy-modern-item:first-child {
    padding-top: 0;
}

.home-privacy-modern-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.home-privacy-modern-item:hover {
    transform:
        translateX(8px);
}


/* NUMBER */

.home-privacy-modern-number {
    padding-top: 13px;

    color:
        rgba(216,181,107,.65);

    font-family:
        Georgia,
        serif;

    font-size: 19px;
}


/* ICON */

.home-privacy-modern-icon {
    position: relative;
    z-index: 2;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        2px solid
        rgba(216,181,107,.3);

    border-radius: 50%;

    background:
        #142638;

    color:
        #d8b56b;

    transition:
        background .2s ease,
        color .2s ease;
}

.home-privacy-modern-icon svg {
    width: 23px;
    height: 23px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-privacy-modern-item:hover
.home-privacy-modern-icon {
    background:
        #d8b56b;

    color:
        #102131;
}


/* TEXT */

.home-privacy-modern-item h3 {
    margin:
        4px 0 8px;

    color: #d8b56b !important;

    font-family:
        Georgia,
        serif;

    font-size: 22px;

    font-weight: 500;
}

.home-privacy-modern-item p {
    max-width: 540px;

    margin: 0;

    color:
        rgba(255,255,255,.52);

    font-size: 14px;

    line-height: 1.8;
}


/* TABLET */

@media (max-width: 1050px) {

    .home-privacy-modern-grid {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .home-privacy-modern-list {
        max-width: 760px;
    }

}


/* MOBILE */

@media (max-width: 720px) {

    .home-privacy-modern {
        padding:
            80px 0;
    }

    .home-privacy-modern-grid {
        gap: 50px;
    }

    .home-privacy-modern-item {
        grid-template-columns:
            28px 46px 1fr;

        gap: 12px;

        padding:
            22px 0;
    }

    .home-privacy-modern-list::before {
        left: 51px;
    }

    .home-privacy-modern-icon {
        width: 46px;
        height: 46px;
    }

    .home-privacy-modern-icon svg {
        width: 20px;
        height: 20px;
    }

    .home-privacy-modern-item h3 {
        font-size: 19px;
    }

    .home-privacy-modern-item p {
        font-size: 13px;
    }

    .home-privacy-watermark svg {
        width: 320px;
        height: 320px;
    }

}

/* =========================================================
   HOME FAQ - SPLIT PANEL
========================================================= */

.home-faq-split {
    position: relative;

    overflow: hidden;

    padding:
        105px 0;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8f5ef 100%
        );
}


/* =========================================================
   HEADER
========================================================= */

.home-faq-split-head {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(340px, .58fr);

    align-items: end;

    gap: 70px;

    margin-bottom: 48px;
}


.home-faq-split-title h2 {
    max-width: 720px;

    margin:
        14px 0 0;

    color:
        var(--tml-navy);

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(42px, 4.4vw, 62px);

    font-weight: 500;

    line-height: 1.08;
}


.home-faq-split-title h2 em {
    display: block;

    color:
        var(--tml-gold-dark);

    font-style: italic;

    font-weight: 500;
}


/* =========================================================
   INTRO PANEL
========================================================= */

.home-faq-split-intro {
    position: relative;

    max-width: 500px;

    padding:
        27px 29px;

    border-left:
        3px solid
        var(--tml-gold);

    border-radius:
        0 14px 14px 0;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.92),
            rgba(248,244,236,.98)
        );

    box-shadow:
        0 14px 34px
        rgba(17,28,41,.065);
}


.home-faq-split-intro::after {
    content: "";

    position: absolute;

    right: 20px;
    top: 18px;

    width: 66px;
    height: 66px;

    border-radius: 50%;

    background:
        rgba(198,154,72,.055);

    pointer-events: none;
}


.home-faq-split-intro-label {
    position: relative;
    z-index: 2;

    display: block;

    margin-bottom: 10px;

    color:
        var(--tml-gold-dark);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .13em;

    text-transform: uppercase;
}


.home-faq-split-intro-lead {
    position: relative;
    z-index: 2;

    margin: 0;

    color:
        var(--tml-navy);

    font-family:
        Georgia,
        serif;

    font-size: 18px;

    line-height: 1.55;
}


.home-faq-split-intro-note {
    position: relative;
    z-index: 2;

    margin:
        10px 0 0;

    color:
        var(--tml-muted);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   MAIN SPLIT LAYOUT
========================================================= */

.home-faq-split-layout {
    display: grid;

    grid-template-columns:
        minmax(360px, .72fr)
        minmax(0, 1.13fr);

    gap: 22px;

    align-items: stretch;
}


/* =========================================================
   LEFT QUESTION LIST
========================================================= */

.home-faq-split-list {
    overflow: hidden;

    border:
        1px solid
        rgba(17,28,41,.11);

    border-radius:
        22px;

    background:
        rgba(255,255,255,.72);
}


.home-faq-split-item {
    width: 100%;

    min-height: 94px;

    display: grid;

    grid-template-columns:
        42px 1fr;

    gap: 15px;

    align-items: center;

    padding:
        20px 22px;

    border: 0;

    border-bottom:
        1px solid
        rgba(17,28,41,.10);

    background:
        transparent;

    text-align: left;

    cursor: pointer;

    transition:
        background .28s ease,
        color .28s ease;
}


.home-faq-split-item:last-child {
    border-bottom: 0;
}


/* NUMBER */

.home-faq-split-no {
    color:
        var(--tml-gold-dark);

    font-family:
        Georgia,
        serif;

    font-size: 14px;

    font-weight: 500;

    line-height: 1;
}


/* QUESTION */

.home-faq-split-question {
    color:
        var(--tml-navy);

    font-family:
        Georgia,
        serif;

    font-size: 18px;

    font-weight: 500;

    line-height: 1.45;

    transition:
        color .28s ease;
}


/* HOVER */

.home-faq-split-item:not(.is-active):hover {
    background:
        rgba(198,154,72,.06);
}


.home-faq-split-item:not(.is-active):hover
.home-faq-split-question {
    color:
        var(--tml-gold-dark);
}


/* ACTIVE */

.home-faq-split-item.is-active {
    background:
        var(--tml-navy);
}


.home-faq-split-item.is-active
.home-faq-split-no {
    color:
        #d8b56b;
}


.home-faq-split-item.is-active
.home-faq-split-question {
    color:
        #fff;
}


/* =========================================================
   RIGHT ANSWER PANEL
========================================================= */

.home-faq-split-panel {
    position: relative;

    min-height: 100%;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding:
        62px 58px;

    border-radius:
        24px 24px 70px 24px;

    background:
        linear-gradient(
            145deg,
            #111d2b 0%,
            #132538 100%
        );

    box-shadow:
        0 18px 42px
        rgba(17,28,41,.10);
}


.home-faq-split-panel-inner {
    position: relative;

    z-index: 2;

    max-width: 720px;
}


/* ANSWER NUMBER */

.home-faq-split-panel-no {
    display: block;

    margin-bottom: 24px;

    color:
        #d8b56b;

    font-family:
        Georgia,
        serif;

    font-size: 18px;

    font-weight: 600;

    letter-spacing: .03em;
}


/* ANSWER QUESTION */

.home-faq-split-panel h3 {
    max-width: 690px;

    margin:
        0 0 27px;

    color: white !important;

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(32px, 3.2vw, 50px);

    font-weight: 500;

    line-height: 1.16;

    letter-spacing: -.018em;
}


/* ANSWER */

.home-faq-split-panel p {
    max-width: 730px;

    margin: 0;

    color:
        rgba(255,255,255,.66);

    font-size: 15px;

    line-height: 1.9;
}


/* WATERMARK */

.home-faq-split-watermark {
    position: absolute;

    right: 34px;
    bottom: -40px;

    color:
        rgba(255,255,255,.025);

    font-family:
        Georgia,
        serif;

    font-size: 235px;

    font-weight: 700;

    line-height: 1;

    user-select: none;

    pointer-events: none;
}


/* =========================================================
   PANEL CHANGE ANIMATION
========================================================= */

.home-faq-split-panel-inner {
    transition:
        opacity .2s ease,
        transform .28s ease;
}


.home-faq-split-panel.is-changing
.home-faq-split-panel-inner {
    opacity: 0;

    transform:
        translateY(8px);
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.home-faq-split-footer {
    margin-top: 28px;

    display: grid;

    grid-template-columns:
        42px 1fr auto;

    gap: 16px;

    align-items: center;

    padding:
        18px 20px;

    border:
        1px solid
        rgba(17,28,41,.08);

    border-radius:
        14px;

    background:
        rgba(255,255,255,.72);
}


.home-faq-split-footer-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--tml-navy);

    color:
        #d8b56b;

    font-family:
        Georgia,
        serif;

    font-size: 17px;
}


.home-faq-split-footer p {
    margin: 0;

    color:
        var(--tml-muted);

    font-size: 14px;

    line-height: 1.65;
}


.home-faq-split-footer > a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 43px;

    padding:
        0 18px;

    border-radius:
        999px;

    background:
        var(--tml-navy);

    color: #fff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .04em;

    text-decoration: none;

    text-transform: uppercase;

    transition:
        background .2s ease,
        transform .2s ease;
}


.home-faq-split-footer > a:hover {
    color: #fff;

    background:
        var(--tml-gold-dark);

    transform:
        translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .home-faq-split-head {
        grid-template-columns:
            1fr;

        gap: 28px;
    }


    .home-faq-split-intro {
        max-width: 620px;
    }


    .home-faq-split-layout {
        grid-template-columns:
            minmax(320px, .85fr)
            minmax(0, 1fr);
    }


    .home-faq-split-panel {
        padding:
            48px 40px;
    }


    .home-faq-split-panel h3 {
        font-size:
            clamp(30px, 4vw, 42px);
    }

}


/* =========================================================
   MOBILE / SMALL TABLET
========================================================= */

@media (max-width: 820px) {

    .home-faq-split {
        padding:
            75px 0;
    }


    .home-faq-split-head {
        margin-bottom: 34px;
    }


    .home-faq-split-title h2 {
        font-size:
            clamp(38px, 10vw, 52px);
    }


    .home-faq-split-layout {
        grid-template-columns:
            1fr;

        gap: 18px;
    }


    .home-faq-split-list {
        border-radius:
            18px;
    }


    .home-faq-split-item {
        min-height: 78px;

        grid-template-columns:
            34px 1fr;

        gap: 10px;

        padding:
            17px 16px;
    }


    .home-faq-split-question {
        font-size: 16px;
    }


    .home-faq-split-panel {
        min-height: 380px;

        padding:
            40px 28px;

        border-radius:
            20px 20px 50px 20px;
    }


    .home-faq-split-panel-no {
        margin-bottom: 18px;
    }


    .home-faq-split-panel h3 {
        margin-bottom: 20px;

        font-size:
            clamp(29px, 8vw, 38px);
    }


    .home-faq-split-panel p {
        font-size: 14px;

        line-height: 1.8;
    }


    .home-faq-split-watermark {
        right: 18px;

        font-size: 180px;
    }


    .home-faq-split-footer {
        grid-template-columns:
            38px 1fr;

        padding:
            17px;
    }


    .home-faq-split-footer > a {
        grid-column:
            1 / -1;

        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .home-faq-split {
        padding:
            62px 0;
    }


    .home-faq-split-intro {
        padding:
            22px 20px;
    }


    .home-faq-split-title h2 {
        font-size:
            36px;
    }


    .home-faq-split-item {
        min-height: 76px;
    }


    .home-faq-split-question {
        font-size: 15px;

        line-height: 1.4;
    }


    .home-faq-split-panel {
        min-height: 360px;

        padding:
            34px 23px;
    }


    .home-faq-split-panel h3 {
        font-size: 29px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .home-faq-split-item,
    .home-faq-split-panel-inner,
    .home-faq-split-footer > a {
        transition: none;
    }

}

/* =========================================================
   DARK FAMILY LAW SERVICES
========================================================= */

.home-services-dark {
    position: relative;
    overflow: hidden;

    padding: 115px 0;

    background:
        radial-gradient(
            circle at 85% 8%,
            rgba(198,154,72,.11),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #0d1925 0%,
            #15283a 55%,
            #0d1a27 100%
        );
}


/* SUBTLE BACKGROUND DETAIL */

.home-services-dark::before {
    content: "§";

    position: absolute;

    right: -40px;
    bottom: -160px;

    color:
        rgba(255,255,255,.025);

    font-family: Georgia, serif;

    font-size: 520px;

    line-height: 1;

    pointer-events: none;
}


/* =========================================================
   HEADING
========================================================= */

.home-services-dark-head {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr .65fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 52px;
}

.home-services-dark-head h2 {
    max-width: 760px;

    margin: 14px 0 0;

    color: white !important;

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(42px,4.7vw,64px);

    font-weight: 500;

    line-height: 1.07;
}

.home-services-dark-head h2 em {
    color:
        #d8b56b;

    font-style: italic;

    font-weight: 500;
}

.home-services-dark-intro p {
    max-width: 480px;

    margin: 0;

    color:
        rgba(255,255,255,.56);

    font-size: 15px;

    line-height: 1.8;
}

.home-services-dark-intro > a {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-top: 18px;

    padding-bottom: 5px;

    border-bottom:
        1px solid rgba(216,181,107,.5);

    color: #fff;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .06em;

    text-decoration: none;

    text-transform: uppercase;
}

.home-services-dark-intro > a span {
    color:
        #d8b56b;

    transition:
        transform .2s ease;
}

.home-services-dark-intro > a:hover span {
    transform:
        translateX(5px);
}


/* =========================================================
   GRID
========================================================= */

.home-services-dark-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap: 18px;
}


/* =========================================================
   CARD
========================================================= */

.home-service-dark-card {
    position: relative;

    min-height: 330px;

    display: flex;
    flex-direction: column;

    padding:
        28px 25px 25px;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.075),
            rgba(255,255,255,.025)
        );

    color: inherit;

    text-decoration: none;

    backdrop-filter:
        blur(7px);

    transition:
        transform .28s ease,
        border-color .28s ease,
        background .28s ease,
        box-shadow .28s ease;
}


/* GOLD GLOW */

.home-service-dark-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -75px;
    bottom: -75px;

    border-radius: 50%;

    background:
        rgba(198,154,72,.08);

    transition:
        transform .4s ease;
}

.home-service-dark-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(216,181,107,.35);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.11),
            rgba(255,255,255,.045)
        );

    box-shadow:
        0 20px 42px
        rgba(0,0,0,.18);
}

.home-service-dark-card:hover::before {
    transform:
        scale(1.55);
}


/* NUMBER */

.home-service-dark-number {
    position: absolute;

    top: 22px;
    right: 22px;

    color:
        rgba(255,255,255,.22);

    font-family:
        Georgia,
        serif;

    font-size: 13px;

    font-style: italic;
}


/* =========================================================
   ICON
========================================================= */

.home-service-dark-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border:
        1px solid
        rgba(216,181,107,.27);

    border-radius: 14px;

    background:
        rgba(216,181,107,.09);

    color:
        #d8b56b;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.home-service-dark-icon svg {
    width: 23px;
    height: 23px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-service-dark-card:hover
.home-service-dark-icon {
    background:
        #d8b56b;

    color:
        #102131;

    transform:
        translateY(-3px);
}


/* =========================================================
   TEXT
========================================================= */

.home-service-dark-card h3 {
    margin:
        0 0 12px;

    color: #fff;

    font-family:
        Georgia,
        serif;

    font-size: 21px;

    font-weight: 500;

    line-height: 1.28;
}

.home-service-dark-card p {
    position: relative;
    z-index: 2;

    margin:
        0 0 24px;

    color:
        rgba(255,255,255,.53);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   LINK
========================================================= */

.home-service-dark-link {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: auto;

    color:
        #d8b56b;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .07em;

    text-transform: uppercase;
}

.home-service-dark-link b {
    font-size: 16px;

    font-weight: 400;

    transition:
        transform .2s ease;
}

.home-service-dark-card:hover
.home-service-dark-link b {
    transform:
        translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .home-services-dark-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

    .home-services-dark-head {
        grid-template-columns: 1fr;

        gap: 24px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

    .home-services-dark {
        padding:
            75px 0;
    }


    .home-services-dark-head {
        margin-bottom:
            38px;
    }


    .home-services-dark-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .home-service-dark-card {
        min-height: auto;

        padding:
            24px 21px;
    }


    .home-service-dark-card h3 {
        font-size: 19px;
    }


    .home-service-dark-card p {
        font-size: 12px;
    }

}

/* =========================================================
   WHY CHOOSE US - CENTERPIECE DESIGN
========================================================= */

.home-depth {
    position: relative;
    overflow: hidden;

    padding: 115px 0;

    background:
        linear-gradient(
            180deg,
            #f8f5ef 0%,
            #fff 100%
        );
}


/* HEADING */

.home-depth-head {
    max-width: 860px;
    margin: 0 auto 65px;
    text-align: center;
    margin-top: -100px;
}

.home-depth-head .home-section-eyebrow {
    justify-content: center;
}

.home-depth-head h2 {
    margin: 12px 0 0;

    color: var(--tml-navy);

    font-family: Georgia, serif;

    font-size:
        clamp(42px,4.8vw,64px);

    font-weight: 500;

    line-height: 1.08;
}

.home-depth-head h2 em {
    color: var(--tml-gold-dark);

    font-style: italic;
    font-weight: 500;
}


/* =========================================================
   STAGE
========================================================= */

.home-depth-stage {
    display: grid;

    grid-template-columns:
        minmax(250px,.8fr)
        minmax(320px,430px)
        minmax(250px,.8fr);

    gap: 45px;

    align-items: center;
}


/* CENTER */

.home-depth-center {
    position: relative;
}

.home-depth-image {
    position: relative;

    height: 650px;

    overflow: hidden;

    border-radius:
        30px 30px 70px 30px;

    background: #ddd5c9;

    box-shadow:
        0 28px 65px
        rgba(17,28,41,.15);
}

.home-depth-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* QUOTE OVERLAY */

.home-depth-quote {
    position: absolute;

    left: 24px;
    right: 24px;
    bottom: 24px;

    padding:
        24px 24px 22px;

    border:
        1px solid
        rgba(255,255,255,.16);

    border-radius: 18px;

    background:
        rgba(15,27,39,.90);

    backdrop-filter:
        blur(9px);

    box-shadow:
        0 16px 35px
        rgba(0,0,0,.17);
}

.home-depth-quote-mark {
    display: block;

    height: 25px;

    color: var(--tml-gold);

    font-family:
        Georgia,
        serif;

    font-size: 48px;

    line-height: .7;
}

.home-depth-quote p {
    margin:
        7px 0 15px;

    color:
        rgba(255,255,255,.88);

    font-family:
        Georgia,
        serif;

    font-size: 17px;

    font-style: italic;

    line-height: 1.55;
}

.home-depth-quote strong {
    display: block;

    color: #fff;

    font-size: 12px;

    letter-spacing: .06em;

    text-transform: uppercase;
}

.home-depth-quote small {
    display: block;

    margin-top: 2px;

    color:
        var(--tml-gold);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .12em;
}


/* =========================================================
   SIDE POINTS
========================================================= */

.home-depth-side {
    display: flex;
    flex-direction: column;

    gap: 34px;
}

.home-depth-point {
    position: relative;

    display: grid;

    grid-template-columns:
        45px 1fr;

    gap: 16px;

    align-items: start;
}


/* CONNECTOR */

.home-depth-side-left
.home-depth-point::after,
.home-depth-side-right
.home-depth-point::before {
    content: "";

    position: absolute;

    top: 23px;

    width: 38px;
    height: 1px;

    background:
        linear-gradient(
            to right,
            rgba(198,154,72,.6),
            rgba(198,154,72,.08)
        );
}

.home-depth-side-left
.home-depth-point::after {
    right: -42px;
}

.home-depth-side-right
.home-depth-point::before {
    left: -42px;

    transform:
        rotate(180deg);
}


/* NUMBER */

.home-depth-number {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(198,154,72,.35);

    border-radius: 50%;

    background: #fff;

    color:
        var(--tml-gold-dark);

    font-family:
        Georgia,
        serif;

    font-size: 13px;

    font-style: italic;

    box-shadow:
        0 8px 18px
        rgba(17,28,41,.05);
}


/* TEXT */

.home-depth-point h3 {
    margin:
        0 0 7px;

    color:
        var(--tml-navy);

    font-family:
        Georgia,
        serif;

    font-size: 20px;

    font-weight: 600;

    line-height: 1.3;
}

.home-depth-point p {
    margin: 0;

    color:
        var(--tml-muted);

    font-size: 13px;

    line-height: 1.75;
}


/* STAGGER */

.home-depth-side-left
.home-depth-point:nth-child(1) {
    transform:
        translateY(-35px);
}

.home-depth-side-left
.home-depth-point:nth-child(2) {
    transform:
        translateY(35px);
}

.home-depth-side-right
.home-depth-point:nth-child(1) {
    transform:
        translateY(-65px);
}

.home-depth-side-right
.home-depth-point:nth-child(2) {
    transform:
        translateY(0);
}

.home-depth-side-right
.home-depth-point:nth-child(3) {
    transform:
        translateY(65px);
}


/* HOVER */

.home-depth-point {
    transition:
        transform .25s ease;
}

.home-depth-point:hover
.home-depth-number {
    background:
        var(--tml-gold);

    color: #fff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .home-depth-stage {
        grid-template-columns:
            1fr 390px 1fr;

        gap: 28px;
    }

    .home-depth-point h3 {
        font-size: 18px;
    }

    .home-depth-point p {
        font-size: 12px;
    }

}


/* =========================================================
   MOBILE / SMALL TABLET
========================================================= */

@media (max-width: 900px) {

    .home-depth-stage {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    .home-depth-center {
        order: 1;

        max-width: 480px;

        margin:
            0 auto;
    }

    .home-depth-side-left {
        order: 2;
    }

    .home-depth-side-right {
        order: 3;
    }

    .home-depth-side {
        max-width: 700px;

        width: 100%;

        margin:
            0 auto;

        gap: 0;
    }

    .home-depth-point {
        padding:
            22px 0;

        border-bottom:
            1px solid
            rgba(17,28,41,.09);

        transform:
            none !important;
    }

    .home-depth-side-left
    .home-depth-point::after,
    .home-depth-side-right
    .home-depth-point::before {
        display: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

    .home-depth {
        padding:
            75px 0;
    }

    .home-depth-head {
        margin-bottom:
            42px;
    }

    .home-depth-image {
        height: 500px;

        border-radius:
            24px 24px 50px 24px;
    }

    .home-depth-quote {
        left: 14px;
        right: 14px;
        bottom: 14px;

        padding:
            20px 18px;
    }

    .home-depth-quote p {
        font-size: 15px;
    }

    .home-depth-point {
        grid-template-columns:
            40px 1fr;

        gap: 13px;
    }

    .home-depth-number {
        width: 38px;
        height: 38px;
    }

    .home-depth-point h3 {
        font-size: 18px;
    }

}

/* =========================================================
   UNIQUE HOW WE WORK SECTION
========================================================= */

.tml-workflow-new {
    position: relative;
    overflow: hidden;
    padding: 115px 0 0;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(198,154,72,.10),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            #0d1925,
            #15283a 55%,
            #0d1a27
        );
}


/* HEADING */

.tml-workflow-new-head {
    max-width: 760px;
    margin: 0 auto 65px;
    text-align: center;
}

.tml-workflow-new-head
.home-section-eyebrow {
    justify-content: center;
}

.tml-workflow-new-head h2 {
    margin: 14px 0 0;

    color: white !important;

    font-family: Georgia, serif;
    font-size: clamp(42px,4.7vw,64px);
    font-weight: 500;
    line-height: 1.08;
}

.tml-workflow-new-head h2 em {
    color: #d8b56b;
    font-style: italic;
    font-weight: 500;
}

.tml-workflow-new-head > p {
    max-width: 560px;
    margin: 20px auto 0;

    color: rgba(255,255,255,.55);

    font-size: 15px;
    line-height: 1.8;
}


/* JOURNEY */

.tml-workflow-new-journey {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap: 24px;
}

.tml-workflow-new-line {
    position: absolute;

    left: 12%;
    right: 12%;
    top: 58px;

    height: 1px;

    background:
        linear-gradient(
            to right,
            rgba(216,181,107,.15),
            rgba(216,181,107,.75),
            rgba(216,181,107,.15)
        );
}


/* STEP CARD */

.tml-workflow-new-step {
    position: relative;
    z-index: 2;

    min-height: 355px;

    padding: 28px 28px 30px;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.025)
        );

    backdrop-filter: blur(8px);

    transition:
        transform .28s ease,
        border-color .28s ease,
        background .28s ease;
}

.tml-workflow-new-step:hover {
    transform: translateY(-7px);

    border-color:
        rgba(216,181,107,.35);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.04)
        );
}


/* STEP TOP */

.tml-workflow-new-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 34px;
}

.tml-workflow-new-number {
    color:
        rgba(216,181,107,.42);

    font-family: Georgia, serif;
    font-size: 42px;
    line-height: 1;
}

.tml-workflow-new-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(216,181,107,.32);

    border-radius: 50%;

    background: #14283a;

    color: #d8b56b;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.tml-workflow-new-icon svg {
    width: 24px;
    height: 24px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.tml-workflow-new-step:hover
.tml-workflow-new-icon {
    background: #d8b56b;
    color: #102131;

    transform: scale(1.06);
}


/* STEP TEXT */

.tml-workflow-new-step h3 {
    margin: 0 0 13px;

    color: white !important;

    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 500;
}

.tml-workflow-new-step > p {
    margin: 0;

    color:
        rgba(255,255,255,.54);

    font-size: 14px;
    line-height: 1.8;
}

.tml-workflow-new-meta {
    display: block;

    margin-top: 20px;

    color: #d8b56b;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .06em;
    text-transform: uppercase;
}


/* =========================================================
   COUNTERS
========================================================= */

.tml-workflow-new-stats {
    display: grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    margin-top: 64px;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 18px;

    background:
        rgba(255,255,255,.035);
}

.tml-workflow-new-stat {
    padding: 30px 20px;

    text-align: center;
}

.tml-workflow-new-stat +
.tml-workflow-new-stat {
    border-left:
        1px solid
        rgba(255,255,255,.09);
}

.tml-workflow-new-stat strong {
    display: block;

    color: #d8b56b;

    font-family: Georgia, serif;

    font-size:
        clamp(35px,3.4vw,48px);

    font-weight: 500;

    line-height: 1;
}

.tml-workflow-new-stat span {
    display: block;

    margin-top: 9px;

    color:
        rgba(255,255,255,.52);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .10em;

    text-transform: uppercase;
}


/* =========================================================
   MARQUEE
========================================================= */

.tml-workflow-new-marquee {
    margin-top: 60px;

    overflow: hidden;

    border-top:
        1px solid
        rgba(216,181,107,.2);

    border-bottom:
        1px solid
        rgba(216,181,107,.2);

    background: #b9862d;
}

.tml-workflow-new-marquee-track {
    display: flex;

    width: max-content;

    animation:
        tmlWorkflowNewMarquee
        28s linear infinite;
}

.tml-workflow-new-marquee:hover
.tml-workflow-new-marquee-track {
    animation-play-state: paused;
}

.tml-workflow-new-marquee-group {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    min-height: 54px;
}

.tml-workflow-new-marquee-group span {
    padding: 0 24px;

    color: #fff;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .08em;

    text-transform: uppercase;

    white-space: nowrap;
}

.tml-workflow-new-marquee-group i {
    width: 5px;
    height: 5px;

    flex: 0 0 5px;

    transform: rotate(45deg);

    background:
        rgba(255,255,255,.62);
}

@keyframes tmlWorkflowNewMarquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* TABLET */

@media (max-width: 1000px) {

    .tml-workflow-new-journey {
        grid-template-columns: 1fr;
    }

    .tml-workflow-new-line {
        display: none;
    }

    .tml-workflow-new-step {
        min-height: auto;
    }

    .tml-workflow-new-stats {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

    .tml-workflow-new-stat:nth-child(3) {
        border-left: 0;

        border-top:
            1px solid
            rgba(255,255,255,.09);
    }

    .tml-workflow-new-stat:nth-child(4) {
        border-top:
            1px solid
            rgba(255,255,255,.09);
    }

}


/* MOBILE */

@media (max-width: 720px) {

    .tml-workflow-new {
        padding: 75px 0 0;
    }

    .tml-workflow-new-head {
        margin-bottom: 40px;
    }

    .tml-workflow-new-step {
        padding: 24px 21px;
    }

    .tml-workflow-new-number {
        font-size: 34px;
    }

    .tml-workflow-new-icon {
        width: 50px;
        height: 50px;
    }

    .tml-workflow-new-step h3 {
        font-size: 21px;
    }

    .tml-workflow-new-stats {
        margin-top: 40px;

        border-radius: 14px;
    }

    .tml-workflow-new-stat {
        padding: 25px 12px;
    }

    .tml-workflow-new-marquee {
        margin-top: 42px;
    }

    .tml-workflow-new-marquee-group {
        min-height: 48px;
    }

    .tml-workflow-new-marquee-group span {
        padding: 0 17px;

        font-size: 9px;
    }

}

/* =========================================================
   HOMEPAGE ARTICLES - UNIQUE CLASSES
========================================================= */

.tml-home-blog {
    padding: 110px 0;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8f5ef 100%
        );
}


/* =========================================================
   HEADING
========================================================= */

.tml-home-blog-head {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 46px;
}

.tml-home-blog-head > div {
    max-width: 720px;
}

.tml-home-blog-head h2 {
    margin:
        12px 0 0;

    color:
        var(--tml-navy);

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(42px,4.5vw,62px);

    font-weight: 500;

    line-height: 1.08;
}

.tml-home-blog-head h2 em {
    color:
        var(--tml-gold-dark);

    font-style: italic;

    font-weight: 500;
}

.tml-home-blog-head p {
    max-width: 600px;

    margin:
        15px 0 0;

    color:
        var(--tml-muted);

    font-size: 15px;

    line-height: 1.75;
}


/* VIEW ALL */

.tml-home-blog-all {
    flex: 0 0 auto;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 48px;

    padding:
        0 22px;

    border-radius: 999px;

    background:
        var(--tml-navy);

    color: #fff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .06em;

    text-decoration: none;

    text-transform: uppercase;

    transition:
        background .2s ease,
        transform .2s ease;
}

.tml-home-blog-all:hover {
    color: #fff;

    background:
        var(--tml-gold-dark);

    transform:
        translateY(-2px);
}

.tml-home-blog-all span {
    transition:
        transform .2s ease;
}

.tml-home-blog-all:hover span {
    transform:
        translateX(4px);
}


/* =========================================================
   3 EQUAL ARTICLE CARDS
========================================================= */

.tml-home-blog-grid {
    display: grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap: 24px;
}


.tml-home-blog-card {
    display: flex;
    flex-direction: column;

    overflow: hidden;

    border:
        1px solid
        rgba(17,28,41,.09);

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 12px 32px
        rgba(17,28,41,.05);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.tml-home-blog-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(198,154,72,.28);

    box-shadow:
        0 20px 42px
        rgba(17,28,41,.09);
}


/* =========================================================
   IMAGE - NO CROPPING
========================================================= */

.tml-home-blog-image {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    overflow: hidden;

    background:
        #f3f0ea;

    text-decoration: none;
}


/*
 * IMPORTANT:
 * Image keeps its normal rectangular ratio.
 * No fixed height.
 * No object-fit: cover.
 */
.tml-home-blog-image img {
    display: block;

    width: 100%;
    height: auto;

    max-width: 100%;

    object-fit: contain;

    transition:
        transform .5s ease;
}

.tml-home-blog-card:hover
.tml-home-blog-image img {
    transform:
        scale(1.018);
}


/* FALLBACK */

.tml-home-blog-placeholder {
    width: 100%;

    aspect-ratio: 16 / 9;

    display: flex;
    align-items: center;
    justify-content: center;

    color:
        var(--tml-gold-dark);

    font-family:
        Georgia,
        serif;

    font-size: 20px;

    background:
        #f2ede4;
}


/* =========================================================
   CONTENT
========================================================= */

.tml-home-blog-content {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding:
        24px 23px 25px;
}


/* META */

.tml-home-blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 13px;

    color:
        var(--tml-muted);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .055em;

    text-transform: uppercase;
}

.tml-home-blog-meta i {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background:
        var(--tml-gold);
}


/* TITLE */

.tml-home-blog-card h3 {
    margin:
        0 0 13px;

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(20px,1.7vw,25px);

    font-weight: 600;

    line-height: 1.35;
}

.tml-home-blog-card h3 a {
    color:
        var(--tml-navy);

    text-decoration: none;

    transition:
        color .2s ease;
}

.tml-home-blog-card h3 a:hover {
    color:
        var(--tml-gold-dark);
}


/* EXCERPT */

.tml-home-blog-content > p {
    margin:
        0 0 22px;

    color:
        var(--tml-muted);

    font-size: 13px;

    line-height: 1.72;
}


/* READ ARTICLE */

.tml-home-blog-read {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    width: fit-content;

    margin-top: auto;

    padding-bottom: 5px;

    border-bottom:
        1px solid
        rgba(198,154,72,.42);

    color:
        var(--tml-navy);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .06em;

    text-decoration: none;

    text-transform: uppercase;
}

.tml-home-blog-read span {
    color:
        var(--tml-gold-dark);

    transition:
        transform .2s ease;
}

.tml-home-blog-read:hover span {
    transform:
        translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .tml-home-blog-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

    .tml-home-blog {
        padding:
            75px 0;
    }


    .tml-home-blog-head {
        flex-direction: column;

        align-items: flex-start;

        gap: 22px;

        margin-bottom: 34px;
    }


    .tml-home-blog-grid {
        grid-template-columns: 1fr;
    }


    .tml-home-blog-card {
        border-radius: 15px;
    }


    .tml-home-blog-content {
        padding:
            21px 19px 22px;
    }


    .tml-home-blog-card h3 {
        font-size: 21px;
    }

}

/* =========================================================
   FINAL CONTACT CTA
========================================================= */

.tml-final-cta {
    position: relative;
    overflow: hidden;

    padding: 115px 0;

    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(198,154,72,.13),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #0d1925 0%,
            #14283a 58%,
            #0b1722 100%
        );
}

.tml-final-cta::before {
    content: "§";

    position: absolute;

    right: -50px;
    top: -90px;

    color:
        rgba(255,255,255,.025);

    font-family: Georgia, serif;

    font-size: 430px;

    line-height: 1;
}


/* =========================================================
   MAIN GRID
========================================================= */

.tml-final-cta-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0,.95fr)
        minmax(440px,1.05fr);

    gap: 90px;

    align-items: center;
}


/* =========================================================
   LEFT
========================================================= */

.tml-final-cta-copy {
    max-width: 670px;
}

.tml-final-cta-copy h2 {
    margin: 14px 0 0;

    color: white !important;

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(44px,4.8vw,66px);

    font-weight: 500;

    line-height: 1.07;
}

.tml-final-cta-copy h2 em {
    display: block;

    color: #d8b56b;

    font-style: italic;
    font-weight: 500;
}

.tml-final-cta-copy > p {
    max-width: 610px;

    margin: 26px 0 0;

    color:
        rgba(255,255,255,.59);

    font-size: 16px;

    line-height: 1.9;
}


/* SIGNATURE LINE */

.tml-final-cta-signature {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-top: 34px;
}

.tml-final-cta-signature > span {
    width: 42px;
    height: 2px;

    background:
        var(--tml-gold);
}

.tml-final-cta-signature strong {
    display: block;

    color: #fff;

    font-size: 12px;
}

.tml-final-cta-signature small {
    display: block;

    margin-top: 4px;

    color:
        rgba(255,255,255,.38);

    font-size: 9px;

    letter-spacing: .09em;

    text-transform: uppercase;
}


/* =========================================================
   RIGHT ACTION AREA
========================================================= */

.tml-final-cta-action {
    position: relative;

    padding:
        36px 36px 32px;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.025)
        );

    backdrop-filter:
        blur(10px);

    box-shadow:
        0 28px 60px
        rgba(0,0,0,.18);
}

.tml-final-cta-action::before {
    content: "";

    position: absolute;

    left: 36px;
    top: 0;

    width: 72px;
    height: 3px;

    background:
        var(--tml-gold);
}


/* ACTION HEADING */

.tml-final-cta-action-label {
    color:
        #d8b56b;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.tml-final-cta-action h3 {
    max-width: 430px;

    margin:
        10px 0 0;

    color: #fff;

    font-family:
        Georgia,
        serif;

    font-size: 28px;

    font-weight: 500;

    line-height: 1.3;
}


/* =========================================================
   BUTTONS
========================================================= */

.tml-final-cta-buttons {
    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 12px;

    margin-top: 28px;
}

.tml-final-call,
.tml-final-whatsapp {
    min-height: 74px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding:
        13px 16px;

    border-radius: 13px;

    color: #fff;

    text-decoration: none;

    transition:
        transform .22s ease,
        box-shadow .22s ease;
}

.tml-final-call {
    background:
        linear-gradient(
            135deg,
            #c18d32,
            #9f7024
        );
}

.tml-final-whatsapp {
    background:
        linear-gradient(
            135deg,
            #25d366,
            #18aa50
        );
}

.tml-final-call:hover,
.tml-final-whatsapp:hover {
    color: #fff;

    transform:
        translateY(-3px);

    box-shadow:
        0 14px 28px
        rgba(0,0,0,.17);
}


/* BUTTON ICON */

.tml-final-button-icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.14);
}

.tml-final-button-icon svg {
    width: 19px;
    height: 19px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.tml-final-call small,
.tml-final-whatsapp small {
    display: block;

    margin-bottom: 2px;

    color:
        rgba(255,255,255,.75);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;
}

.tml-final-call strong,
.tml-final-whatsapp strong {
    display: block;

    color: #fff;

    font-size: 13px;

    font-weight: 800;
}


/* =========================================================
   TRUST POINTS
========================================================= */

.tml-final-cta-trust {
    display: flex;
    flex-wrap: wrap;

    gap:
        11px 20px;

    margin-top: 28px;

    padding-top: 23px;

    border-top:
        1px solid
        rgba(255,255,255,.09);
}

.tml-final-cta-trust span {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color:
        rgba(255,255,255,.54);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .055em;

    text-transform: uppercase;
}

.tml-final-cta-trust i {
    color:
        #d8b56b;

    font-style: normal;
}


/* HOURS */

.tml-final-cta-hours {
    margin-top: 22px;

    color:
        rgba(255,255,255,.34);

    font-size: 10px;

    letter-spacing: .04em;
}

.tml-final-cta-hours span {
    padding:
        0 7px;

    color:
        #d8b56b;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .tml-final-cta-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .tml-final-cta-action {
        max-width: 720px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

    .tml-final-cta {
        padding:
            75px 0;
    }


    .tml-final-cta-grid {
        gap: 42px;
    }


    .tml-final-cta-action {
        padding:
            29px 20px 25px;

        border-radius: 18px;
    }


    .tml-final-cta-action::before {
        left: 20px;
    }


    .tml-final-cta-action h3 {
        font-size: 24px;
    }


    .tml-final-cta-buttons {
        grid-template-columns: 1fr;
    }


    .tml-final-call,
    .tml-final-whatsapp {
        min-height: 68px;
    }


    .tml-final-cta-trust {
        flex-direction: column;

        gap: 10px;
    }


    .tml-final-cta-hours {
        line-height: 1.7;
    }

}

/* =========================================================
   HOMEPAGE CONTACT - UNIQUE SECTION
========================================================= */

.tml-contact-home {
    position: relative;
    overflow: hidden;

    padding: 115px 0;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f7f3ec 100%
        );
}


/* GRID */

.tml-contact-home-grid {
    display: grid;

    grid-template-columns:
        minmax(350px,.82fr)
        minmax(0,1.18fr);

    gap: 70px;

    align-items: stretch;
}


/* =========================================================
   IMAGE SIDE
========================================================= */

.tml-contact-home-visual {
    position: relative;

    min-height: 660px;
}

.tml-contact-home-image {
    position: absolute;
    inset: 0;

    overflow: hidden;

    border-radius:
        32px 32px 85px 32px;

    background:
        #ded8ce;

    box-shadow:
        0 26px 60px
        rgba(17,28,41,.13);
}

.tml-contact-home-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(11,22,33,.55) 0%,
            rgba(11,22,33,.05) 55%
        );
}

.tml-contact-home-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.tml-contact-home-overlay {
    position: absolute;

    left: 26px;
    right: 26px;
    bottom: 26px;

    z-index: 3;

    padding: 25px;

    border:
        1px solid
        rgba(255,255,255,.16);

    border-radius: 19px;

    background:
        rgba(14,27,40,.91);

    backdrop-filter:
        blur(10px);

    box-shadow:
        0 16px 32px
        rgba(0,0,0,.18);
}

.tml-contact-home-overlay-label {
    display: block;

    margin-bottom: 7px;

    color:
        #d8b56b;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.tml-contact-home-overlay h3 {
    margin: 0;

    color: white !important;

    font-family:
        Georgia,
        serif;

    font-size: 24px;

    font-weight: 500;
}

.tml-contact-home-overlay > p {
    max-width: 420px;

    margin:
        9px 0 18px;

    color:
        rgba(255,255,255,.56);

    font-size: 12px;

    line-height: 1.7;
}


/* PHONE */

.tml-contact-home-overlay > a {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    color: #fff;

    text-decoration: none;
}

.tml-contact-home-phone-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(216,181,107,.14);

    color:
        #d8b56b;
}

.tml-contact-home-phone-icon svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tml-contact-home-overlay small {
    display: block;

    color:
        rgba(255,255,255,.43);

    font-size: 8px;

    letter-spacing: .08em;

    text-transform: uppercase;
}

.tml-contact-home-overlay strong {
    display: block;

    margin-top: 2px;

    color: #fff;

    font-size: 13px;
}


/* =========================================================
   FORM SIDE
========================================================= */

.tml-contact-home-form-wrap {
    align-self: center;

    padding:
        45px 46px;

    border:
        1px solid
        rgba(17,28,41,.08);

    border-radius: 24px;

    background:
        rgba(255,255,255,.88);

    box-shadow:
        0 24px 60px
        rgba(17,28,41,.07);
}

.tml-contact-home-form-wrap h2 {
    max-width: 650px;

    margin:
        12px 0 0;

    color:
        var(--tml-navy);

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(39px,4vw,55px);

    font-weight: 500;

    line-height: 1.08;
}

.tml-contact-home-form-wrap h2 em {
    color:
        var(--tml-gold-dark);

    font-style: italic;

    font-weight: 500;
}

.tml-contact-home-lead {
    max-width: 620px;

    margin:
        18px 0 0;

    color:
        var(--tml-muted);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   FORM
========================================================= */

.tml-contact-home-form {
    margin-top: 32px;
}

.tml-contact-home-row {
    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 16px;
}

.tml-contact-home-field {
    margin-bottom: 18px;
}

.tml-contact-home-field label {
    display: block;

    margin-bottom: 8px;

    color:
        var(--tml-navy);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .04em;
}

.tml-contact-home-field input,
.tml-contact-home-field textarea {
    width: 100%;

    box-sizing: border-box;

    border:
        1px solid
        rgba(17,28,41,.13);

    border-radius: 10px;

    outline: none;

    background:
        #fbfaf7;

    color:
        var(--tml-navy);

    font-family: inherit;

    font-size: 13px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.tml-contact-home-field input {
    height: 50px;

    padding:
        0 15px;
}

.tml-contact-home-field textarea {
    min-height: 145px;

    padding:
        14px 15px;

    resize: vertical;
}

.tml-contact-home-field input:focus,
.tml-contact-home-field textarea:focus {
    border-color:
        rgba(198,154,72,.75);

    background: #fff;

    box-shadow:
        0 0 0 3px
        rgba(198,154,72,.08);
}


/* =========================================================
   SUBMIT AREA
========================================================= */

.tml-contact-home-submit-row {
    display: flex;
    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 5px;
}

.tml-contact-home-submit {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    padding:
        0 24px;

    border: 0;

    border-radius: 999px;

    background:
        var(--tml-navy);

    color: white !important;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .06em;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}

.tml-contact-home-submit:hover {
    background:
        var(--tml-gold-dark);

    transform:
        translateY(-2px);
}

.tml-contact-home-submit span {
    font-size: 16px;
}


/* PRIVATE NOTE */

.tml-contact-home-private {
    display: flex;
    align-items: center;

    gap: 8px;

    color:
        var(--tml-muted);

    font-size: 10px;
}

.tml-contact-home-private svg {
    width: 17px;
    height: 17px;

    flex: 0 0 17px;

    fill: none;

    stroke:
        var(--tml-gold-dark);

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .tml-contact-home-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .tml-contact-home-visual {
        min-height: 600px;

        max-width: 680px;

        width: 100%;

        margin:
            0 auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

    .tml-contact-home {
        padding:
            75px 0;
    }

    .tml-contact-home-visual {
        min-height: 500px;
    }

    .tml-contact-home-image {
        border-radius:
            24px 24px 55px 24px;
    }

    .tml-contact-home-overlay {
        left: 14px;
        right: 14px;
        bottom: 14px;

        padding: 19px;
    }

    .tml-contact-home-form-wrap {
        padding:
            30px 20px;

        border-radius: 18px;
    }

    .tml-contact-home-row {
        grid-template-columns: 1fr;
    }

    .tml-contact-home-submit-row {
        align-items: flex-start;

        flex-direction: column;
    }

    .tml-contact-home-submit {
        width: 100%;
    }

}

/* =========================================================
   MOBILE FIXES ONLY
   HERO + FOUNDER / LEAD COUNSEL
========================================================= */

@media (max-width: 720px) {

    /* =====================================================
       HERO SECTION
    ====================================================== */

    .home-hero {
        overflow: hidden;
    }


    .home-hero-grid {
        min-height: auto;

        grid-template-columns: 1fr;

        gap: 42px;

        padding-top: 52px;
        padding-bottom: 58px;
    }


    .home-hero-content {
        width: 100%;
        max-width: none;
    }


    .home-hero-eyebrow {
        gap: 9px;

        margin-bottom: 14px;

        font-size: 9px;

        letter-spacing: .1em;
    }


    .home-hero-eyebrow span {
        width: 26px;
    }


    .home-hero h1 {
        font-size: 39px;

        line-height: 1.04;

        letter-spacing: -.025em;
    }


    .home-hero h1 em {
        display: block;
    }


    .home-hero-description {
        max-width: none;

        margin-top: 20px;

        font-size: 14px;

        line-height: 1.7;
    }


    /* ACTIONS */

    .home-hero-actions {
        align-items: stretch;

        flex-direction: column;

        gap: 15px;

        margin-top: 26px;
    }


    .home-primary-btn {
        width: 100%;

        min-height: 50px;

        padding: 0 18px;

        font-size: 12px;
    }


    .home-phone-btn {
        width: 100%;

        padding: 10px 12px;

        border: 1px solid rgba(17,28,41,.1);

        border-radius: 13px;

        background: rgba(255,255,255,.72);
    }


    .home-phone-icon {
        width: 40px;
        height: 40px;

        flex: 0 0 40px;
    }


    .home-phone-btn small {
        font-size: 9px;
    }


    .home-phone-btn strong {
        font-size: 12px;
    }


    /* TRUST ITEMS */

    .home-hero-trust {
        flex-direction: column;

        gap: 10px;

        margin-top: 24px;

        padding-top: 18px;
    }


    .home-hero-trust div {
        font-size: 11px;
    }


    /* =====================================================
       HERO SLIDER
    ====================================================== */

    .home-hero-visual {
        width: 100%;

        max-width: none;

        margin: 0;
    }


    .home-hero-visual::before {
        top: -10px;
        right: -8px;

        width: 78%;
        height: 70%;
    }


    .home-slider {
        width: 100%;

        height: auto;

        aspect-ratio: 4 / 5;

        border-radius:
            4px 4px 38px 4px;
    }


    .home-slide img {
        object-position: center center;
    }


    .home-slide-caption {
        left: 20px;
        right: 20px;
        bottom: 47px;
    }


    .home-slide-caption span {
        margin-bottom: 7px;

        font-size: 9px;
    }


    .home-slide-caption strong {
        max-width: 270px;

        font-size: 19px;

        line-height: 1.3;
    }


    .home-slider-dots {
        right: 18px;
        bottom: 18px;
    }


    .home-slider-dots button {
        width: 6px;
        height: 6px;
    }


    .home-slider-dots button.is-active {
        width: 19px;
    }



    /* =====================================================
       FOUNDER / LEAD COUNSEL
    ====================================================== */

    .home-founder {
        padding: 68px 0;
    }


    .home-founder-grid {
        grid-template-columns: 1fr;

        gap: 42px;

        align-items: start;
    }


    /* FIX IMAGE CONTAINER */

    .home-founder-media {
        width: 100%;

        max-width: 100%;

        margin: 0;
    }


    .home-founder-photo {
        width: 100%;

        min-height: 0;

        aspect-ratio: 4 / 5;

        border-radius:
            4px 4px 38px 4px;

        background: #223244;
    }


    .home-founder-photo img {
        width: 100%;
        height: 100%;

        position: absolute;

        inset: 0;

        display: block;

        object-fit: cover;

        object-position: center top;
    }


    /* FOUNDER BADGE */

    .home-founder-badge {
        left: 14px;
        right: 14px;
        bottom: 14px;

        min-width: 0;

        width: auto;

        padding: 14px 15px;

        border-radius: 10px;
    }


    .home-founder-badge strong {
        font-size: 15px;
    }


    .home-founder-badge span {
        font-size: 9px;
    }


    /* FOUNDER CONTENT */

    .home-founder-content {
        width: 100%;

        max-width: none;
    }


    .home-founder .home-section-eyebrow {
        display: block;

        margin-bottom: 10px;

        font-size: 10px;

        letter-spacing: .1em;
    }


    .home-founder-content h2 {
        font-size: 34px;

        line-height: 1.12;
    }


    .home-founder-content h2 em {
        margin-top: 3px;
    }


    .home-founder-lead {
        margin-top: 19px;

        font-size: 15px !important;

        line-height: 1.75 !important;
    }


    .home-founder-content p {
        font-size: 13px;

        line-height: 1.75;
    }


    /* POINTS */

    .home-founder-points {
        grid-template-columns: 1fr;

        gap: 10px;

        margin-top: 24px;
    }


    .home-founder-points div {
        display: grid;

        grid-template-columns: 34px 1fr;

        gap: 10px;

        align-items: center;

        padding: 14px 15px;
    }


    .home-founder-points span {
        margin: 0;

        font-size: 18px;
    }


    .home-founder-points p {
        margin: 0;

        font-size: 12px;

        line-height: 1.5;
    }


    .home-founder-link {
        margin-top: 24px;

        font-size: 12px;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
   iPhone SE / 375px and below
========================================================= */

@media (max-width: 390px) {

    .home-hero-grid {
        padding-top: 44px;
        padding-bottom: 50px;
    }


    .home-hero h1 {
        font-size: 34px;
    }


    .home-hero-description {
        font-size: 13px;
    }


    .home-slider {
        aspect-ratio: 4 / 4.7;
    }


    .home-slide-caption strong {
        font-size: 18px;
    }


    .home-founder {
        padding: 60px 0;
    }


    .home-founder-photo {
        aspect-ratio: 4 / 5;
    }


    .home-founder-content h2 {
        font-size: 30px;
    }


    .home-founder-lead {
        font-size: 14px !important;
    }

}