:root {

    --tml-navy: #111c29;
    --tml-navy-light: #1b2a3a;

    --tml-gold: #c69a48;
    --tml-gold-dark: #9c7128;

    --tml-cream: #f8f5ef;
    --tml-offwhite: #fcfbf8;

    --tml-text: #171c22;
    --tml-muted: #69717a;

    --tml-white: #ffffff;

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

    --tml-width: 1260px;
}



* {

    box-sizing: border-box;

}



html {

    scroll-behavior: smooth;

}



body {

    margin: 0;

    color: var(--tml-text);

    background: #fff;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

}



img {

    max-width: 100%;

    height: auto;

}



button,
input {

    font: inherit;

}



.tml-shell {

    width:
        min(
            var(--tml-width),
            calc(100% - 48px)
        );

    margin-inline: auto;

}



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


.tml-header {

    position: sticky;

    top: 0;

    z-index: 9999;

    animation:
        tmlHeaderIntro
        .65s ease both;

}

#tmlSearchClose {
    color: white;
}



@keyframes tmlHeaderIntro {

    from {

        opacity: 0;

        transform:
            translateY(-16px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}



.admin-bar .tml-header {

    top: 32px;

}



/* TOP BAR */


.tml-topbar {

    position: relative;

    background:
        linear-gradient(
            90deg,
            #101a26,
            #172638
        );

    color: #fff;

}



.tml-topbar::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(198,154,72,.65),
            transparent
        );

}



.tml-topbar-inner {

    min-height: 38px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}



.tml-topbar-contact {

    display: flex;

    align-items: center;

    gap: 14px;

}



.tml-topbar-contact a {

    display: flex;

    align-items: center;

    gap: 7px;

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

    font-size: 12px;

    text-decoration: none;

}



.tml-topbar-contact svg {

    width: 14px;

    height: 14px;

    fill:
        #dfbd75;

}



.tml-top-divider {

    width: 1px;

    height: 14px;

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

}



.tml-topbar-note {

    display: flex;

    align-items: center;

    gap: 9px;

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

    font-size: 12px;

}



.tml-status-dot {
    position: relative;

    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: #d8b76c;

    box-shadow:
        0 0 7px rgba(216,183,108,.45);
}


/* FIRST OUTER PULSE */
.tml-status-dot::before,
.tml-status-dot::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 7px;
    height: 7px;

    border: 1px solid rgba(216,183,108,.55);

    border-radius: 50%;

    transform:
        translate(-50%, -50%)
        scale(1);

    opacity: 0;

    pointer-events: none;
}


.tml-status-dot::before {
    animation:
        tmlLivePulse 2s ease-out infinite;
}


.tml-status-dot::after {
    animation:
        tmlLivePulse 2s ease-out 1s infinite;
}


@keyframes tmlLivePulse {

    0% {
        transform:
            translate(-50%, -50%)
            scale(1);

        opacity: .65;
    }

    70% {
        opacity: .12;
    }

    100% {
        transform:
            translate(-50%, -50%)
            scale(3.5);

        opacity: 0;
    }

}



/* NAV */


.tml-nav-wrapper {

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

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

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

}



.tml-navbar {

    min-height: 86px;

    display: flex;

    align-items: center;

    gap: 28px;

    transition:
        min-height .3s ease;

}



.tml-header.is-scrolled
.tml-navbar {

    min-height: 72px;

}



.tml-header.is-scrolled
.tml-nav-wrapper {

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

}



/* LOGO */


.tml-logo {

    flex: 0 0 auto;

    display: flex;

    align-items: center;

    text-decoration: none;

}



.tml-logo .custom-logo-link {

    display: flex;

}



.tml-logo img {

    display: block;

    width: auto;

    max-width: 200px;

    max-height: 66px;

    object-fit: contain;

    transition:
        max-height .3s ease;

}



.tml-header.is-scrolled
.tml-logo img {

    max-height: 54px;

}



.tml-logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1;

}



.tml-logo-text strong {

    color: var(--tml-navy);

    font-family:
        Georgia,
        serif;

    font-size: 20px;

}



.tml-logo-text span {

    margin-top: 4px;

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

    font-family:
        Georgia,
        serif;

    font-size: 16px;

}



/* DESKTOP NAV */


.tml-desktop-nav {

    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 20px;

}



.tml-desktop-nav > a,
.tml-dropdown-trigger {

    position: relative;

    padding:
        31px 0;

    border: 0;

    background: transparent;

    color:
        #262b31;

    font-size: 16px;

    font-weight: 700;

    text-decoration: none;

    cursor: pointer;

    white-space: nowrap;

}


.tml-desktop-nav > a::after,
.tml-dropdown-trigger::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 22px;

    width: 0;

    height: 2px;

    background:
        var(--tml-gold);

    transform:
        translateX(-50%);

    transition:
        width .25s ease;

}



.tml-desktop-nav > a:hover::after,
.tml-dropdown-trigger:hover::after {

    width: 100%;

}



.tml-desktop-nav > a:hover,
.tml-dropdown-trigger:hover {

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

}



.tml-dropdown-trigger {

    display: flex;

    align-items: center;

    gap: 4px;

}



.tml-dropdown-trigger svg {

    width: 15px;

    height: 15px;

    fill: currentColor;

    transition:
        transform .2s ease;

}



.tml-nav-dropdown {

    position: relative;

}



.tml-nav-dropdown:hover
.tml-dropdown-trigger svg {

    transform:
        rotate(180deg);

}



/* =========================================================
   MEGA MENU
========================================================= */


.tml-mega-menu {

    position: absolute;

    top:
        calc(100% - 5px);

    left: 50%;

    z-index: 100;

    padding: 22px;

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

    border-radius: 16px;

    background:
        #fff;

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

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform:
        translate(-50%, 14px);

    transition:
        opacity .22s ease,
        visibility .22s ease,
        transform .22s ease;

}



.tml-nav-dropdown:hover
.tml-mega-menu,

.tml-nav-dropdown:focus-within
.tml-mega-menu,

.tml-nav-dropdown.is-open
.tml-mega-menu {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translate(-50%, 0);

}



.tml-services-menu {

    width: 650px;

}



.tml-courts-menu {

    width: 500px;

}



.tml-mega-heading {

    margin-bottom: 16px;

    padding-bottom: 15px;

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

}



.tml-mega-eyebrow {

    display: block;

    margin-bottom: 4px;

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

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .1em;

    text-transform: uppercase;

}



.tml-mega-heading strong {

    display: block;

    color:
        var(--tml-navy);

    font-family:
        Georgia,
        serif;

    font-size: 20px;

}



.tml-mega-heading p {

    margin:
        5px 0 0;

    color:
        var(--tml-muted);

    font-size: 12px;

}



.tml-service-grid {

    display: grid;

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

    gap: 5px;

}



.tml-service-grid > a {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 11px;

    border-radius: 10px;

    color:
        var(--tml-text);

    text-decoration: none;

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

}



.tml-service-grid > a:hover {

    background:
        var(--tml-cream);

    transform:
        translateX(3px);

}



.tml-service-icon {

    width: 34px;

    height: 34px;

    flex: 0 0 34px;

    display: flex;

    align-items: center;

    justify-content: center;

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

    border-radius: 50%;

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

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

    font-size: 10px;

    font-weight: 800;

}



.tml-service-grid strong {

    display: block;

    color:
        var(--tml-navy);

    font-size: 13px;

}



.tml-service-grid small {

    display: block;

    margin-top: 2px;

    color:
        var(--tml-muted);

    font-size: 11px;

}



.tml-court-grid {

    display: grid;

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

    gap: 5px;

}



.tml-court-grid a {

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 11px;

    border-radius: 8px;

    color:
        var(--tml-text);

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

}



.tml-court-grid a span {

    color:
        var(--tml-gold);

    font-size: 7px;

}



.tml-court-grid a:hover {

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

    background:
        var(--tml-cream);

}



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


.tml-header-actions {

    display: flex;

    align-items: center;

    gap: 10px;

}



.tml-search-btn {

    width: 43px;

    height: 43px;

    min-width: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

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

    border-radius: 50%;

    background:
        #fff;

    cursor: pointer;

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

}



.tml-search-btn:hover {

    background:
        var(--tml-cream);

    transform:
        translateY(-1px);

}



.tml-search-btn svg {

    width: 20px;

    height: 20px;

    fill:
        var(--tml-navy);

}



.tml-header-cta {

    min-height: 46px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding:
        0 20px;

    overflow: hidden;

    border-radius:
        999px;

    background:
        linear-gradient(
            135deg,
            #c99c49,
            #ab7b2c
        );

    color:
        #fff;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 8px 20px
        rgba(171,123,44,.17);

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


.tml-header-cta:hover {

    color: #fff;

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 25px
        rgba(171,123,44,.28);
}


/* TEXT VIEWPORT */

.tml-header-cta-text {

    position: relative;

    display: inline-flex;

    height: 18px;

    align-items: center;

    overflow: hidden;
}


/* MOVING TEXT */

.tml-header-cta-text > span {

    display: block;

    line-height: 18px;

    animation:
        tmlHeaderCtaTextSlide
        3s
        ease-in-out
        infinite;
}


/* ARROW */

.tml-header-cta-arrow {

    display: inline-block;

    transition:
        transform .2s ease;
}


.tml-header-cta:hover
.tml-header-cta-arrow {

    transform:
        translateX(3px);
}


/* =========================================================
   CTA TEXT ANIMATION
========================================================= */

@keyframes tmlHeaderCtaTextSlide {

    0%,
    20% {
        opacity: 1;
        transform:
            translateY(0);
    }

    38% {
        opacity: 0;
        transform:
            translateY(-20px);
    }

    52% {
        opacity: 0;
        transform:
            translateY(20px);
    }

    70%,
    100% {
        opacity: 1;
        transform:
            translateY(0);
    }

}


/* ACCESSIBILITY */

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

    .tml-header-cta-text > span {
        animation: none;
    }

}



/* =========================================================
   MOBILE / TABLET MENU BUTTON
========================================================= */

.tml-mobile-toggle {

    width: 43px;
    height: 43px;

    display: none;

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

    flex-direction: column;

    gap: 5px;

    padding: 0;

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

    border-radius: 50%;

    background: #fff;

    cursor: pointer;

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

}


.tml-mobile-toggle:hover {

    background:
        var(--tml-cream);

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

}


.tml-mobile-toggle span {

    width: 18px;
    height: 2px;

    border-radius: 10px;

    background:
        var(--tml-navy);

}



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

.tml-mobile-backdrop {

    position: fixed;

    inset: 0;

    z-index: 19990;

    display: block;

    width: 100%;
    height: 100%;

    padding: 0;

    border: 0;

    background:
        rgba(8,15,23,.62);

    backdrop-filter:
        blur(3px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .32s ease,
        visibility .32s ease;

}


.tml-mobile-backdrop.is-visible {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

}



/* =========================================================
   OFF-CANVAS MOBILE MENU
========================================================= */

.tml-mobile-menu {

    position: fixed;

    left: 0;
    top: 0;
    bottom: 0;

    z-index: 20000;

    width:
        min(
            60vw,
            440px
        );

    display: flex;

    flex-direction: column;

    background:
        #fff;

    box-shadow:
        18px 0 60px
        rgba(7,15,24,.18);

    transform:
        translateX(-105%);

    visibility: hidden;

    transition:
        transform .38s
        cubic-bezier(.22,1,.36,1),
        visibility .38s ease;

}


.tml-mobile-menu.is-open {

    transform:
        translateX(0);

    visibility: visible;

}



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

.tml-mobile-menu-head {

    flex: 0 0 auto;

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding:
        13px 18px;

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

    background:
        #fff;

}


.tml-mobile-menu-logo {

    display: inline-flex;

    align-items: center;

    max-width:
        calc(100% - 58px);

    text-decoration: none;

}


.tml-mobile-menu-logo img {

    display: block;

    width: auto;

    max-width: 170px;

    max-height: 56px;

    object-fit: contain;

}



/* CLOSE BUTTON */

.tml-mobile-close {

    position: relative;

    width: 42px;
    height: 42px;

    flex:
        0 0 42px;

    display: flex;

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

    padding: 0;

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

    border-radius: 50%;

    background:
        #faf9f6;

    cursor: pointer;

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

}


.tml-mobile-close:hover {

    background:
        var(--tml-cream);

    transform:
        rotate(5deg);

}


.tml-mobile-close span {

    position: absolute;

    width: 17px;

    height: 1.5px;

    border-radius: 5px;

    background:
        var(--tml-navy);

}


.tml-mobile-close span:first-child {

    transform:
        rotate(45deg);

}


.tml-mobile-close span:last-child {

    transform:
        rotate(-45deg);

}



/* =========================================================
   SCROLLABLE DRAWER BODY
========================================================= */

.tml-mobile-menu-scroll {

    flex: 1 1 auto;

    min-height: 0;

    overflow-y: auto;

    overscroll-behavior: contain;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: thin;

    scrollbar-color:
        rgba(156,113,40,.42)
        transparent;

}


.tml-mobile-menu-scroll::-webkit-scrollbar {

    width: 5px;

}


.tml-mobile-menu-scroll::-webkit-scrollbar-track {

    background:
        transparent;

}


.tml-mobile-menu-scroll::-webkit-scrollbar-thumb {

    border-radius: 999px;

    background:
        rgba(156,113,40,.36);

}



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

.tml-mobile-inner {

    width: 100%;

    padding:
        10px 18px 24px;

}


.tml-mobile-main-link,
.tml-mobile-group > summary {

    min-height: 58px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 14px;

    padding:
        10px 5px;

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

    color:
        var(--tml-navy);

    font-size: 14px;

    font-weight: 750;

    line-height: 1.3;

    text-decoration: none;

}


.tml-mobile-main-link {

    transition:
        color .2s ease,
        padding-left .2s ease;

}


.tml-mobile-main-link:hover {

    padding-left:
        9px;

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

}



/* DETAILS */

.tml-mobile-group {

    border: 0;

}


.tml-mobile-group > summary {

    list-style: none;

    cursor: pointer;

}


.tml-mobile-group > summary::-webkit-details-marker {

    display: none;

}



/* CHEVRON */

.tml-mobile-chevron {

    width: 31px;
    height: 31px;

    flex:
        0 0 31px;

    display: flex;

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

    border-radius: 50%;

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

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

    transition:
        background .25s ease,
        transform .3s ease;

}


.tml-mobile-chevron svg {

    width: 15px;
    height: 15px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;

}


.tml-mobile-group[open]
.tml-mobile-chevron {

    background:
        var(--tml-gold);

    color:
        #fff;

    transform:
        rotate(180deg);

}



/* =========================================================
   SUBMENU
========================================================= */

.tml-mobile-submenu {

    padding:
        7px 0 13px 12px;

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

    background:
        linear-gradient(
            90deg,
            rgba(198,154,72,.045),
            transparent
        );

}


.tml-mobile-submenu > a {

    position: relative;

    display: block;

    padding:
        10px 10px 10px 18px;

    color:
        #69717a;

    font-size: 13px;

    font-weight: 600;

    line-height: 1.35;

    text-decoration: none;

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

}


.tml-mobile-submenu > a::before {

    content: "";

    position: absolute;

    left: 3px;
    top: 50%;

    width: 5px;
    height: 5px;

    border-radius: 50%;

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

    transform:
        translateY(-50%);

}


.tml-mobile-submenu > a:hover {

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

    transform:
        translateX(3px);

}



/* VIEW ALL */

.tml-mobile-submenu
.tml-mobile-view-all {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin:
        3px 5px 6px 0;

    padding:
        11px 12px;

    border-radius:
        8px;

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

    color:
        var(--tml-navy);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .035em;

    text-transform: uppercase;

}


.tml-mobile-submenu
.tml-mobile-view-all::before {

    display: none;

}


.tml-mobile-view-all span {

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

}



/* =========================================================
   MOBILE CONSULTATION CTA
========================================================= */

.tml-mobile-consult {

    min-height: 52px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-top:
        20px;

    padding:
        0 19px;

    border-radius:
        999px;

    background:
        linear-gradient(
            135deg,
            #c99c49,
            #ab7b2c
        );

    color:
        #fff;

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 10px 24px
        rgba(171,123,44,.18);

}


.tml-mobile-consult:hover {

    color: #fff;

}


.tml-mobile-consult strong {

    font-size: 18px;

    font-weight: 400;

}



/* =========================================================
   MOBILE DRAWER CONTACT
========================================================= */

.tml-mobile-menu-contact {

    margin:
        0 18px 28px;

    padding:
        18px;

    border-radius:
        12px;

    background:
        var(--tml-cream);

}


.tml-mobile-menu-contact > span {

    display: block;

    margin-bottom:
        9px;

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

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .11em;

    text-transform: uppercase;

}


.tml-mobile-menu-contact a {

    display: block;

    margin-top:
        5px;

    color:
        var(--tml-navy);

    font-size: 12px;

    font-weight: 650;

    line-height: 1.5;

    overflow-wrap: anywhere;

    text-decoration: none;

}



/* =========================================================
   BODY LOCK
========================================================= */

body.tml-mobile-menu-open {

    overflow: hidden;

}



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

@media (max-width: 1024px) {

    .tml-desktop-nav {

        display: none;

    }


    .tml-header-cta {

        display: none;

    }


    .tml-header-actions {

        margin-left: auto;

    }


    .tml-mobile-toggle {

        display: flex;

    }

}



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

@media (max-width: 720px) {

    .tml-mobile-menu {

        width:
            min(
                86vw,
                390px
            );

    }


    .tml-mobile-menu-head {

        min-height: 72px;

        padding:
            10px 14px;

    }


    .tml-mobile-menu-logo img {

        max-width:
            145px;

        max-height:
            48px;

    }


    .tml-mobile-close {

        width: 39px;
        height: 39px;

        flex:
            0 0 39px;

    }


    .tml-mobile-inner {

        padding:
            8px 14px 21px;

    }


    .tml-mobile-main-link,
    .tml-mobile-group > summary {

        min-height:
            54px;

        font-size:
            13px;

    }


    .tml-mobile-submenu > a {

        padding-top:
            9px;

        padding-bottom:
            9px;

        font-size:
            12px;

    }


    .tml-mobile-menu-contact {

        margin:
            0 14px 22px;

        padding:
            15px;

    }

}



/* =========================================================
   ADMIN BAR
========================================================= */

@media (max-width: 782px) {

    body.admin-bar
    .tml-mobile-menu {

        top: 46px;

    }


    body.admin-bar
    .tml-mobile-backdrop {

        top: 46px;

    }

}


@media (min-width: 783px) and (max-width: 1024px) {

    body.admin-bar
    .tml-mobile-menu {

        top: 32px;

    }


    body.admin-bar
    .tml-mobile-backdrop {

        top: 32px;

    }

}



/* =========================================================
   SEARCH OVERLAY
========================================================= */


.tml-search-overlay {

    position: fixed;

    inset: 0;

    z-index: 20000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    background:
        rgba(10,17,25,.94);

    backdrop-filter:
        blur(8px);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .25s ease,
        visibility .25s ease;

}



.tml-search-overlay.is-visible {

    opacity: 1;

    visibility: visible;

}



.tml-search-content {

    width:
        min(760px,100%);

    transform:
        translateY(18px);

    transition:
        transform .3s ease;

}



.tml-search-overlay.is-visible
.tml-search-content {

    transform:
        translateY(0);

}



.tml-search-content > span {

    display: block;

    margin-bottom: 18px;

    color:
        #d8b66c;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .1em;

    text-transform: uppercase;

}



.tml-search-content form {

    display: flex;

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

}



.tml-search-content input {

    flex: 1;

    height: 72px;

    padding: 0;

    border: 0;

    outline: 0;

    background:
        transparent;

    color: white;

    font-size:
        clamp(22px,4vw,38px);

}



.tml-search-content input::placeholder {

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

}



.tml-search-content form button {

    width: 58px;

    border: 0;

    background:
        transparent;

    cursor: pointer;

}



.tml-search-content
form button svg {

    width: 28px;

    height: 28px;

    fill:
        #d8b66c;

}



.tml-search-content p {

    margin-top: 16px;

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

    font-size: 13px;

}



.tml-search-close {

    position: absolute;

    top: 26px;

    right: 30px;

    width: 46px;

    height: 46px;

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

    border-radius: 50%;

    background:
        transparent;

    color: #fff;

    font-size: 27px;

    cursor: pointer;

}



/* =========================================================
   FOOTER CTA
========================================================= */


.tml-footer-cta {

    background:
        var(--tml-cream);

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

}



.tml-footer-cta-inner {

    min-height: 190px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 45px;

}



.tml-footer-cta-inner
> div > span {

    display: block;

    margin-bottom: 7px;

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

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .11em;

    text-transform: uppercase;

}



.tml-footer-cta h2 {

    max-width: 650px;

    margin:
        0 0 8px;

    color:
        var(--tml-navy);

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(29px,3vw,42px);

    line-height: 1.14;

}



.tml-footer-cta p {

    margin: 0;

    color:
        var(--tml-muted);

    font-size: 14px;

}



.tml-footer-cta-inner
> a {

    min-height: 48px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding:
        0 20px;

    border-radius:
        999px;

    background:
        var(--tml-navy);

    color: white;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

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

}



.tml-footer-cta-inner
> a:hover {

    color: white;

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

    transform:
        translateY(-2px);

}



/* =========================================================
   MAIN FOOTER
========================================================= */


.tml-footer-main {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #101a26,
            #18293a
        );

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

}



.tml-footer-main::before {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    top: -210px;

    right: -160px;

    border-radius: 50%;

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

}



.tml-footer-grid {

    position: relative;

    z-index: 1;

    display: grid;

    grid-template-columns:
        1.42fr .95fr .95fr 1fr;

    gap: 42px;

    padding:
        70px 0 48px;

}



.tml-footer-logo {

    display: inline-flex;

    text-decoration: none;
    
    border-radius: 5px;

}



.tml-footer-logo
.custom-logo-link {

    display: flex;

}



.tml-footer-logo img {

    width: auto;

    max-width: 295px;

    max-height: 135px;

    object-fit: contain;

}



.tml-footer-logo-text {

    display: flex;

    flex-direction: column;

    font-family:
        Georgia,
        serif;

}



.tml-footer-logo-text strong {

    color: #fff;

    font-size: 20px;

}



.tml-footer-logo-text span {

    margin-top: 3px;

    color:
        #d8b66c;

    font-size: 16px;

}



.tml-footer-brand > p {

    max-width: 390px;

    margin:
        22px 0 26px;

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

    font-size: 14px;

    line-height: 1.8;

}



.tml-footer-contact {

    display: flex;

    flex-direction: column;

    gap: 10px;

}



.tml-footer-contact a {

    display: flex;

    flex-direction: column;

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

    font-size: 13px;

    text-decoration: none;

}



.tml-footer-contact span {

    margin-bottom: 2px;

    color:
        #d7b56b;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .1em;

    text-transform: uppercase;

}



.tml-footer-column {

    display: flex;

    flex-direction: column;

    gap: 10px;

}



.tml-footer-column h3 {

    margin:
        0 0 10px;

    color: #fff;

    font-family:
        Georgia,
        serif;

    font-size: 19px;

    font-weight: 600;

}



.tml-footer-column a {

    width: fit-content;

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

    font-size: 13px;

    text-decoration: none;

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

}



.tml-footer-column a:hover {

    color:
        #dec078;

    transform:
        translateX(3px);

}



/* CONFIDENTIAL */


.tml-footer-confidential {

    display: flex;

    align-items: center;

    gap: 14px;

    padding:
        22px 0;

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

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

}



.tml-confidential-icon {

    width: 36px;

    height: 36px;

    flex:
        0 0 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

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

    color:
        #d9b86e;

    font-weight: 800;

}



.tml-footer-confidential
strong {

    display: block;

    color: white;

    font-size: 13px;

}



.tml-footer-confidential
span {

    display: block;

    margin-top: 3px;

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

    font-size: 12px;

}



/* BOTTOM */


.tml-footer-bottom {

    min-height: 72px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

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

    font-size: 12px;

}



.tml-footer-bottom > div {

    display: flex;

    gap: 18px;

}



.tml-footer-bottom a {

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

    text-decoration: none;

}



/* =========================================================
   GENERIC PAGE
========================================================= */


.tml-main {

    min-height: 45vh;

}



/* =========================================================
   RESPONSIVE
========================================================= */


@media (max-width: 1180px) {


    .tml-desktop-nav {

        gap: 14px;

    }


    .tml-desktop-nav > a,
    .tml-dropdown-trigger {

        font-size: 12px;

    }


    .tml-header-cta {

        padding:
            0 15px;

    }


}



@media (max-width: 1024px) {


    .tml-desktop-nav {

        display: none;

    }


    .tml-header-cta {

        display: none;

    }


    .tml-header-actions {

        margin-left: auto;

    }


    .tml-mobile-toggle {

        display: flex;

    }


    .tml-footer-grid {

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

    }


}



@media (max-width: 782px) {


    .admin-bar .tml-header {

        top: 46px;

    }


}



@media (max-width: 720px) {


    .tml-shell {

        width:
            min(
                var(--tml-width),
                calc(100% - 32px)
            );

    }


    .tml-topbar-note {

        display: none;

    }


    .tml-topbar-contact {

        width: 100%;

        justify-content: center;

    }


    .tml-topbar-contact
    a:nth-of-type(2),

    .tml-top-divider {

        display: none;

    }


    .tml-navbar {

        min-height: 72px;

    }


    .tml-logo img {

        max-width: 150px;

        max-height: 54px;

    }


    .tml-search-btn {

        width: 40px;

        height: 40px;

        min-width: 40px;

    }


    .tml-mobile-toggle {

        width: 40px;

        height: 40px;

    }


    .tml-footer-cta-inner {

        min-height: auto;

        padding:
            48px 0;

        flex-direction: column;

        align-items: flex-start;

    }


    .tml-footer-grid {

        grid-template-columns:
            1fr;

        gap: 33px;

        padding:
            52px 0 38px;

    }


    .tml-footer-bottom {

        padding:
            20px 0;

        flex-direction: column;

        align-items: flex-start;

    }


}

/* =========================================================
   POLISHED LOGO SIZING
========================================================= */

.tml-header-logo-image {
    display: block;
    width: auto;
    height: auto;

    max-width: 150px;
    max-height: 64px;

    object-fit: contain;
}

.tml-header.is-scrolled .tml-header-logo-image {
    max-height: 52px;
}

.tml-footer-logo-image {
    display: block;

    width: auto;
    height: auto;

    max-width: 155px;
    max-height: 70px;

    object-fit: contain;
}


/* Remove excessive visual size caused by source image */
.tml-logo,
.tml-footer-logo {
    overflow: hidden;
}


/* =========================================================
   REAL SERVICE ICONS
========================================================= */

.tml-service-icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

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

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

    border-radius: 50%;

    background: #fbf7ef;

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

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

.tml-service-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;

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

.tml-service-grid > a:hover .tml-service-icon {
    color: #fff;

    background: var(--tml-gold);

    transform: scale(1.05);
}


/* =========================================================
   NEW FOOTER
========================================================= */

.tml-footer {
    background: var(--tml-navy);
}


/* CTA */

.tml-footer-cta {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f7f3ea,
            #fcfaf6
        );
}

.tml-footer-cta::after {
    content: "";

    position: absolute;

    right: -80px;
    top: -120px;

    width: 300px;
    height: 300px;

    border-radius: 50%;

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

.tml-footer-cta-inner {
    position: relative;
    z-index: 2;

    min-height: 190px;
}

.tml-footer-eyebrow {
    display: block;

    margin-bottom: 8px;

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

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

    letter-spacing: .12em;

    text-transform: uppercase;
}

.tml-footer-consult-button {
    position: relative;
    z-index: 2;

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

    gap: 11px;

    min-height: 50px;

    padding: 0 22px;

    border-radius: 999px;

    background: var(--tml-navy);

    color: #fff;

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

    text-decoration: none;

    white-space: nowrap;

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

.tml-footer-consult-button:hover {
    color: #fff;

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

    transform: translateY(-2px);

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


/* MAIN */

.tml-footer-main {
    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(198,154,72,.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0f1925,
            #17283a
        );
}

@media (min-width: 1025px) {

    .tml-footer-main > .tml-shell {
        width: min(
            1500px,
            calc(100% - 110px)
        );
    }

}

.tml-footer-contact-column
.tml-contact-item[href^="mailto:"] strong {
    white-space: nowrap;
}


/* BRAND */

.tml-footer-brand > p {
    max-width: 360px;

    margin:
        22px 0 26px;

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

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


/* SOCIAL */

.tml-social-links {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 24px;
}


.tml-social-links a {
    width: 38px;
    height: 38px;

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

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

    border-radius: 50%;

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

    text-decoration: none;

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


/* FACEBOOK */

.tml-social-links a[aria-label="Facebook"] {
    color: #1877F2;
}


/* INSTAGRAM */

.tml-social-links a[aria-label="Instagram"] {
    color: #E4405F;
}


/* X / TWITTER */

.tml-social-links a[aria-label="X (Twitter)"] {
    color: #ffffff;
}


/* LINKEDIN */

.tml-social-links a[aria-label="LinkedIn"] {
    color: #0A66C2;
}


/* YOUTUBE */

.tml-social-links a[aria-label="YouTube"] {
    color: #FF0000;
}


/* HOVER */

.tml-social-links a:hover {
    border-color:
        currentColor;

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

    transform:
        translateY(-3px);

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


/* BASE SVG */

.tml-social-links svg {
    width: 17px;
    height: 17px;

    fill: currentColor;
}


/* INSTAGRAM OUTLINE ICON */

.tml-social-links
a[aria-label="Instagram"] svg {
    fill: none;

    stroke:
        currentColor;

    stroke-width: 2;
}


/* FACEBOOK */

.tml-social-links
a[aria-label="Facebook"] svg {
    fill: currentColor;

    stroke: none;
}


/* X */

.tml-social-links
a[aria-label="X (Twitter)"] svg {
    fill: currentColor;

    stroke: none;
}


/* LINKEDIN */

.tml-social-links
a[aria-label="LinkedIn"] svg {
    fill: currentColor;

    stroke: none;
}


/* YOUTUBE */

.tml-social-links
a[aria-label="YouTube"] svg {
    fill: currentColor;

    stroke: none;
}


/* YOUTUBE PLAY TRIANGLE */

.tml-social-links
a[aria-label="YouTube"]
.tml-play-icon {
    fill: #ffffff;
}


/* FOOTER COLUMNS */

.tml-footer-column h3,
.tml-footer-contact-column h3 {
    position: relative;

    margin:
        0 0 20px;

    padding-bottom: 10px;

    color: var(--tml-gold);

    font-family:
        Georgia,
        serif;

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

.tml-footer-column h3::after,
.tml-footer-contact-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 30px;
    height: 2px;

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


/* CONTACT */

.tml-footer-contact-column {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.tml-contact-item {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #fff;

    text-decoration: none;
}

.tml-contact-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

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

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

    border-radius: 10px;

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

    color:
        #d9b86e;
}

.tml-contact-icon svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;

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

.tml-contact-item > span:last-child {
    min-width: 0;
}

.tml-contact-item small {
    display: block;

    margin-bottom: 3px;

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

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;
}

.tml-contact-item strong {
    display: block;

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

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

    overflow-wrap: anywhere;
}

.tml-contact-address strong {
    line-height: 1.55;
    white-space: normal;
}

/* TRUST */

.tml-footer-trust {
    display: flex;

    align-items: center;

    gap: 14px;

    padding:
        16px 0;

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

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

.tml-trust-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

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

    border-radius: 50%;

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

    color:
        #d9b86e;
}

.tml-trust-icon svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

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

.tml-footer-trust strong {
    display: block;

    color: #fff;

    font-size: 13px;
}

.tml-footer-trust p {
    margin:
        3px 0 0;

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

    font-size: 12px;
}


/* =========================================================
   RESPONSIVE REFINEMENTS
========================================================= */

@media (max-width: 1024px) {

    .tml-header-logo-image {
        max-width: 145px;
        max-height: 56px;
    }

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

}


@media (max-width: 720px) {

    .tml-header-logo-image {
        max-width: 125px;
        max-height: 50px;
    }

    .tml-footer-logo-image {
        max-width: 145px;
        max-height: 64px;
    }

    .tml-footer-grid {
        grid-template-columns: 1fr;
    }

    .tml-footer-contact-column {
        max-width: 420px;
    }

}

.tml-footer .tml-footer-column h3,
.tml-footer .tml-footer-contact-column h3 {
    color: var(--tml-gold) !important;
}

/* =========================================================
   FOOTER TOP IMAGE BANNER - ISOLATED
   Safe: does not affect existing footer CSS
========================================================= */

.tml-footer-banner {
    position: relative;
    overflow: hidden;

    padding: 20px 0;

    background-image:
        linear-gradient(
            90deg,
            rgba(11, 23, 35, .93) 0%,
            rgba(11, 23, 35, .82) 48%,
            rgba(11, 23, 35, .65) 100%
        ),
        url("https://staging.thematrimoniallawyers.com/wp-content/uploads/2025/10/lady-justice-statue-scaled.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tml-footer-banner > .tml-shell {
    width: min(
        1500px,
        calc(100% - 110px)
    );
}

/* SUBTLE GOLD DETAIL */

.tml-footer-banner::after {
    content: "";

    position: absolute;

    right: -110px;
    top: -140px;

    width: 360px;
    height: 360px;

    border-radius: 50%;

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

    pointer-events: none;
}


/* INNER */

.tml-footer-banner-inner {
    position: relative;
    z-index: 2;

    display: grid;

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

    gap: 60px;

    align-items: center;
}


/* CONTENT */

.tml-footer-banner-content {
    max-width: 850px;
}


.tml-footer-banner-eyebrow {
    display: block;

    margin-bottom: 15px;

    color:
        #d8b56b;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .14em;

    text-transform: uppercase;
}


/* HEADING */

.tml-footer-banner-content h2 {
    max-width: 820px;

    margin: 0;

    color: white !important;

    font-family:
        Georgia,
        serif;

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

    font-weight: 600;

    line-height: 1.18;
}


/* DESCRIPTION */

.tml-footer-banner-content p {
    margin:
        17px 0 0;

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

    font-size: 15px;

    line-height: 1.7;
}


/* BUTTON */

.tml-footer-banner-button {
    min-height: 52px;

    display: inline-flex;

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

    gap: 11px;

    padding:
        0 25px;

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

    border-radius: 999px;

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

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    box-shadow:
        0 14px 30px
        rgba(0,0,0,.18);

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

.tml-footer-banner-button span {
    color:
        #d8b56b;

    transition:
        transform .25s ease;
}

.tml-footer-banner-button:hover {
    color: #fff;

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

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

    transform:
        translateY(-2px);
}

.tml-footer-banner-button:hover span {
    color: #fff;

    transform:
        translateX(4px);
}


/* TABLET */

@media (max-width: 1024px) {

    .tml-footer-banner {
        padding:
            58px 0;
    }

    .tml-footer-banner-inner {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .tml-footer-banner-button {
        width: fit-content;
    }

}


/* MOBILE */

@media (max-width: 720px) {

    .tml-footer-banner {
        padding:
            48px 0;

        background-position:
            center;
    }


    .tml-footer-banner-inner {
        gap: 24px;
    }


    .tml-footer-banner-eyebrow {
        margin-bottom: 11px;

        font-size: 9px;
    }


    .tml-footer-banner-content h2 {
        font-size:
            clamp(29px, 9vw, 40px);

        line-height: 1.2;
    }


    .tml-footer-banner-content p {
        margin-top: 13px;

        font-size: 14px;
    }


    .tml-footer-banner-button {
        width: 100%;
    }

}


/* =========================================================
   GLOBAL FIRST-VISIT LEGAL DISCLAIMER
========================================================= */

.tml-legal-modal {
    position: fixed;
    inset: 0;

    z-index: 999999;

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

    padding: 24px;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}


/* VISIBLE */

.tml-legal-modal.is-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}


/* =========================================================
   BACKDROP
========================================================= */

.tml-legal-modal-backdrop {
    position: absolute;
    inset: 0;

    background:
        rgba(5,12,20,.82);

    backdrop-filter:
        blur(7px);

    -webkit-backdrop-filter:
        blur(7px);
}


/* =========================================================
   MODAL DIALOG
========================================================= */

.tml-legal-modal-dialog {
    position: relative;
    z-index: 2;

    width:
        min(980px,100%);

    display: grid;

    grid-template-columns:
        330px minmax(0,1fr);

    overflow: hidden;

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

    border-radius: 22px;
    border-right: 5px solid #BD9857;

    background:
        #fbfaf7;

    box-shadow:
        0 30px 90px
        rgba(0,0,0,.34);

    opacity: 0;

    transform:
        translateY(18px)
        scale(.98);

    transition:
        opacity .4s ease,
        transform .45s
        cubic-bezier(.22,1,.36,1);
}


/* OPEN ANIMATION */

.tml-legal-modal.is-visible
.tml-legal-modal-dialog {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   LEFT PANEL
========================================================= */

.tml-legal-modal-left {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    padding:
        38px 34px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #101c29,
            #15283a
        );

    color: #fff;
}


/* DECORATIVE CIRCLE */

.tml-legal-modal-left::after {
    content: "";

    position: absolute;

    right: -72px;
    bottom: -72px;

    width: 170px;
    height: 170px;

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

    border-radius: 50%;
}


/* ICON */

.tml-legal-modal-icon {
    position: relative;
    z-index: 2;

    width: 58px;
    height: 58px;

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

    margin-bottom: 22px;

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

    border-radius: 50%;

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

    color:
        #d8b56b;
}

.tml-legal-modal-icon svg {
    width: 27px;
    height: 27px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.6;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* EYEBROW */

.tml-legal-modal-eyebrow {
    position: relative;
    z-index: 2;

    color:
        #d8b56b;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .14em;

    text-transform: uppercase;
}


/* TITLE */

.tml-legal-modal-left h2 {
    position: relative;
    z-index: 2;

    margin:
        12px 0 0;

    color: white !important;

    font-family:
        Georgia,
        serif;

    font-size: 31px;

    font-weight: 500;

    line-height: 1.15;
}


/* GOLD LINE */

.tml-legal-modal-line {
    position: relative;
    z-index: 2;

    width: 55px;
    height: 2px;

    margin-top: 20px;

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


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

.tml-legal-modal-content {
    display: flex;
    flex-direction: column;

    justify-content: center;
    text-align: justify;

    align-items: flex-start;

    padding:
        42px 48px;
}


/* TEXT */

.tml-legal-modal-content p {
    margin: 0;

    color:
        #4f5962;

    font-size: 14px;

    line-height: 1.85;
}


/* BAR COUNCIL TEXT */

.tml-legal-modal-content strong {
    color:
        var(--tml-navy);

    font-weight: 700;
}


/* =========================================================
   AGREE BUTTON
========================================================= */

.tml-legal-modal-accept {
    min-height: 48px;

    display: inline-flex;

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

    gap: 10px;

    margin-top: 24px;

    padding:
        0 22px;

    border: 0;

    border-radius: 999px;

    background:
        var(--tml-navy);

    color: white !important;

    font-family: inherit;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .07em;

    text-transform: uppercase;

    cursor: pointer;

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

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


/* BUTTON ARROW */

.tml-legal-modal-accept span {
    font-size: 15px;

    transition:
        transform .25s ease;
}


/* BUTTON HOVER */

.tml-legal-modal-accept:hover {
    background:
        var(--tml-gold-dark);

    transform:
        translateY(-2px);

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


.tml-legal-modal-accept:hover span {
    transform:
        translateX(4px);
}


/* =========================================================
   BODY SCROLL LOCK
========================================================= */

body.tml-legal-modal-open {
    overflow: hidden;
}


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

@media (max-width: 800px) {

    .tml-legal-modal-dialog {
        grid-template-columns:
            260px minmax(0,1fr);
    }


    .tml-legal-modal-left {
        padding:
            30px 24px;
    }


    .tml-legal-modal-left-row {
        grid-template-columns:
            58px minmax(0,1fr);

        gap: 14px;
    }


    .tml-legal-modal-icon {
        width: 52px;
        height: 52px;

        border-radius: 15px;
    }


    .tml-legal-modal-icon svg {
        width: 25px;
        height: 25px;
    }


    .tml-legal-modal-left h2 {
        font-size: 24px;
    }


    .tml-legal-modal-line {
        width: 44px;

        margin-top: 15px;
    }


    .tml-legal-modal-content {
        padding:
            34px;
    }


    .tml-legal-modal-content p {
        font-size: 13px;

        line-height: 1.75;
    }

}


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

@media (max-width: 620px) {

    .tml-legal-modal {
        padding: 14px;
    }


    .tml-legal-modal-dialog {
        grid-template-columns: 1fr;

        max-height:
            calc(100vh - 28px);

        overflow-y: auto;

        border-radius: 18px;
    }


    .tml-legal-modal-left {
        min-height: 125px;

        padding:
            24px 20px;
    }


    .tml-legal-modal-left-row {
        grid-template-columns:
            50px minmax(0,1fr);

        gap: 12px;

        align-items: center;
    }


    .tml-legal-modal-icon {
        width: 46px;
        height: 46px;

        border-radius: 13px;
    }


    .tml-legal-modal-icon svg {
        width: 22px;
        height: 22px;
    }


    .tml-legal-modal-left h2 {
        margin-top: 7px;

        font-size: 22px;

        line-height: 1.15;
    }


    .tml-legal-modal-eyebrow {
        font-size: 8px;
    }


    .tml-legal-modal-line {
        width: 40px;
        height: 2px;

        margin-top: 11px;
    }


    .tml-legal-modal-content {
        padding:
            24px 21px;
    }


    .tml-legal-modal-content p {
        font-size: 11px;

        line-height: 1.7;
    }


    .tml-legal-modal-accept {
        width: 100%;

        margin-top: 20px;
    }
    
    .tml-legal-modal-left {
        padding:
            24px 20px;
    }
    
    .tml-legal-modal-icon {
        width: 48px;
        height: 48px;
    
        margin-bottom: 16px;
    }
    
    .tml-legal-modal-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .tml-legal-modal-left h2 {
        font-size: 23px;
    }

}


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

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

    .tml-legal-modal,
    .tml-legal-modal-dialog,
    .tml-legal-modal-icon,
    .tml-legal-modal-accept,
    .tml-legal-modal-accept span {
        transition: none;
    }

}


.tml-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tml-dropdown-trigger > a {
    color: inherit;
    text-decoration: none;
}

.tml-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    background: transparent;

    color: inherit;

    cursor: pointer;
}

.tml-dropdown-toggle svg {
    width: 14px;
    height: 14px;

    fill: currentColor;
}

/* =========================================================
   FORM STATUS MESSAGES
========================================================= */

.tml-form-message {
    margin:
        0 0 22px;

    padding:
        14px 17px;

    border-radius:
        7px;

    font-size:
        13px;

    font-weight:
        600;

    line-height:
        1.6;
}


.tml-form-message-success {
    border:
        1px solid
        rgba(34, 120, 74, .20);

    background:
        rgba(34, 120, 74, .08);

    color:
        #236c48;
}


.tml-form-message-error {
    border:
        1px solid
        rgba(155, 54, 54, .18);

    background:
        rgba(155, 54, 54, .07);

    color:
        #8c3434;
}


/* =========================================================
   LIVE SEARCH RESULTS
========================================================= */

.tml-live-search {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height .3s ease,
        opacity .25s ease,
        margin-top .3s ease;
}


.tml-live-search.is-visible {
    max-height: 430px;

    margin-top: 20px;

    opacity: 1;
}


.tml-live-search-results {
    max-height: 390px;

    overflow-y: auto;

    padding-right: 5px;

    scrollbar-width: thin;

    scrollbar-color:
        rgba(216,182,108,.45)
        transparent;
}


.tml-live-search-result {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding:
        16px 6px;

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

    color: #fff;

    text-decoration: none;

    transition:
        padding-left .2s ease,
        background .2s ease;
}


.tml-live-search-result:hover {
    padding-left:
        11px;

    color: #fff;
}


.tml-live-search-result-content {
    min-width: 0;

    flex: 1;
}


.tml-live-search-result-type {
    display: block;

    margin-bottom: 4px;

    color:
        #d8b66c;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .1em;

    text-transform: uppercase;
}


.tml-live-search-result-title {
    display: block;

    margin-bottom: 4px;

    color: #fff;

    font-family:
        Georgia,
        serif;

    font-size: 17px;

    line-height: 1.3;
}


.tml-live-search-result-excerpt {
    display: block;

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

    font-size: 11px;

    line-height: 1.55;
}


.tml-live-search-result-arrow {
    flex: 0 0 auto;

    color:
        #d8b66c;

    font-size: 20px;

    transition:
        transform .2s ease;
}


.tml-live-search-result:hover
.tml-live-search-result-arrow {
    transform:
        translateX(4px);
}



/* LOADING */

.tml-live-search-status {
    padding:
        17px 4px;

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

    font-size: 12px;
}


.tml-live-search-status strong {
    color:
        #d8b66c;
}



/* NO RESULTS */

.tml-live-search-empty {
    padding:
        22px 4px;

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


.tml-live-search-empty strong {
    display: block;

    margin-bottom: 5px;

    color: #fff;

    font-family:
        Georgia,
        serif;

    font-size: 17px;
}


.tml-live-search-empty span {
    color:
        rgba(255,255,255,.48);

    font-size: 11px;
}



/* VIEW ALL */

.tml-live-search-all {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-top: 5px;

    padding:
        14px 5px;

    color:
        #d8b66c;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .05em;

    text-decoration: none;

    text-transform: uppercase;
}


.tml-live-search-all:hover {
    color:
        #fff;
}



@media (max-width: 600px) {

    .tml-live-search-result {
        padding:
            13px 2px;
    }


    .tml-live-search-result-excerpt {
        display: none;
    }


    .tml-live-search-result-title {
        font-size: 15px;
    }

}


/* =========================================================
   GENERIC PAGE FALLBACK
========================================================= */

.tml-generic-page-hero {
    padding:
        70px 0 55px;

    background:
        linear-gradient(
            135deg,
            #111c29,
            #1b2a3a
        );
}


.tml-generic-page-eyebrow {
    display: block;

    margin-bottom: 9px;

    color:
        var(--tml-gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .11em;

    text-transform: uppercase;
}


.tml-generic-page-hero h1 {
    margin: 0;

    color:
        #fff;

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(34px,5vw,54px);

    font-weight: 500;

    line-height: 1.15;
}


.tml-generic-page-content {
    padding:
        65px 0 85px;

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


.tml-generic-page-content
.tml-entry-content {
    max-width:
        900px;

    color:
        var(--tml-text);

    font-size:
        15px;

    line-height: 1.85;
}


/* =========================================================
   WHATSAPP FLOATING BUTTON POSITION
========================================================= */

.ht-ctc.ht-ctc-chat {
    right: 24px !important;
    bottom: 28px !important;
}

@media (max-width: 768px) {

    .ht-ctc.ht-ctc-chat {
        right: 18px !important;
        bottom: 20px !important;
    }

}