/* TM Enviro — cinematic UI inspired by tmenviro.xyz */

:root {
    --tme-ink: #121212;
    --tme-muted: #5c5954;
    --tme-cream: #f4f0e8;
    --tme-sand: #ebe4d6;
    --tme-line: #ddd6c8;
    --tme-brand: #8a056f;
    --tme-brand-2: #c43d9a;
    --tme-gold: #c4a574;
    --tme-deep: #0c0c0f;
    --display-font: "Bricolage Grotesque", "Figtree", sans-serif;
    --body-font: "Figtree", sans-serif;
    --default-font: "Figtree", sans-serif;
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1.0625rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.375rem;
    --fs-2xl: clamp(1.35rem, 1.6vw, 1.6rem);
    --fs-3xl: clamp(1.6rem, 2.2vw, 2rem);
    --fs-4xl: clamp(1.85rem, 3vw, 2.5rem);
    --fs-5xl: clamp(2.1rem, 3.6vw, 3rem);
    --fs-hero: clamp(2.35rem, 5vw, 4rem);
    --lh-tight: 1.12;
    --lh-head: 1.22;
    --lh-body: 1.7;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--body-font) !important;
    font-size: var(--fs-base) !important;
    font-weight: 400;
    line-height: var(--lh-body) !important;
    color: var(--tme-muted);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

p {
    font-family: var(--body-font);
    font-size: var(--fs-base);
    line-height: var(--lh-body);
    margin-bottom: 1.15em;
}

h1, h2, h3, h4, h5, h6,
.section-title h1,
.section-title h2,
.page-header-box h1 {
    font-family: var(--display-font) !important;
    color: var(--tme-ink);
    letter-spacing: -0.028em;
    line-height: var(--lh-head);
    font-weight: 650;
}

h1 { font-size: var(--fs-5xl); }
h2 { font-size: var(--fs-4xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
h5, h6 { font-size: var(--fs-md); }

.section-title h1,
.page-header-box h1 {
    font-size: var(--fs-hero) !important;
    font-weight: 700 !important;
    line-height: var(--lh-tight) !important;
    letter-spacing: -0.03em !important;
}

.section-title h2 {
    font-size: var(--fs-4xl) !important;
    font-weight: 650 !important;
    line-height: var(--lh-head) !important;
}

.section-title h3 {
    font-family: var(--body-font) !important;
    font-size: var(--fs-xs) !important;
    font-weight: 700 !important;
    letter-spacing: 0.16em;
    color: var(--tme-brand);
}

.section-title p,
.about-content p,
.service-item p,
.mission-vision-content p,
.our-history-content p {
    font-size: var(--fs-base) !important;
    line-height: var(--lh-body) !important;
    font-weight: 400 !important;
    color: var(--tme-muted) !important;
}

.main-menu ul li a.nav-link {
    font-family: var(--body-font) !important;
    font-size: 1.0625rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em;
}

.footer-links ul li,
.footer-links ul li a,
.about-footer-content p,
.footer-copyright-text p {
    font-size: var(--fs-sm) !important;
    line-height: 1.65 !important;
}

/* Buttons */
.btn-default {
    background: var(--tme-ink) !important;
    border-radius: 999px !important;
    padding: 0 8px 0 0 !important;
    overflow: hidden;
}

.btn-default span {
    font-family: var(--body-font);
    font-size: 0.9375rem !important;
    background: transparent !important;
    color: #fff !important;
    border-radius: 999px;
    padding: 16px 24px;
    font-weight: 600;
}

.btn-default:hover,
.btn-default:hover span {
    background: var(--tme-brand) !important;
    color: #fff !important;
}

.btn-default.btn-light {
    background: #fff !important;
}

.btn-default.btn-light span {
    color: var(--tme-ink) !important;
}

.btn-default.btn-light:hover,
.btn-default.btn-light:hover span {
    background: var(--tme-brand) !important;
    color: #fff !important;
}

.tme-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: var(--tme-ink);
    border-radius: 999px;
    padding: 14px 22px;
    font-family: var(--body-font);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.tme-btn i { transition: transform 0.35s ease; }

.tme-btn:hover {
    background: var(--tme-brand);
    color: #fff;
    transform: translateY(-3px);
}

.tme-btn:hover i { transform: translateX(5px); }

.tme-btn.dark {
    background: var(--tme-ink);
    color: #fff;
}

/* Top strip + header */
.topbar {
    padding: 0 !important;
    background: #5c074b !important;
    border: 0;
}

.tme-topstrip {
    background: linear-gradient(to right, #0A0A2A 20%, #8A056F 80%);
    color: rgba(255, 248, 242, 0.88);
    font-family: var(--body-font);
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
}

.tme-topstrip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    min-height: 40px;
}

.tme-topstrip-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    flex: 1 1 auto;
    min-width: 0;
}

.tme-topstrip-left span,
.tme-top-license {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f3d9b0;
    font-weight: 700;
}

.tme-topstrip-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.tme-topstrip a {
    color: #fff8f2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.tme-topstrip a i {
    color: #f3d9b0;
    font-size: 12px;
}

.tme-topstrip a:hover { color: #f3d9b0; }

.tme-top-short,
.tme-topstrip-left .tme-top-short { display: none; }

.tme-top-call-text { display: none !important; }

.tme-top-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    min-width: 0;
}

.tme-top-social,
.tme-top-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.tme-top-ico {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(243, 217, 176, 0.38);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.tme-top-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(243, 217, 176, 0.38);
    justify-content: center;
    gap: 0;
}

header.main-header {
    background: #fffdf9 !important;
}

.header-sticky,
.main-header .navbar,
header.main-header .header-sticky.active,
.main-header .header-sticky.active .navbar {
    background: #fffdf9 !important;
    background-image: none !important;
    backdrop-filter: none;
    box-shadow: none;
    border-bottom: 1px solid #efe8dc !important;
    transition: box-shadow 0.35s ease, background 0.35s ease;
}

.main-header .navbar {
    padding: 12px 0 !important;
}

.main-header .navbar > .container-fluid,
.tme-topstrip > .container-fluid {
    max-width: 100%;
    padding-left: 28px;
    padding-right: 28px;
}

.main-header.is-scrolled .header-sticky,
.main-header.is-scrolled .navbar,
.main-header .header-sticky.active {
    box-shadow: 0 10px 28px rgba(92, 7, 75, 0.08) !important;
    background: #fffdf9 !important;
}

.main-header .navbar-brand,
.main-header .header-sticky .navbar-brand,
.main-header .header-sticky.active-sticky-header.hide .navbar-brand {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    width: auto;
    max-width: 210px;
    padding: 0 !important;
    margin: 0 28px 0 0 !important;
    text-decoration: none;
}

.tme-brand-tagline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid #e4d3be;
    font-family: var(--display-font);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
    color: #6a3a62;
    white-space: normal;
}

.tme-brand-tagline span {
    display: block;
}

.main-header .navbar-brand img,
.main-header .navbar-brand #logo,
#logo {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-height: 52px !important;
    max-width: 210px !important;
    object-fit: contain;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .main-header .navbar > .container-fluid {
        flex-wrap: nowrap;
        gap: 8px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .main-header .navbar-brand {
        max-width: 150px;
        margin-right: 8px !important;
        flex: 0 0 auto;
    }
    .main-header .navbar-brand img,
    .main-header .navbar-brand #logo,
    #logo {
        max-height: 40px !important;
        max-width: 150px !important;
    }
    .tme-brand-tagline {
        font-size: 0.48rem;
        letter-spacing: 0.04em;
        max-width: 150px;
    }
    .navbar-collapse.main-menu,
    .main-menu .nav-menu-wrapper,
    .navbar-nav#menu,
    .header-social-box {
        flex-wrap: nowrap !important;
    }
    .navbar-nav#menu {
        flex-direction: row;
    }
    .main-menu ul li.nav-item .nav-link,
    .main-menu ul li a.nav-link {
        font-size: 0.9rem !important;
        padding: 8px 7px !important;
        white-space: nowrap;
    }
    .header-social-links ul {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 6px;
    }
    .header-social-links ul li {
        display: flex;
        margin-right: 0 !important;
    }
    .header-social-box {
        display: inline-flex !important;
        align-items: center;
        flex: 0 0 auto;
        gap: 8px;
    }
    .tme-nav-sell {
        margin-left: 0;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

.main-menu ul li.nav-item .nav-link,
.main-menu ul li a.nav-link {
    font-family: var(--body-font) !important;
    font-size: 1.0625rem !important;
    font-weight: 600 !important;
    color: #2a221f !important;
    padding: 10px 13px !important;
    position: relative;
}

.main-menu ul li.nav-item:first-child .nav-link {
    padding-left: 0 !important;
}

.main-menu ul li .nav-link:hover,
.main-menu ul li .nav-link:focus {
    color: #8a056f !important;
}

.main-menu ul ul {
    background: #fff !important;
    background-image: none !important;
    border: 1px solid #efe8dc;
    border-radius: 16px !important;
    box-shadow: 0 18px 40px rgba(42, 34, 31, 0.1);
    padding: 10px 0 !important;
    width: 250px;
}

.main-menu ul ul li.nav-item .nav-link,
.main-menu ul ul li .nav-link {
    color: #2a221f !important;
    padding: 8px 18px !important;
}

.main-menu ul ul li .nav-link:hover,
.main-menu ul ul li .nav-link:focus {
    color: #8a056f !important;
    background: #f6efe4 !important;
}

@media (min-width: 992px) {
    header.main-header,
    header.main-header .header-sticky,
    .main-header .navbar,
    .main-menu,
    .nav-menu-wrapper,
    .navbar-nav#menu {
        overflow: visible !important;
    }

    .main-header .navbar > .container-fluid {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-collapse.main-menu {
        display: flex !important;
        flex: 1 1 auto;
        align-items: center;
        justify-content: flex-end;
        margin-left: auto;
    }

    .main-menu .nav-menu-wrapper {
        flex: 0 1 auto;
        text-align: right;
        display: flex;
        justify-content: flex-end;
        margin-left: auto;
    }

    .navbar-nav#menu {
        margin-left: auto !important;
        margin-right: 0 !important;
        justify-content: flex-end;
    }

    .main-menu ul li.tme-mega {
        position: static !important;
    }

    .main-menu ul li.tme-mega > a.nav-link {
        display: inline-flex;
        align-items: center;
    }

    .main-menu ul li.submenu > a:after {
        content: "\f078" !important;
        font-family: "Font Awesome 6 Free" !important;
        font-weight: 900 !important;
        font-size: 11px !important;
        margin-left: 6px !important;
        display: inline-block !important;
        speak: none;
    }

    .main-menu ul li.tme-mega > ul.tme-mega-panel,
    .main-menu ul li.tme-mega > ul {
        display: grid !important;
        grid-template-columns: 230px 1fr 1fr 1fr;
        gap: 8px 16px;
        width: min(980px, calc(100vw - 56px)) !important;
        left: 50% !important;
        right: auto;
        top: calc(100% - 2px);
        padding: 22px !important;
        margin: 0 !important;
        border-radius: 24px !important;
        background: #fff !important;
        border: 1px solid #efe8dc !important;
        box-shadow: 0 30px 70px rgba(18, 18, 18, 0.14) !important;
        visibility: hidden;
        opacity: 0;
        transform: translate(-50%, 14px) !important;
        pointer-events: none;
        z-index: 300;
        transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    }

    .main-menu ul li.tme-mega:hover > ul,
    .main-menu ul li.tme-mega:focus-within > ul {
        visibility: visible !important;
        opacity: 1 !important;
        transform: translate(-50%, 0) !important;
        pointer-events: auto;
        padding: 22px !important;
    }

    .main-menu ul li.tme-mega > ul > li.submenu > ul,
    .main-menu ul li.tme-mega > ul ul {
        position: static !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        width: auto !important;
        left: auto !important;
        top: auto !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        display: block !important;
    }

    .main-menu ul li.tme-mega > ul > li.submenu > a:after,
    .main-menu ul li.tme-mega ul li.submenu > a:after {
        display: none !important;
    }

    .main-menu ul li.tme-mega .tme-mega-intro {
        grid-row: 1 / 2;
        align-self: stretch;
    }

    .main-menu ul li.tme-mega .tme-mega-intro > a {
        display: flex !important;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        gap: 6px;
        min-height: 250px;
        height: 100%;
        padding: 22px !important;
        border-radius: 18px;
        font-family: var(--display-font) !important;
        font-size: 1.45rem !important;
        font-weight: 700 !important;
        line-height: 1.2;
        color: #fff !important;
        background:
            linear-gradient(180deg, rgba(12, 12, 15, 0.12) 10%, rgba(12, 12, 15, 0.82) 100%),
            url("../tmenviro/8.JPEG") center/cover no-repeat !important;
        box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
        transition: transform 0.35s ease;
    }

    .main-menu ul li.tme-mega .tme-mega-intro > a:hover,
    .main-menu ul li.tme-mega .tme-mega-intro > a:focus {
        color: #fff !important;
        background:
            linear-gradient(180deg, rgba(12, 12, 15, 0.08) 10%, rgba(92, 7, 75, 0.78) 100%),
            url("../tmenviro/8.JPEG") center/cover no-repeat !important;
        transform: translateY(-3px);
    }

    .main-menu ul li.tme-mega .tme-mega-intro > a span {
        display: inline-block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #f3d9b0;
    }

    .main-menu ul li.tme-mega .tme-mega-intro > a small {
        display: block;
        font-size: 13px;
        font-weight: 500;
        color: rgba(255,255,255,0.8);
        line-height: 1.45;
    }

    .main-menu ul li.tme-mega .tme-mega-col {
        padding: 8px 6px 4px;
    }

    .main-menu ul li.tme-mega .tme-mega-col > a.nav-link {
        font-family: var(--display-font) !important;
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        color: var(--tme-ink) !important;
        padding: 4px 10px 12px !important;
        margin-bottom: 4px;
        border-bottom: 1px solid #efe8dc;
        background: transparent !important;
        pointer-events: auto;
    }

    .main-menu ul li.tme-mega .tme-mega-col > a.nav-link:hover {
        color: #8a056f !important;
        background: transparent !important;
    }

    .main-menu ul li.tme-mega .tme-mega-col ul li a.nav-link {
        display: flex !important;
        align-items: center;
        gap: 10px;
        padding: 10px 10px !important;
        border-radius: 12px;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        color: #3d3530 !important;
        background: transparent !important;
        line-height: 1.3;
    }

    .main-menu ul li.tme-mega .tme-mega-col ul li a.nav-link i {
        width: 30px;
        height: 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 9px;
        background: #f6efe4;
        color: #8a056f;
        font-size: 12px;
        flex-shrink: 0;
    }

    .main-menu ul li.tme-mega .tme-mega-col ul li a.nav-link:hover,
    .main-menu ul li.tme-mega .tme-mega-col ul li a.nav-link:focus {
        color: #8a056f !important;
        background: #faf6ef !important;
        padding: 10px 10px !important;
    }

    .main-menu ul li.tme-mega .tme-mega-col ul li a.nav-link:hover i {
        background: #8a056f;
        color: #fff;
    }

    .main-menu ul li.tme-mega .tme-mega-foot {
        grid-column: 1 / -1;
        margin-top: 6px;
    }

    .main-menu ul li.tme-mega .tme-mega-foot > a {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 14px 18px !important;
        border-radius: 14px;
        background: #f6f0e6 !important;
        color: #2a221f !important;
        font-weight: 700 !important;
        font-size: 0.92rem !important;
    }

    .main-menu ul li.tme-mega .tme-mega-foot > a i {
        color: #8a056f;
        transition: transform 0.3s ease;
    }

    .main-menu ul li.tme-mega .tme-mega-foot > a:hover,
    .main-menu ul li.tme-mega .tme-mega-foot > a:focus {
        background: #8a056f !important;
        color: #fff !important;
        padding: 14px 18px !important;
    }

    .main-menu ul li.tme-mega .tme-mega-foot > a:hover i {
        color: #fff;
        transform: translateX(5px);
    }
}

.header-social-links ul li {
    margin-right: 10px !important;
}

.header-social-links ul li a {
    color: #5c4d47 !important;
    width: 34px;
    height: 34px;
    border: 1px solid #efe8dc;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-social-links ul li a i {
    font-size: 13px !important;
}

.header-social-links ul li:hover a {
    color: #fff !important;
    background: #8a056f;
    border-color: #8a056f;
}

.tme-nav-sell-short { display: none; }
.tme-nav-cta,
.tme-nav-sell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    background: #8a056f;
    color: #fff !important;
    border-radius: 999px;
    padding: 8px 16px;
    font-family: var(--body-font);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}
.tme-nav-cta:hover,
.tme-nav-sell:hover {
    background: #5c074b;
    color: #fff !important;
    transform: translateY(-1px);
}

.header-social-box {
    align-items: center;
    gap: 4px;
}

.navbar-toggle {
    color: #2a221f !important;
}

.tme-mob-actions { display: none; }

/* Reveal */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-in,
.tme-hero-title .line.is-in,
.tme-rise.is-in {
    opacity: 1;
    transform: none;
}

[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="zoom"] { transform: scale(0.92); }

/* Hero */
.hero.tme-hero {
    position: relative;
    min-height: 100vh;
    padding: 210px 0 120px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0c0c0f;
}

.hero.tme-hero::before { display: none; }

.tme-hero-bg {
    position: absolute;
    inset: 0;
    background: url("../images/hero-bg.jpg") center/cover no-repeat;
    animation: kenburns 22s ease-in-out infinite alternate;
    transform: scale(1.08);
}

.tme-hero-mask {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(8,8,12,0.88) 0%, rgba(8,8,12,0.55) 48%, rgba(138,5,111,0.28) 100%);
}

.tme-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    pointer-events: none;
    transition: transform 0.4s ease-out;
}

.tme-orb.one {
    width: 340px;
    height: 340px;
    right: 8%;
    top: 12%;
    background: radial-gradient(circle, rgba(196,61,154,0.45), transparent 68%);
    animation: float 8s ease-in-out infinite;
}

.tme-orb.two {
    width: 260px;
    height: 260px;
    left: 6%;
    bottom: 10%;
    background: radial-gradient(circle, rgba(196,165,116,0.35), transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

.tme-hero .container { position: relative; z-index: 2; }

.tme-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.tme-kicker::before {
    content: "";
    width: 36px;
    height: 2px;
    background: var(--tme-gold);
}

.tme-hero-title {
    font-family: var(--display-font);
    font-size: var(--fs-hero);
    line-height: 1.05;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -0.03em;
}

.tme-hero-title .line {
    display: block;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: rise 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.tme-hero-title em {
    font-style: italic;
    font-weight: 500;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.88);
}

.tme-hero-sub,
.tme-rise {
    opacity: 0;
    transform: translateY(24px);
}

.tme-rise.is-in {
    animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.tme-hero-sub {
    color: rgba(255,255,255,0.84);
    font-size: var(--fs-md);
    line-height: 1.65;
    max-width: 540px;
    margin: 22px 0 30px;
}

.tme-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.tme-google {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 16px;
    color: #fff;
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.tme-google strong { display: block; font-size: var(--fs-md); line-height: 1; }
.tme-google span { font-size: var(--fs-xs); opacity: 0.85; }
.tme-google i { color: #fbbc04; }

.tme-ring {
    position: absolute;
    right: 7%;
    bottom: 14%;
    width: 150px;
    height: 150px;
    z-index: 3;
}

.tme-ring svg {
    width: 100%;
    height: 100%;
    animation: spin 18s linear infinite;
}

.tme-scroll {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 3;
    color: #fff;
    font-size: var(--fs-xs);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.tme-scroll b {
    width: 22px;
    height: 36px;
    border: 1.5px solid rgba(255,255,255,0.55);
    border-radius: 20px;
    position: relative;
}

.tme-scroll b::after {
    content: "";
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 4px;
    position: absolute;
    left: 50%;
    top: 6px;
    transform: translateX(-50%);
    animation: scrollDot 1.6s ease-in-out infinite;
}

/* Marquee */
.tme-marquee {
    background: var(--tme-ink);
    color: #fff;
    overflow: hidden;
    padding: 18px 0;
    white-space: nowrap;
}

.tme-marquee-track {
    display: inline-flex;
    gap: 48px;
    animation: marquee 28s linear infinite;
}

.tme-marquee span {
    font-family: var(--display-font);
    font-size: var(--fs-md);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tme-marquee i { color: var(--tme-gold); margin: 0 8px; }

/* Sections */
.tme-section { padding: 110px 0; position: relative; }
.tme-section.cream { background: var(--tme-cream); }
.tme-section.sand { background: var(--tme-sand); }
.tme-section.ink {
    background:
        radial-gradient(circle at 90% 10%, rgba(138,5,111,0.28), transparent 32%),
        var(--tme-deep);
    color: rgba(255,255,255,0.76);
}
.tme-section.ink h2,
.tme-section.ink h3,
.tme-section.ink h4 { color: #fff; }

.tme-label {
    font-family: var(--body-font);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--tme-brand);
    margin-bottom: 12px;
}

.tme-ceo-label {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.tme-section.ink .tme-label { color: var(--tme-gold); }
.tme-section.ink .tme-lead { color: rgba(255,255,255,0.78); }

.tme-heading {
    font-family: var(--display-font);
    font-size: var(--fs-4xl);
    line-height: var(--lh-head);
    font-weight: 650;
    color: var(--tme-ink);
    margin-bottom: 16px;
}

.tme-heading span { font-weight: 500; display: block; font-style: italic; }
.tme-lead { font-size: var(--fs-base); line-height: var(--lh-body); color: var(--tme-muted); max-width: 640px; }

/* Stats */
.tme-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: -70px;
    margin-bottom: 10px;
    position: relative;
    z-index: 4;
}

.tme-stat {
    background: #fff;
    border-radius: 24px;
    padding: 28px 24px;
    box-shadow: 0 20px 50px rgba(18,18,18,0.08);
}

.tme-stat b {
    display: block;
    font-family: var(--display-font);
    font-size: var(--fs-4xl);
    color: var(--tme-ink);
    line-height: 1;
}

.tme-stat span { color: var(--tme-muted); font-size: var(--fs-sm); }

/* 6R */
.tme-5r {
    margin-top: 28px;
    background: #fff;
    border-radius: 28px;
    padding: 22px 28px;
    display: grid;
    grid-template-columns: 130px repeat(6, 1fr);
    gap: 10px;
    align-items: center;
    box-shadow: 0 16px 40px rgba(18,18,18,0.06);
}

.tme-5r img { width: 118px; height: 64px; object-fit: contain; border-radius: 8px; }
.tme-5r h6 {
    margin: 0;
    font-family: var(--body-font);
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--tme-ink);
}

/* Grids */
.tme-card-grid,
.tme-step-grid,
.tme-why-grid,
.tme-pillar-grid,
.tme-office-grid,
.tme-team-grid,
.tme-process-grid { display: grid; gap: 24px; }

.tme-sustain-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}
.tme-sustain-head .tme-label,
.tme-sustain-head .tme-heading,
.tme-sustain-head .tme-lead {
    margin-left: auto;
    margin-right: auto;
}
.tme-sustain-head .tme-heading span {
    display: block;
}
.tme-sustain-head .tme-lead {
    max-width: 640px;
}

.tme-card-grid { grid-template-columns: repeat(3, 1fr); }

.tme-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    min-height: 280px;
    box-shadow: 0 10px 30px rgba(18,18,18,0.04);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.tme-card.media { padding: 0; }
.tme-card.media .img {
    height: 190px;
    overflow: hidden;
}
.tme-card.media .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.tme-sustain-cards {
    align-items: stretch;
}
.tme-sustain-cards .tme-card.media {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.tme-sustain-cards .tme-card.media .img {
    height: auto;
    aspect-ratio: 3 / 2;
    flex: 0 0 auto;
    background: #fff;
}
.tme-sustain-cards .tme-card.media .img.img-full img {
    object-fit: contain;
    object-position: center;
}
.tme-sustain-cards .tme-card .body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}
.tme-sustain-cards .tme-card h3 {
    min-height: calc(var(--lh-head) * 2em);
}
.tme-card:hover .img img { transform: scale(1.12); }
.tme-card:hover .img.img-full img { transform: none; }
.tme-card .body { padding: 28px 26px 32px; }
.tme-card.plain { padding: 36px 30px; }

.tme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 50px rgba(18,18,18,0.12);
}

.tme-card .num,
.tme-step .num,
.tme-pillar .num {
    font-family: var(--body-font);
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--tme-brand);
    letter-spacing: 0.12em;
    margin-bottom: 10px;
    display: block;
}

.tme-card h3,
.tme-step h3,
.tme-why h4,
.tme-pillar h3 {
    font-size: var(--fs-2xl);
    margin-bottom: 10px;
    color: var(--tme-ink);
}

.tme-card p, .tme-step p, .tme-why p, .tme-pillar p {
    margin: 0;
    color: var(--tme-muted);
}

/* About */
.tme-about-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.tme-about-media { position: relative; }
.tme-about-media img.main {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 36px;
}
.tme-about-media img.float {
    position: absolute;
    width: 46%;
    height: 220px;
    object-fit: cover;
    right: -18px;
    bottom: -28px;
    border: 8px solid #fff;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(18,18,18,0.14);
    animation: float 6s ease-in-out infinite;
}

.tme-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    background: var(--tme-ink);
    color: #fff;
    padding: 18px 22px;
    border-radius: 20px;
}

.tme-badge {
    font-size: var(--fs-sm);
}

.tme-badge strong {
    display: block;
    font-family: var(--display-font);
    font-size: var(--fs-3xl);
    line-height: 1;
}

.tme-list { list-style: none; padding: 0; margin: 24px 0; }
.tme-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--tme-ink);
    font-weight: 500;
}
.tme-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--tme-brand);
    position: absolute;
    left: 0;
    top: 8px;
}

/* Steps */
.tme-step-grid { grid-template-columns: repeat(4, 1fr); }
.tme-step {
    background: #fff;
    padding: 32px 24px;
    border-radius: 24px;
    position: relative;
}
.tme-step::after {
    content: "";
    position: absolute;
    top: 38px;
    right: -13px;
    width: 26px;
    height: 2px;
    background: var(--tme-line);
}
.tme-step:last-child::after { display: none; }
.tme-section.ink .tme-step { background: rgba(255,255,255,0.05); }
.tme-section.ink .tme-step h3 { color: #fff; }

/* Why */
.tme-why-grid { grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.tme-why-list { display: grid; gap: 0; }
.tme-why {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: start;
    padding: 22px 0;
    border-bottom: 1px solid var(--tme-line);
    transition: transform 0.3s ease;
}
.tme-why:hover { transform: translateX(4px); }
.tme-why:last-child { border-bottom: 0; }
.tme-why .num {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(160deg, #8a056f, #5c074b);
    color: #f3d9b0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display-font);
    font-size: 0.82rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    box-shadow: 0 10px 20px rgba(92, 7, 75, 0.2);
}
.tme-why h4 {
    font-size: 1.2rem;
    margin: 4px 0 8px;
    color: var(--tme-ink);
}
.tme-why p { margin: 0; color: var(--tme-muted); }

/* Pillars */
.tme-society .tme-heading {
    margin-bottom: 22px;
    line-height: 1.15;
}
.tme-society .tme-heading span {
    display: block;
    margin-top: 0;
}
.tme-pillar-grid { grid-template-columns: repeat(3, 1fr); }
.tme-pillar {
    padding: 40px 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    min-height: 280px;
    transition: transform 0.4s ease, background 0.4s ease;
}
.tme-pillar:hover {
    transform: translateY(-8px);
    background: rgba(138,5,111,0.22);
}
.tme-section.ink .tme-heading,
.tme-section.ink .tme-heading span,
.tme-section.ink .tme-pillar h3 {
    color: #fff !important;
}
.tme-section.ink .tme-pillar p {
    color: rgba(255, 255, 255, 0.88) !important;
}
.tme-section.ink .tme-pillar .num {
    color: #f3d9b0 !important;
}

/* Team */
.tme-team-grid { grid-template-columns: repeat(3, 1fr); }
.tme-team {
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 30px rgba(18,18,18,0.05);
}
.tme-team .photo {
    height: 360px;
    background: #eceae6 center top / cover no-repeat;
    transition: transform 0.7s ease;
}
.tme-team:hover .photo { transform: scale(1.06); }
.tme-team .photo.initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #2a1026, #8a056f);
}
.tme-team .photo.initials span {
    font-family: var(--display-font);
    font-size: var(--fs-4xl);
    color: #fff;
}
.tme-team .meta { padding: 20px 22px 24px; }
.tme-team h4 { margin: 0 0 4px; font-size: var(--fs-xl); }
.tme-team p {
    margin: 0;
    color: var(--tme-brand);
    font-weight: 600;
    font-size: var(--fs-xs);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tme-team-slider { position: relative; max-width: 1080px; margin: 0 auto; }
.tme-team-duo {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    max-width: 720px;
}
.tme-team-duo .tme-team-card .photo {
    height: auto;
    aspect-ratio: 3 / 4;
    max-height: min(560px, 70vh);
    background: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}
.tme-team-duo .tme-team-card .photo img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: center bottom;
    display: block;
}
.tme-team-duo .tme-team-card:hover .photo {
    transform: none;
}
.tme-team-slider .swiper { overflow: hidden; padding: 4px 2px 6px; }
.tme-team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(18,18,18,0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.tme-team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(92, 7, 75, 0.14);
}
.tme-team-card .photo {
    height: 210px;
    background: #eceae6 center top / cover no-repeat;
    transition: transform 0.6s ease;
}
.tme-team-card .shade { display: none; }
.tme-team-card .meta {
    padding: 14px 16px 16px;
    border-top: 3px solid #8a056f;
    text-align: center;
}
.tme-team-card .meta span {
    display: block;
    font-size: 10px;
    letter-spacing: 0.16em;
    color: var(--tme-brand);
    margin-bottom: 4px;
    font-weight: 700;
}
.tme-team-card h4 {
    margin: 0 0 6px;
    color: var(--tme-ink);
    font-size: 1.45rem !important;
    font-weight: 800 !important;
    line-height: 1.2;
}
.tme-team-card p {
    margin: 0;
    color: var(--tme-ink);
    font-weight: 800 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 1rem !important;
}
.tme-team-card:hover .photo { transform: scale(1.06); }
.tme-team-ui {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}
.tme-team-prev,
.tme-team-next {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--tme-line);
    background: #fff;
    color: var(--tme-ink);
    font-size: 12px;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.tme-team-prev:hover,
.tme-team-next:hover {
    background: #8a056f;
    border-color: #8a056f;
    color: #fff;
}
.tme-team-dots .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: #d8cfc0;
    opacity: 1;
}
.tme-team-dots .swiper-pagination-bullet-active {
    background: #8a056f;
    width: 18px;
    border-radius: 99px;
}

.tme-history-section {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 !important;
    background: #fff;
    overflow: hidden;
}

.tme-history-section img {
    display: block;
    width: 100vw;
    max-width: 100vw;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    object-fit: cover;
}

.tme-time {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 36px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid var(--tme-line);
}

.tme-time:last-child { border-bottom: 0; }

.tme-time .yr {
    font-family: var(--display-font);
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--tme-brand);
    line-height: 1;
}

.tme-time img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 22px;
}

.tme-clients .company-logo {
    height: 120px;
    background: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-shadow: 0 10px 24px rgba(18,18,18,0.04);
}

.tme-clients .company-logo img {
    max-width: 100%;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.tme-trusted {
    padding: 90px 0 70px;
    background:
        radial-gradient(700px 280px at 50% 0%, rgba(196,165,116,0.14), transparent 60%),
        #fffdf9;
    overflow: hidden;
}

.tme-trusted-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.tme-trusted-head .tme-heading { margin-bottom: 16px; }

.tme-trusted-rate {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 10px;
    color: var(--tme-muted);
    font-size: 0.95rem;
}

.tme-trusted-rate b {
    background: #8a056f;
    color: #fff;
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 0.95rem;
}

.tme-stars { color: #e6b325; letter-spacing: 1px; font-size: 1.05rem; }

.tme-trusted-rate em {
    font-style: normal;
    font-weight: 650;
    color: var(--tme-ink);
}

.tme-trusted-marquee { overflow: hidden; }

.tme-trusted-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: marquee 32s linear infinite;
}

.tme-trusted-logo {
    width: 188px;
    height: 96px;
    background: #fff;
    border: 1px solid #efe8dc;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 18px;
    box-shadow: 0 10px 24px rgba(18,18,18,0.04);
}

.tme-trusted-logo img {
    max-width: 100%;
    max-height: 62px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0.15);
}

@media (max-width: 991px) {
    .tme-history-section {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding: 0 !important;
        background: #fff;
    }
    .tme-history-section img {
        width: 100vw;
        max-width: 100vw;
        height: auto;
        border-radius: 0;
    }
    .tme-time {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 22px 0;
    }
}

/* Offices */
.tme-office-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 860px; }
.tme-office {
    background: #fff;
    border-radius: 28px;
    padding: 32px 28px;
    min-height: 280px;
    box-shadow: 0 12px 30px rgba(18,18,18,0.05);
    transition: transform 0.35s ease;
}
.tme-office:hover { transform: translateY(-8px); }
.tme-office h3 { font-size: var(--fs-2xl); margin-bottom: 14px; }
.tme-office p, .tme-office a { color: var(--tme-muted); display: block; margin-bottom: 10px; font-size: var(--fs-base); }
.tme-office a.phone { color: var(--tme-ink); font-weight: 700; font-size: var(--fs-md); }
.tme-office a.map { color: var(--tme-brand); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: var(--fs-xs); }

.tme-maps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 24px; }
.tme-maps iframe { width: 100%; height: 260px; border: 0; border-radius: 20px; }

.tme-footprint-sec {
    background:
        radial-gradient(900px 420px at 8% 0%, rgba(196,165,116,0.16), transparent 55%),
        radial-gradient(700px 380px at 100% 20%, rgba(138,5,111,0.08), transparent 50%),
        var(--tme-cream);
}

.tme-footprint-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 28px;
}

.tme-footprint-head .tme-lead { margin-bottom: 0; max-width: 520px; }

.tme-footprint-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tme-footprint-pills button {
    border: 1px solid rgba(138,5,111,0.18);
    background: #fffdf9;
    color: var(--tme-ink);
    border-radius: 999px;
    padding: 10px 16px;
    font-family: var(--body-font);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.tme-footprint-pills button:hover {
    border-color: #8a056f;
    transform: translateY(-1px);
}

.tme-footprint-pills button.is-on {
    background: #8a056f;
    border-color: #8a056f;
    color: #fff;
}

.tme-footprint {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 22px;
    background: linear-gradient(160deg, #2a0b24 0%, #4a123c 48%, #1a0816 100%);
    border-radius: 32px;
    padding: 22px;
    box-shadow: 0 28px 70px rgba(40, 8, 32, 0.28);
    overflow: hidden;
    position: relative;
}

.tme-footprint::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(196,165,116,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196,165,116,0.07) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at 30% 40%, #000 20%, transparent 72%);
    pointer-events: none;
}

.tme-footprint-art,
.tme-footprint-live { position: relative; z-index: 1; }

.tme-footprint-art {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 4px 8px;
}

.tme-art-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,165,116,0.22), transparent 68%);
    top: 18%;
    pointer-events: none;
}

.tme-art-kicker,
.tme-art-note {
    margin: 0;
    color: rgba(255,253,249,0.62);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.tme-art-note {
    margin-top: 16px;
    color: #c4a574;
    letter-spacing: 0.1em;
    text-align: center;
}

.tme-my-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 640 / 560;
}

.tme-my-svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.tme-site-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    z-index: 2;
}

.tme-site-pin .tme-ping { width: 22px; height: 22px; }

.tme-site-lab {
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    background: rgba(255,253,249,0.94);
    color: #5c074b;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 9px;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
    opacity: 0.72;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.tme-site-pin.is-on .tme-site-lab,
.tme-site-pin:hover .tme-site-lab {
    opacity: 1;
    transform: translateY(-50%) translateX(4px);
}

.tme-site-pin.is-on .tme-ping i {
    background: #c4a574;
    box-shadow: 0 0 0 3px rgba(196,165,116,0.35);
}

.tme-site-pin[data-loc="factory"] .tme-site-lab {
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
}

.tme-site-pin[data-loc="factory"].is-on .tme-site-lab,
.tme-site-pin[data-loc="factory"]:hover .tme-site-lab {
    transform: translateX(-50%) translateY(3px);
}

.tme-footprint-live {
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 520px;
}

.tme-sat-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 360px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.28);
}

.tme-sat-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(0.92) contrast(1.05);
}

.tme-sat-badge,
.tme-coords {
    position: absolute;
    z-index: 2;
    background: rgba(18,10,16,0.72);
    color: #fffdf9;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196,165,116,0.28);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 7px 12px;
}

.tme-sat-badge { top: 14px; left: 14px; }

.tme-live-dot {
    position: absolute;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}

.tme-live-dot .tme-ping { width: 22px; height: 22px; }

.tme-live-card {
    position: relative;
    margin: -72px 18px 0;
    background: rgba(255,253,249,0.94);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 22px;
    padding: 22px 22px 20px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.22);
    z-index: 3;
}

.tme-live-card.is-swap { animation: tmeCardIn 0.45s ease; }

.tme-live-card small {
    display: block;
    color: var(--tme-brand);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.68rem;
    margin-bottom: 6px;
}

.tme-live-card h3 {
    font-size: 1.45rem;
    margin-bottom: 8px;
    color: var(--tme-ink);
}

.tme-live-card p {
    margin-bottom: 8px;
    color: var(--tme-muted);
    font-size: 0.95rem;
}

.tme-live-card a[href^="tel"] {
    display: inline-block;
    color: var(--tme-ink);
    font-weight: 700;
    margin-bottom: 10px;
}

.tme-live-card .tme-coords {
    position: static;
    display: inline-block;
    margin: 0 0 14px;
    background: #2a0b24;
    color: #c4a574;
}

.tme-live-card .tme-btn { padding: 12px 18px; font-size: 0.85rem; }

.tme-ping {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
}

.tme-ping i {
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: #8a056f;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px rgba(138,5,111,0.25);
    z-index: 2;
}

.tme-ping b,
.tme-ping em {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(196, 165, 116, 0.45);
    animation: tmePing 1.8s ease-out infinite;
}

.tme-ping em { animation-delay: 0.6s; }

@keyframes tmePing {
    0% { transform: scale(0.4); opacity: 0.8; }
    100% { transform: scale(2.4); opacity: 0; }
}

@keyframes tmeCardIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: none; }
}

@media (max-width: 991px) {
    .tme-footprint { grid-template-columns: 1fr; padding: 16px; }
    .tme-footprint-head { flex-direction: column; align-items: flex-start; }
    .tme-footprint-art,
    .tme-footprint-live { min-height: 0; }
    .tme-footprint-art { min-height: 460px; }
    .tme-sat-wrap { min-height: 300px; height: 290px; }
}

.tme-form {
    background: #fff;
    border-radius: 24px;
    padding: 32px 30px;
    box-shadow: 0 16px 40px rgba(18,18,18,0.06);
}

.tme-form .form-control {
    border: 1px solid var(--tme-line);
    border-radius: 12px;
    padding: 13px 14px;
    font-family: var(--body-font);
    font-size: 0.95rem;
    min-height: 48px;
}

.tme-form textarea.form-control { min-height: 120px; }

.tme-form .form-control:focus {
    border-color: #8a056f;
    box-shadow: 0 0 0 3px rgba(138,5,111,0.12);
}

.tme-quiz p {
    margin: 0 0 10px;
    color: var(--tme-ink);
    font-size: 0.95rem;
}

.tme-quiz-opts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.tme-quiz-opt { margin: 0; cursor: pointer; }

.tme-quiz-opt input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tme-quiz-opt span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border: 1px solid var(--tme-line);
    border-radius: 12px;
    background: #fffdf9;
    color: var(--tme-ink);
    font-family: var(--display-font);
    font-size: 1.25rem;
    font-weight: 700;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.tme-quiz-opt:hover span,
.tme-quiz-opt input:checked + span {
    border-color: #8a056f;
    background: #8a056f;
    color: #fff;
}

.tme-quiz-err {
    display: block;
    margin-top: 8px;
    color: #b42318;
    font-weight: 600;
}

.tme-contact-aside {
    max-width: 100%;
}
.tme-contact-aside .tme-heading {
    margin-bottom: 14px;
}
.tme-contact-aside .tme-lead {
    max-width: none;
    margin-bottom: 22px;
}
.tme-touch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    width: 100%;
    align-items: stretch;
}

.tme-touch a,
.tme-touch div {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    min-height: 88px;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(18,18,18,0.04);
    color: var(--tme-ink);
    text-decoration: none;
}
.tme-touch a > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.tme-touch i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f6efe4;
    color: #8a056f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tme-touch strong { display: block; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tme-brand); }
.tme-touch span { display: block; font-weight: 600; }

/* CTA band */
.tme-cta {
    background:
        linear-gradient(120deg, rgba(12,12,15,0.82), rgba(138,5,111,0.55)),
        url("../tmenviro/4.JPEG") center/cover no-repeat;
    color: #fff;
    padding: 90px 0;
    text-align: center;
}
.tme-cta .tme-heading { color: #fff; }
.tme-cta .tme-lead { color: rgba(255,255,255,0.82); margin: 0 auto 28px; }

/* WhatsApp — bottom left */
.tme-wa {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tme-wa i { font-size: 30px; line-height: 1; }
.tme-wa:hover {
    color: #fff !important;
    transform: scale(1.08);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
}
.tme-wa::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.45);
    animation: tmePing 1.8s ease-out infinite;
    pointer-events: none;
}
#whatsapp-chat-widget,
.wa-widget-send-button,
.wati-chat-button { display: none !important; }

/* Footer */
.main-footer {
    background: var(--tme-deep) !important;
    padding: 72px 0 0 !important;
    background-image: none !important;
}

.tme-footer-marks {
    display: grid;
    gap: 8px;
    margin: 0 0 16px;
    max-width: 292px;
}
.tme-footer-certs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 0;
    align-items: stretch;
}
.tme-footer-certs img {
    display: block;
    width: 100%;
    height: 72px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    padding: 7px;
}

.main-footer .tme-footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 0.95fr 1.35fr;
    gap: 36px 32px;
    align-items: start;
}

.main-footer .tme-footer-logo,
.main-footer .tme-footer-lockup {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    width: 210px;
    background: #fffdf9;
    border-radius: 12px;
    padding: 10px 12px 12px;
    margin-bottom: 14px;
    text-decoration: none;
}

.main-footer .tme-footer-logo img,
.main-footer .tme-footer-lockup img {
    display: block;
    height: 44px;
    width: auto;
    max-width: 186px;
}

.main-footer .tme-footer-tagline {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 7px;
    padding-top: 7px;
    border-top: 1px solid #e4d3be;
    color: #6a3a62 !important;
    font-family: var(--display-font);
    font-size: 0.58rem !important;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.3 !important;
    text-transform: uppercase !important;
}

.main-footer .tme-footer-tagline span {
    display: block;
}

.main-footer .tme-footer-brand p,
.main-footer .tme-footer-col li,
.main-footer .tme-footer-col a {
    color: rgba(255,255,255,0.72) !important;
    font-size: 0.9rem !important;
    line-height: 1.65 !important;
    text-transform: none !important;
}

.main-footer .tme-footer-brand p { margin: 0 0 18px; }

.main-footer .tme-footer-social {
    display: flex;
    gap: 10px;
}

.main-footer .tme-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #c4a574 !important;
}

.main-footer .tme-footer-social a:hover {
    border-color: #fff;
    color: #fff !important;
}

.main-footer .tme-footer-col h3 {
    font-family: var(--display-font);
    color: #fff !important;
    font-size: 1.05rem !important;
    font-weight: 650 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    margin: 8px 0 16px !important;
    line-height: 1.3 !important;
}

.main-footer .tme-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-footer .tme-footer-col li {
    margin: 0 0 12px;
}

.main-footer .tme-footer-col li:last-child { margin-bottom: 0; }

.main-footer .tme-footer-col a:hover { color: #fff !important; }

.main-footer .tme-footer-col strong {
    display: block;
    color: #fff;
    font-weight: 700;
    margin-bottom: 3px;
}

.main-footer .tme-footer-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 40px;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.main-footer .tme-footer-copy p {
    margin: 0 !important;
    color: rgba(255,255,255,0.55) !important;
    font-size: 0.82rem !important;
}

.main-footer .tme-footer-copy a { color: #c4a574 !important; }

@media (max-width: 991px) {
    .main-footer .tme-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 24px;
    }
    .main-footer .tme-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
    .main-footer { padding: 48px 0 0 !important; }
    .tme-footer-certs img {
        height: 64px;
    }
    .main-footer .tme-footer-grid { grid-template-columns: 1fr; }
    .main-footer .tme-footer-brand { grid-column: auto; }
    .main-footer .tme-footer-copy {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 0 8px;
        margin-top: 28px;
    }
}

.service-item h3,
.service-single-content h2,
.contact-info-content h3,
.contact-us-form .section-title h2 {
    font-family: var(--display-font) !important;
    font-size: var(--fs-2xl) !important;
    line-height: var(--lh-head) !important;
}

.service-item p,
.contact-info-content p,
.service-entry p {
    font-size: var(--fs-base) !important;
    line-height: var(--lh-body) !important;
}

.page-header-box .breadcrumb,
.page-header-box .breadcrumb-item,
.page-header-box .breadcrumb-item a {
    font-family: var(--body-font);
    font-size: var(--fs-sm) !important;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    font-family: var(--body-font) !important;
    font-size: 0.9375rem !important;
}
.slicknav_nav li a i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}
.footer-links ul li,
.footer-links ul li a,
.about-footer-content p,
.footer-copyright-text p { color: rgba(255,255,255,0.76); }
.footer-office { margin-bottom: 18px; }
.footer-office strong { display: block; color: #fff; margin-bottom: 4px; }

.page-header {
    min-height: 0 !important;
    padding: 118px 0 42px !important;
    overflow: hidden;
}
.page-header::before {
    background: linear-gradient(110deg, rgba(8,8,12,0.82) 0%, rgba(138,5,111,0.35) 100%) !important;
}
.page-header-box h1,
.page-header-box h1 span {
    color: #fff !important;
    font-size: clamp(1.7rem, 3vw, 2.35rem) !important;
    font-weight: 700 !important;
    -webkit-text-stroke: 0 !important;
}

.testimonial-item {
    background: #fff;
    border-radius: 24px;
    padding: 8px;
}

.tme-section.tme-why-sec {
    padding-bottom: 24px;
}
.tme-section.tme-home-testi {
    padding-top: 24px;
}
.tme-home-testi-copy .tme-heading {
    margin-bottom: 22px;
}
.tme-home-testi-copy .tme-heading span {
    display: block;
}
.tme-home-testi-visual {
    margin: 0;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 16px 36px rgba(18, 18, 18, 0.06);
    height: 100%;
}
.tme-home-testi-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center;
}
.tme-home-testi-slider {
    position: relative;
}
.tme-home-testi-slider .swiper {
    overflow: hidden;
}
.tme-home-testi-slider .swiper-slide {
    height: auto;
}
.tme-home-quote {
    background: #fff;
    border-radius: 24px;
    padding: 28px 28px 24px;
    box-shadow: 0 12px 30px rgba(18, 18, 18, 0.06);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}
.tme-home-quote::before {
    content: "“";
    display: block;
    font-family: var(--display-font);
    font-size: 2.8rem;
    line-height: 0.55;
    color: var(--tme-brand);
    margin-bottom: 12px;
}
.tme-home-quote p {
    margin: 0 0 18px;
    color: var(--tme-ink);
    font-size: 1.02rem;
    line-height: 1.6;
    flex: 1;
}
.tme-home-testi-slider .testimonial-btn {
    position: relative;
    bottom: auto;
    right: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 18px;
    z-index: 2;
}
.tme-home-testi-slider .testimonial-button-next,
.tme-home-testi-slider .testimonial-button-prev {
    position: relative;
    width: 48px;
    height: 48px;
    margin: 0;
    border: 0;
    border-radius: 50%;
    background: #8a056f;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(138, 5, 111, 0.22);
    transition: background 0.25s ease, transform 0.25s ease;
}
.tme-home-testi-slider .testimonial-button-next::before,
.tme-home-testi-slider .testimonial-button-prev::before {
    content: none;
    display: none;
}
.tme-home-testi-slider .testimonial-button-next i,
.tme-home-testi-slider .testimonial-button-prev i {
    font-size: 16px;
    line-height: 1;
}
.tme-home-testi-slider .testimonial-button-next:hover,
.tme-home-testi-slider .testimonial-button-prev:hover {
    background: #6d0458;
    transform: translateY(-2px);
}
.tme-home-quote strong {
    display: block;
    color: var(--tme-ink);
    font-size: 1.02rem;
}
.tme-home-quote small {
    display: block;
    margin-top: 4px;
    color: var(--tme-brand);
    font-weight: 600;
}

.service-item,
.contact-us-form {
    border: 0;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(18,18,18,0.05);
}

.contact-form .form-control {
    border-radius: 14px;
    border-color: var(--tme-line);
    padding: 14px 16px;
}

.slicknav_menu { background: var(--tme-ink); }
.tme-process-grid { grid-template-columns: repeat(3, 1fr); }
.tme-faq { border-top: 1px solid var(--tme-line); padding: 22px 0; }
.tme-faq h4 { font-size: var(--fs-lg); margin-bottom: 8px; }
.tme-faq p { font-size: var(--fs-base); }

.tme-page-hero {
    position: relative;
    min-height: 0;
    height: auto;
    display: flex;
    align-items: flex-end;
    padding: 118px 0 40px;
    overflow: hidden;
    background: #0c0c0f;
}

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

.tme-page-hero-mask {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 8, 12, 0.58) 0%, rgba(8, 8, 12, 0.22) 48%, rgba(8, 8, 12, 0.12) 100%),
        linear-gradient(180deg, rgba(8, 8, 12, 0.12) 0%, rgba(8, 8, 12, 0.28) 100%);
}

.tme-page-hero .container { position: relative; z-index: 2; }

.tme-page-hero .tme-kicker {
    color: #f3d9b0 !important;
    margin-bottom: 10px;
}

.tme-page-hero .tme-hero-title,
.tme-page-hero .tme-hero-title .line,
.tme-page-hero .tme-hero-title em,
.tme-page-hero h1 {
    color: #fff !important;
    -webkit-text-stroke: 0 !important;
    font-style: normal;
}

.tme-page-hero .tme-hero-title {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem) !important;
    margin-bottom: 0;
}

.tme-page-hero .tme-hero-title .line {
    opacity: 1;
    transform: none;
    animation: none;
    display: inline;
    margin-right: 0.28em;
}

.tme-page-hero .tme-hero-sub {
    color: rgba(255,255,255,0.86) !important;
    font-size: 0.95rem;
    max-width: 560px;
    margin: 10px 0 0;
    opacity: 1;
    transform: none;
}

.tme-about-sub {
    max-width: none !important;
}

.tme-about-sub span {
    display: block;
}

.tme-cert-hero .tme-hero-title,
.tme-cert-hero .tme-hero-title .line,
.tme-cert-hero .tme-hero-title em,
.tme-cert-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.5rem) !important;
    line-height: 1.12;
}
.tme-cert-label {
    font-size: 1.05rem !important;
    letter-spacing: 0.14em;
}

.tme-crumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(255,255,255,0.78);
    font-size: 0.82rem;
    margin-top: 14px;
}

.tme-crumbs a { color: #fff; }
.tme-crumbs a:hover { color: #f3d9b0; }
.tme-crumbs strong { color: #f3d9b0; font-weight: 600; }

.tme-acc details {
    background: #fff;
    border-radius: 18px;
    margin-bottom: 12px;
    border: 1px solid #efe8dc;
    overflow: hidden;
}

.tme-acc summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 22px;
    font-family: var(--display-font);
    font-size: var(--fs-lg);
    font-weight: 650;
    color: var(--tme-ink);
    position: relative;
}

.tme-acc summary::-webkit-details-marker { display: none; }

.tme-acc summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tme-brand);
    font-size: 1.25rem;
}

.tme-acc details[open] summary::after { content: "–"; }

.tme-acc details p {
    padding: 0 22px 18px;
    margin: 0;
    color: var(--tme-muted);
}

.tme-proc-cards .tme-card { min-height: auto; }

.tme-tile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 18px;
}

.tme-tile-grid .wide { grid-column: span 2; }
.tme-tile-grid .tall { grid-row: span 2; }

.tme-tile {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    display: block;
    color: #fff;
    min-height: 280px;
}

.tme-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.tme-tile:hover img { transform: scale(1.1); }

.tme-tile .shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12,12,15,0.05) 20%, rgba(12,12,15,0.78) 100%);
}

.tme-tile .copy {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
}

.tme-tile .copy span {
    display: block;
    font-size: var(--fs-xs);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f3d9b0;
    margin-bottom: 8px;
}

.tme-tile .copy h3 {
    color: #fff;
    font-size: clamp(1.15rem, 1.6vw, 1.55rem);
    line-height: 1.25;
    margin: 0;
}

.tme-tile .copy i {
    display: inline-flex;
    width: 38px;
    height: 38px;
    margin-top: 14px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--tme-brand);
    font-size: 13px;
    transition: transform 0.35s ease;
}

.tme-tile:hover .copy i { transform: translateX(4px); }

.tme-tile:hover { box-shadow: 0 22px 40px rgba(18,18,18,0.16); }

.tme-prow {
    display: grid;
    grid-template-columns: 90px 1fr 1fr;
    grid-template-areas: "no text img";
    gap: 40px;
    align-items: center;
    padding: 42px 0;
    border-bottom: 1px solid var(--tme-line);
}

.tme-prow.flip { grid-template-areas: "no img text"; }
.tme-prow:last-child { border-bottom: 0; }
.tme-prow .no { grid-area: no; }
.tme-prow .txt { grid-area: text; }
.tme-prow img { grid-area: img; }

.tme-prow .no {
    font-family: var(--display-font);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--tme-brand);
    line-height: 1;
}

.tme-prow h3 {
    font-size: var(--fs-3xl);
    margin-bottom: 12px;
    color: var(--tme-ink);
}

.tme-6r-band {
    background: #fff;
    padding: 0 !important;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    line-height: 0;
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
}
.tme-6r-band .container-fluid {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.tme-6r-band img {
    display: block;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    object-fit: fill;
    object-position: center;
    margin: 0 !important;
    vertical-align: top;
}
.tme-6r-band + .tme-section {
    margin-top: 36px;
    padding-top: 48px;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 100% !important;
    width: 100%;
    padding-left: clamp(20px, 4vw, 56px);
    padding-right: clamp(20px, 4vw, 56px);
}

.tme-prow img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 24px;
}

.tme-words {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tme-words span {
    font-family: var(--display-font);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: #fff;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    padding: 10px 22px;
}

.tme-quote {
    background: #fff;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 12px 30px rgba(18,18,18,0.05);
    height: 100%;
}

.tme-quote::before {
    content: "“";
    display: block;
    font-family: var(--display-font);
    font-size: 3.2rem;
    line-height: 0.7;
    color: var(--tme-brand);
    margin-bottom: 14px;
}

.tme-quote p {
    font-size: var(--fs-base);
    color: var(--tme-ink);
    margin-bottom: 18px;
}

.tme-quote strong { display: block; color: var(--tme-ink); }
.tme-quote small { color: var(--tme-brand); font-weight: 600; }

.tme-quote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@keyframes kenburns {
    from { transform: scale(1.05) translate(0,0); }
    to { transform: scale(1.18) translate(-2%, -2%); }
}
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}
@keyframes rise {
    to { opacity: 1; transform: none; }
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes scrollDot {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 18px; }
}

@media (max-width: 1199px) {
    .tme-5r { grid-template-columns: 110px repeat(3, 1fr); }
    .tme-step-grid, .tme-maps, .tme-stats { grid-template-columns: 1fr 1fr; }
    .tme-step::after { display: none; }
    .tme-ring { display: none; }
}

@media (max-width: 991px) {
    .hero.tme-hero { min-height: auto; padding: 160px 0 80px; }
    .tme-slider { height: auto; min-height: 0; }
    .tme-home-testi-visual img {
        min-height: 220px;
        max-height: 360px;
        height: 280px;
        width: 100%;
        object-fit: cover;
    }
    .tme-about-split,
    .tme-why-grid,
    .tme-card-grid,
    .tme-pillar-grid,
    .tme-office-grid,
    .tme-team-grid,
    .tme-process-grid,
    .tme-quote-grid,
    .tme-step-grid {
        grid-template-columns: 1fr;
        max-height: none;
        height: auto;
        min-width: 0;
        width: 100%;
        gap: 16px;
    }
    .tme-about-split > *,
    .tme-card,
    .tme-pillar,
    .tme-step,
    .tme-office,
    .tme-why,
    .tme-quote {
        min-width: 0;
        max-width: 100%;
    }
    .tme-tile-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 240px;
    }
    .tme-tile-grid .wide { grid-column: span 2; }
    .tme-prow,
    .tme-prow.flip {
        grid-template-columns: 70px 1fr;
        grid-template-areas:
            "no text"
            "img img";
        gap: 18px 20px;
    }
    .tme-prow img { height: 200px; }
    .tme-about-media img.main { height: 360px; }
    .tme-about-media img.float { display: none; }
    .tme-5r { grid-template-columns: 1fr 1fr; }
    .tme-stats { margin-top: 24px; }
    .tme-nav-cta { display: none; }
    .header-social-links { display: none; }
    .header-social-box .tme-nav-sell { display: none; }
    .main-header .navbar-collapse.main-menu {
        display: none !important;
    }
    .tme-nav-sell-short { display: none; }

    .tme-topstrip {
        font-size: 0.62rem;
        letter-spacing: 0;
    }
    .tme-topstrip-inner {
        position: relative;
        display: block;
        min-height: 36px;
        width: 100%;
        max-width: 100%;
        overflow: visible;
        padding: 6px 0;
    }
    .tme-topstrip-left {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        gap: 8px;
    }
    .tme-top-license {
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        flex: 0 1 auto;
        min-width: 0;
        white-space: nowrap;
        line-height: 1.15;
    }
    .tme-topstrip-left .tme-top-lic-full {
        display: inline !important;
    }
    .tme-top-call-text { display: none !important; }
    .tme-top-full { display: none !important; }
    .tme-top-short { display: none !important; }
    .tme-top-actions {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-start;
        gap: 6px;
        margin-left: auto;
        flex: 0 0 auto;
    }
    .tme-top-actions a,
    .tme-topstrip .tme-top-call,
    .tme-topstrip .tme-top-mail,
    .tme-top-ico {
        width: 26px !important;
        height: 26px !important;
        min-width: 26px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 50% !important;
        background: #c4a574 !important;
        color: #5c074b !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 26px !important;
        gap: 0 !important;
        line-height: 0 !important;
        text-align: center !important;
    }
    .tme-top-actions a span {
        display: none !important;
    }
    .tme-top-actions a i,
    .tme-topstrip .tme-top-call i,
    .tme-topstrip .tme-top-mail i,
    .tme-top-ico i {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 26px !important;
        height: 26px !important;
        margin: 0 !important;
        padding: 0 !important;
        background: none !important;
        color: #5c074b !important;
        font-size: 12px !important;
        line-height: 1 !important;
        text-align: center !important;
    }
    .tme-top-actions a i::before {
        display: block;
        line-height: 1;
        width: auto;
        height: auto;
    }

    header.main-header .header-sticky.hide {
        transform: none !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .main-header .navbar {
        padding: 6px 0 !important;
    }
    .main-header .navbar > .container-fluid,
    .tme-topstrip > .container-fluid {
        padding-left: 14px;
        padding-right: 14px;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        overflow: visible;
        min-width: 0;
    }
    .tme-topstrip > .container-fluid {
        display: block;
        width: 100%;
    }
    .main-header .navbar-brand {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 158px);
        margin: 0 10px 0 0 !important;
        overflow: hidden;
    }
    .main-header .navbar-brand img,
    .main-header .navbar-brand #logo,
    #logo {
        max-height: 42px !important;
        max-width: min(42vw, 168px) !important;
    }
    .tme-brand-tagline {
        margin-top: 4px;
        padding-top: 4px;
        font-size: 0.58rem;
        letter-spacing: 0.04em;
        line-height: 1.25;
        max-width: 168px;
    }

    .tme-mob-actions {
        display: flex;
        align-items: center;
        flex: 0 0 auto;
        gap: 6px;
        margin-left: auto;
        position: relative;
        z-index: 10003;
    }
    .tme-mob-actions .tme-nav-sell {
        display: inline-flex;
        margin-left: 0;
        height: 36px;
        padding: 0 11px;
        font-size: 0.72rem;
        transform: none;
        box-shadow: none;
    }
    .tme-mob-call {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #fff;
        color: #8a056f !important;
        border: 1px solid #eadfce;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: none;
    }
    .tme-mob-call i { font-size: 13px; }

    .tme-burger {
        width: 36px;
        height: 36px;
        border: 0;
        border-radius: 50%;
        background: #2a0b24;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 0;
        cursor: pointer;
        box-shadow: none;
        z-index: 10004;
        position: relative;
    }
    .tme-burger span {
        display: block;
        width: 14px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }
    .tme-burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .tme-burger.is-open span:nth-child(2) { opacity: 0; }
    .tme-burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    .navbar-toggle,
    .responsive-menu,
    .slicknav_menu { display: none !important; }

    header.main-header .header-sticky.hide {
        transform: none !important;
        visibility: visible !important;
    }
    header.main-header { z-index: 40; }

    body.tme-nav-open { overflow: hidden; }
    body.tme-nav-open .tme-wa { opacity: 0; pointer-events: none; }
    body.tme-nav-open header.main-header { z-index: 10025; }
}

@media (min-width: 600px) and (max-width: 991px) {
    .tme-topstrip-left .tme-top-short { display: none !important; }
}

@media (max-width: 420px) {
    .tme-nav-sell-full { display: none; }
    .tme-nav-sell-short { display: inline; }
    .tme-mob-call { display: none; }
    .tme-topstrip {
        font-size: 0.58rem;
    }
    .tme-topstrip-left .tme-top-lic-full { display: none !important; }
}

.tme-mob-back,
.tme-mob-drawer { display: none; }
.tme-mob-back[hidden],
.tme-mob-drawer[hidden] { display: none !important; }

@media (max-width: 991px) {
    .tme-mob-back {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(18, 8, 16, 0.55);
        backdrop-filter: blur(4px);
        z-index: 10020;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .tme-mob-drawer {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: min(92vw, 400px);
        height: 100dvh;
        z-index: 10021;
        background:
            radial-gradient(420px 240px at 100% 0%, rgba(196,165,116,0.22), transparent 58%),
            linear-gradient(180deg, #fffdf9 0%, #f3eee4 100%);
        box-shadow: -20px 0 50px rgba(18, 8, 16, 0.28);
        transform: translateX(104%);
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        padding: 0;
    }
    body.tme-nav-open .tme-mob-back {
        opacity: 1;
        visibility: visible;
    }
    body.tme-nav-open .tme-mob-drawer { transform: none; }

    .tme-mob-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 18px;
        background: #fff;
        border-bottom: 1px solid #eadfce;
    }
    .tme-mob-brand {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        min-width: 0;
        max-width: calc(100% - 56px);
    }
    .tme-mob-head img { height: 36px; width: auto; }
    .tme-mob-brand .tme-brand-tagline {
        max-width: 168px;
        margin-top: 5px;
        padding-top: 5px;
        font-size: 0.5rem;
        letter-spacing: 0.05em;
    }
    .tme-mob-close {
        width: 42px;
        height: 42px;
        border: 0;
        border-radius: 50%;
        background: #8a056f;
        color: #fff;
        font-size: 18px;
        cursor: pointer;
    }
    .tme-mob-kicker {
        margin: 0;
        padding: 14px 22px 4px;
        color: #8a056f;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }
    .tme-mob-nav {
        flex: 1;
        overflow-y: auto;
        padding: 8px 18px 20px;
        -webkit-overflow-scrolling: touch;
    }
    .tme-mob-nav > a,
    .tme-mob-acc-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: none;
        border: 0;
        border-bottom: 1px solid rgba(138,5,111,0.1);
        padding: 15px 6px;
        font-family: var(--display-font);
        font-size: 1.28rem;
        font-weight: 650;
        color: #1a0a16;
        text-align: left;
        cursor: pointer;
    }
    .tme-mob-nav > a:active,
    .tme-mob-acc-btn:active { color: #8a056f; }
    .tme-mob-acc-btn i {
        font-size: 0.75rem;
        color: #8a056f;
        transition: transform 0.25s ease;
    }
    .tme-mob-acc.is-open .tme-mob-acc-btn i { transform: rotate(180deg); }
    .tme-mob-acc-panel {
        display: none;
        padding: 4px 0 12px 10px;
    }
    .tme-mob-acc.is-open .tme-mob-acc-panel { display: block; }
    .tme-mob-acc-panel a {
        display: block;
        padding: 9px 4px;
        color: #5c5954;
        font-size: 0.95rem;
        font-weight: 600;
    }
    .tme-mob-foot {
        padding: 16px 18px 22px;
        background: #fff;
        border-top: 1px solid #eadfce;
        display: grid;
        gap: 10px;
    }
    .tme-mob-foot .tme-btn { justify-content: center; }
    .tme-mob-wa {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: #25d366;
        color: #fff !important;
        border-radius: 999px;
        padding: 12px 16px;
        font-weight: 700;
    }
    .tme-mob-foot > a[href^="tel"] {
        text-align: center;
        color: #8a056f;
        font-weight: 700;
    }
}

@media (min-width: 992px) {
    .tme-mob-actions,
    .tme-mob-back,
    .tme-mob-drawer { display: none !important; }
}

@media (max-width: 767px) {
    .tme-section { padding: 72px 0; }
    .tme-step-grid, .tme-maps, .tme-5r, .tme-stats { grid-template-columns: 1fr; }
    .tme-hero-actions { flex-direction: column; align-items: flex-start; }
    .tme-hero-title { font-size: clamp(2rem, 9vw, 2.6rem); }
    .tme-tile-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
    }
    .tme-tile-grid .wide { grid-column: span 1; }
    .tme-prow,
    .tme-prow.flip {
        grid-template-columns: 1fr;
        grid-template-areas:
            "no"
            "text"
            "img";
    }
    .tme-photo-grid,
    .tme-split-svc,
    .tme-metal-figs { grid-template-columns: 1fr; }
    .tme-photo-grid img { height: 200px; }
}

.tme-svc-nav {
    background: #fffdf9;
    border-bottom: 1px solid var(--tme-line);
}

.tme-svc-nav-inner {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin;
}

.tme-svc-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid var(--tme-line);
    font-size: 1.02rem;
    font-weight: 650;
    color: #2a221f;
    background: #fff;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.tme-svc-nav a:hover,
.tme-svc-nav a.is-on {
    background: #8a056f;
    border-color: #8a056f;
    color: #fff;
}

.tme-split-svc {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}

.tme-svc-mosaic {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: 168px 168px;
    gap: 12px;
}

.tme-svc-mosaic > :first-child {
    grid-row: span 2;
}

.tme-svc-mosaic figure {
    margin: 0;
    position: relative;
    min-height: 0;
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: #eee8dc;
}

.tme-svc-mosaic > img,
.tme-svc-mosaic figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}
.tme-svc-mosaic figure img {
    position: absolute;
    inset: 0;
}

.tme-svc-mosaic figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px 7px;
    background: linear-gradient(180deg, transparent, rgba(12,12,15,0.72));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.tme-check {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.tme-check li {
    position: relative;
    padding: 11px 0 11px 30px;
    border-bottom: 1px solid var(--tme-line);
    color: var(--tme-ink);
    font-weight: 550;
}

.tme-check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--tme-brand);
    font-weight: 700;
}

.tme-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tme-chip-list span {
    padding: 10px 16px;
    border-radius: 999px;
    background: #f6efe4;
    color: var(--tme-ink);
    font-weight: 650;
    font-size: 0.9rem;
}

.tme-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tme-photo-grid.two { grid-template-columns: 1fr 1fr; }

.tme-photo-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 22px;
}

.tme-metal-intro {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}
.tme-metal-intro .tme-label,
.tme-metal-intro .tme-heading,
.tme-metal-intro .tme-lead {
    margin-left: auto;
    margin-right: auto;
}
.tme-metal-figs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}
.tme-metal-figs figure {
    margin: 0;
    background: #fff;
    border-radius: 24px;
    padding: 18px 18px 16px;
    box-shadow: 0 12px 30px rgba(18, 18, 18, 0.06);
    overflow: visible;
}
.tme-metal-figs img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    background: #fff;
}
.tme-metal-figs figcaption {
    margin-top: 12px;
    text-align: center;
    font-weight: 700;
    color: var(--tme-ink);
    font-size: 1.05rem;
}

.tme-vmv-sec .tme-vmv-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}
.tme-vmv-sec .tme-vmv-head .tme-label {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}
.tme-vmv-sec .tme-vmv-head .tme-heading {
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    margin-bottom: 16px;
}
.tme-vmv-sec .tme-vmv-head .tme-lead {
    margin: 0 auto;
    font-size: 1.15rem;
    max-width: 640px;
}
.tme-vmv {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tme-vmv article {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 36px 30px 34px;
    box-shadow: 0 16px 40px rgba(18,18,18,0.07);
    border-top: 4px solid #8a056f;
    min-height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tme-vmv article:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(92, 7, 75, 0.12);
}
.tme-vmv-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.tme-vmv-top i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f6efe4;
    color: #8a056f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}
.tme-vmv article span {
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a056f;
    font-weight: 750;
}
.tme-vmv article h3 {
    font-size: clamp(1.45rem, 2vw, 1.75rem);
    line-height: 1.25;
    margin: 0 0 14px;
    color: var(--tme-ink);
}
.tme-vmv article p {
    color: var(--tme-muted);
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.7;
}
@media (max-width: 991px) {
    .tme-vmv { grid-template-columns: 1fr; }
    .tme-vmv-sec .tme-vmv-head { margin-bottom: 28px; }
    .tme-vmv article { padding: 28px 22px; }
}

.tme-hl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.tme-hl article {
    background: #fff;
    border-radius: 22px;
    padding: 26px 24px;
    box-shadow: 0 12px 30px rgba(18,18,18,0.05);
    min-height: 180px;
}

.tme-hl article span {
    display: block;
    font-size: var(--fs-xs);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tme-brand);
    font-weight: 700;
    margin-bottom: 10px;
}

.tme-hl article h3 {
    font-size: var(--fs-xl);
    margin-bottom: 8px;
    color: var(--tme-ink);
}

.tme-hl article p { color: var(--tme-muted); margin: 0; }

.tme-section.ink .tme-hl article h3 { color: var(--tme-ink); }
.tme-section.ink .tme-hl article p { color: var(--tme-muted); }

@media (max-width: 991px) {
    .tme-hl { grid-template-columns: 1fr; }
}

.tme-slider {
    position: relative;
    height: 100vh;
    min-height: 680px;
    background: #0c0c0f;
    overflow: hidden;
}

.tme-slider .swiper,
.tme-slider .swiper-slide {
    height: 100%;
}

.tme-slider .swiper-slide {
    display: flex;
    align-items: flex-end;
    padding: 160px 0 140px;
}

.tme-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    animation: kenburns 18s ease-in-out infinite alternate;
}

.tme-slide-mask {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(8,8,12,0.86) 0%, rgba(8,8,12,0.42) 52%, rgba(92,7,75,0.32) 100%);
}

.tme-slider .container {
    position: relative;
    z-index: 2;
}

.tme-tagline-title {
    font-family: var(--display-font);
    color: #fff;
    margin: 0 0 20px;
    max-width: 16ch;
}

.tme-tagline-lead {
    display: block;
    font-size: clamp(0.78rem, 1.3vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #f3d9b0;
    margin-bottom: 8px;
}

.tme-tagline-main {
    display: block;
    font-size: clamp(2.15rem, 4.6vw, 3.6rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-transform: none;
    text-wrap: balance;
}


.tme-slider .tme-hero-title .line {
    opacity: 1;
    transform: none;
    animation: none;
}

.tme-slider-ui {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 36px;
}

.tme-slide-frac {
    color: #fff;
    font-family: var(--display-font);
    font-size: 1.4rem;
    min-width: 90px;
}

.tme-slide-frac em {
    font-style: normal;
    color: #f3d9b0;
}

.tme-slide-frac span {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
}

.tme-slider .swiper-pagination {
    position: static;
    width: auto;
}

.tme-slider .swiper-pagination-bullet {
    width: 36px;
    height: 3px;
    border-radius: 0;
    background: rgba(255,255,255,0.3);
    opacity: 1;
    margin: 0 4px !important;
}

.tme-slider .swiper-pagination-bullet-active {
    background: #c4a574;
}

.tme-slide-arrows {
    display: flex;
    gap: 10px;
}

.tme-slide-prev,
.tme-slide-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    color: #fff;
    backdrop-filter: blur(8px);
    transition: background 0.25s ease, border-color 0.25s ease;
}

.tme-slide-prev:hover,
.tme-slide-next:hover {
    background: #8a056f;
    border-color: #8a056f;
}

.tme-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

.tme-gallery a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    height: 100%;
}

.tme-gallery a:nth-child(3n+1) { grid-row: span 2; }

.tme-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.tme-gallery a:hover img { transform: scale(1.08); }

.tme-gallery a::after {
    content: "+";
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: #8a056f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tme-gallery a:hover::after {
    opacity: 1;
    transform: none;
}

.tme-award-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.tme-award {
    background: #fff;
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 14px 34px rgba(18,18,18,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tme-award:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 50px rgba(18,18,18,0.12);
}

.tme-award .frame {
    background: #f6f0e6;
    border-radius: 16px;
    padding: 18px;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tme-award img {
    max-width: 100%;
    max-height: 260px;
    object-fit: contain;
}

body.tme-protect {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

body.tme-protect img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

.tme-protect-frame {
    position: relative;
}

.tme-protect-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: transparent;
}

.tme-award h3 {
    margin: 16px 0 0;
    text-align: center;
    font-size: var(--fs-lg);
    color: var(--tme-ink);
}

.tme-cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.tme-cert-grid .tme-award {
    padding: 28px;
    border-radius: 28px;
}

.tme-cert-grid .tme-award .frame {
    min-height: 380px;
    padding: 28px;
}

.tme-cert-grid .tme-award img {
    max-height: 420px;
}

.tme-cert-grid .tme-award h3 {
    margin-top: 20px;
    font-size: 1.25rem;
}

@media (max-width: 991px) {
    .tme-gallery,
    .tme-award-grid { grid-template-columns: 1fr 1fr; }
    .tme-gallery a:nth-child(3n+1) { grid-row: span 1; }
    .tme-slider-ui { padding: 0 18px; }
}

@media (max-width: 767px) {
    .tme-gallery,
    .tme-award-grid { grid-template-columns: 1fr; }
    .tme-slider .swiper-slide { padding: 150px 0 130px; }
}

/* ============================================================
   Mobile polish — page content only (header / menu untouched)
   ============================================================ */
@media (max-width: 991px) {
    body {
        overflow-x: hidden;
    }

    .tme-slider .container,
    .tme-page-hero .container,
    .tme-section .container,
    .tme-trusted .container,
    .tme-cta .container,
    .main-footer .container,
    .page-header .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .tme-section { padding: 56px 0; }
    .tme-trusted { padding: 52px 0 40px; }
    .tme-cta { padding: 56px 18px; border-radius: 0; }

    .tme-heading {
        font-size: clamp(1.7rem, 7vw, 2.15rem);
        letter-spacing: -0.03em;
        margin-bottom: 12px;
    }
    .tme-heading span { display: inline; font-style: italic; }
    .tme-lead {
        font-size: 0.98rem;
        line-height: 1.65;
        max-width: none;
    }
    .tme-label { margin-bottom: 8px; }

    /* Hero slider */
    .tme-slider {
        height: auto !important;
        min-height: 0 !important;
        background: #0c0c0f;
    }
    .tme-slider .swiper,
    .tme-slider .swiper-wrapper,
    .tme-slider .swiper-slide {
        height: auto !important;
    }
    .tme-slider .swiper-slide {
        padding: 72px 0 88px !important;
        align-items: flex-end;
        min-height: 0;
    }
    .tme-slider .tme-hero-title,
    .tme-hero-title {
        font-size: clamp(2.2rem, 11vw, 2.85rem) !important;
        letter-spacing: -0.04em;
        margin-bottom: 8px;
    }
    .tme-tagline-title {
        max-width: 13ch;
        margin-bottom: 14px;
    }
    .tme-tagline-lead {
        letter-spacing: 0.14em;
        margin-bottom: 6px;
    }
    .tme-tagline-main {
        font-size: clamp(1.85rem, 8.4vw, 2.45rem);
        line-height: 1.08;
    }
    .tme-hero-title .line { display: block; }
    .tme-slider .tme-hero-title em,
    .tme-hero-title em {
        color: #f3d9b0 !important;
        -webkit-text-stroke: 0 !important;
        font-style: italic;
    }
    .tme-hero-sub {
        font-size: 0.95rem;
        margin: 12px 0 22px;
        max-width: 36ch;
    }
    .tme-hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .tme-hero-actions .tme-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    }
    .tme-google {
        width: 100%;
        justify-content: center;
        border-radius: 18px;
        padding: 12px 14px;
    }
    .tme-scroll { display: none !important; }
    .tme-slider-ui {
        bottom: 14px;
        padding: 0 18px;
        gap: 12px;
    }
    .tme-slide-frac { font-size: 1.1rem; min-width: auto; }
    .tme-slide-prev,
    .tme-slide-next {
        width: 42px;
        height: 42px;
    }

    /* Inner page heroes */
    .tme-page-hero {
        padding: 18px 0 16px !important;
        min-height: 0 !important;
        height: auto;
    }
    .tme-page-hero .tme-hero-title,
    .tme-page-hero .tme-hero-title .line,
    .tme-page-hero h1 {
        font-size: 1.45rem !important;
        line-height: 1.2;
        margin-bottom: 0;
    }
    .tme-cert-hero .tme-hero-title,
    .tme-cert-hero .tme-hero-title .line,
    .tme-cert-hero .tme-hero-title em,
    .tme-cert-hero h1 {
        font-size: 2.15rem !important;
    }
    .tme-page-hero .tme-hero-title .line {
        display: inline !important;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        margin-right: 0.22em;
    }
    .tme-page-hero .tme-hero-sub {
        font-size: 0.86rem !important;
        line-height: 1.45;
        max-width: none !important;
        margin: 8px 0 0 !important;
        overflow-wrap: normal;
    }
    .tme-about-sub span {
        display: block;
        white-space: normal;
    }
    .tme-page-hero .tme-crumbs {
        margin-top: 10px;
        font-size: 0.75rem;
    }
    h2.tme-heading,
    .tme-heading {
        font-size: 1.28rem !important;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    .tme-prow h3,
    .tme-hl article h3,
    .tme-sell-banner h3 {
        font-size: 1.05rem !important;
        line-height: 1.25;
    }
    .tme-svc-nav-inner {
        margin: 0 -18px;
        padding: 14px 18px;
        gap: 10px;
        -webkit-overflow-scrolling: touch;
    }
    .tme-svc-nav a {
        font-size: 0.92rem;
        padding: 10px 16px;
    }
    [data-reveal="left"],
    [data-reveal="right"] {
        transform: translateY(20px);
    }
    .tme-split-svc {
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 16px;
        width: 100%;
    }
    .tme-split-svc > * {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .tme-svc-mosaic {
        width: 100%;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 210px 120px;
        margin-top: 2px;
        gap: 10px;
    }
    .tme-svc-mosaic > :first-child {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 210px;
    }
    .tme-svc-mosaic figure {
        height: 100%;
        border-radius: 16px;
    }
    .tme-svc-mosaic > img,
    .tme-svc-mosaic figure img {
        width: 100%;
        height: 100%;
        min-height: 0;
        border-radius: 16px;
        object-fit: cover;
    }
    .tme-svc-mosaic figure img {
        position: absolute;
        inset: 0;
    }
    .tme-prow,
    .tme-prow.flip {
        width: 100%;
        grid-template-columns: 1fr;
        grid-template-areas:
            "no"
            "text"
            "img";
        gap: 10px;
        padding: 20px 0;
    }
    .tme-prow .no,
    .tme-prow .txt,
    .tme-prow img {
        width: 100%;
        max-width: 100%;
    }
    .tme-prow img {
        height: 200px;
        object-fit: cover;
    }
    .tme-section { padding: 36px 0 !important; }
    .tme-section.tme-why-sec { padding-bottom: 16px !important; }
    .tme-section.tme-home-testi { padding-top: 16px !important; }
    .tme-6r-band + .tme-section {
        margin-top: 20px;
        padding-top: 28px !important;
    }
    .page-header { padding: 36px 0 28px !important; }

    .tme-btn {
        padding: 13px 18px;
        font-size: 0.9rem;
    }
    .tme-cta .tme-btn,
    .tme-form .tme-btn {
        width: 100%;
        max-width: 360px;
        justify-content: center;
    }

    /* Stats + 5R */
    .tme-stats {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px;
        margin-top: 18px;
    }
    .tme-stat {
        border-radius: 20px;
        padding: 18px 14px 16px;
        box-shadow: 0 10px 24px rgba(92, 7, 75, 0.08);
        border-top: 3px solid #c4a574;
    }
    .tme-stat b { font-size: 1.7rem; }
    .tme-stat span { font-size: 0.75rem; line-height: 1.35; }

    .tme-5r {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 16px 14px;
        border-radius: 22px;
        grid-template-columns: none;
    }
    .tme-5r img { width: 86px; height: 46px; }
    .tme-5r h6 {
        background: #f6efe4;
        border-radius: 999px;
        padding: 8px 12px;
        font-size: 0.68rem;
        letter-spacing: 0.08em;
    }

    /* Cards / steps / pillars / offices */
    .tme-card,
    .tme-step,
    .tme-pillar,
    .tme-office,
    .tme-hl article,
    .tme-award,
    .tme-quote {
        border-radius: 22px;
        box-shadow: 0 12px 28px rgba(18, 18, 18, 0.06);
    }
    .tme-card.media .img { height: 176px; }
    .tme-card .body { padding: 20px 18px 22px; }
    .tme-card h3,
    .tme-step h3,
    .tme-pillar h3,
    .tme-office h3 { font-size: 1.25rem; }

    .tme-step,
    .tme-pillar {
        padding: 20px 18px;
        background: #fff;
        position: relative;
    }

    .tme-why-list {
        margin-top: 8px;
        gap: 10px;
    }
    .tme-why {
        grid-template-columns: 44px 1fr;
        gap: 12px;
        padding: 16px 14px;
        border: 1px solid #efe3d4;
        border-bottom: 1px solid #efe3d4;
        border-radius: 18px;
        background: #fffdf9;
        box-shadow: 0 8px 20px rgba(92, 7, 75, 0.05);
        transform: none;
    }
    .tme-why:hover { transform: none; }
    .tme-why:last-child { border-bottom: 1px solid #efe3d4; }
    .tme-why .num {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 0.75rem;
        box-shadow: 0 8px 16px rgba(92, 7, 75, 0.18);
    }
    .tme-why h4 {
        font-size: 1rem;
        line-height: 1.3;
        margin: 2px 0 6px;
    }
    .tme-why p {
        font-size: 0.88rem;
        line-height: 1.5;
    }
    .tme-why-grid .tme-btn {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
        margin-bottom: 18px;
    }
    .tme-section.ink .tme-pillar,
    .tme-section.ink .tme-step {
        background: rgba(255, 253, 249, 0.06);
        border: 1px solid rgba(243, 217, 176, 0.16);
    }
    .tme-step .num,
    .tme-pillar .num {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #8a056f;
        color: #fff;
        letter-spacing: 0;
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .tme-office {
        padding: 22px 20px;
        min-height: 0;
        border-left: 4px solid #8a056f;
    }
    .tme-office a.phone {
        display: inline-flex;
        margin: 8px 0 6px;
        background: #f6efe4;
        border-radius: 999px;
        padding: 8px 14px;
        font-size: 0.92rem;
    }

    .tme-about-media img.main {
        height: 260px;
        border-radius: 24px;
    }
    .tme-badge {
        padding: 12px 14px;
        border-radius: 16px;
        left: 14px;
        bottom: 14px;
    }
    .tme-badge strong { font-size: 1.4rem; }
    .tme-list { margin: 16px 0 20px; }
    .tme-list li { margin-bottom: 8px; font-size: 0.95rem; }

    /* Trusted */
    .tme-trusted-head { margin-bottom: 22px; }
    .tme-trusted-logo {
        width: 140px;
        height: 76px;
        padding: 12px;
        border-radius: 16px;
    }
    .tme-trusted-rate { font-size: 0.85rem; }

    /* Contact */
    .tme-form {
        padding: 22px 18px;
        border-radius: 22px;
    }
    .tme-touch {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .tme-touch a,
    .tme-touch div {
        border-radius: 18px;
        padding: 14px 12px;
        min-height: 76px;
        background: #fff;
        box-shadow: 0 8px 20px rgba(18, 18, 18, 0.05);
    }
    .tme-touch span {
        font-size: 0.88rem;
        word-break: break-word;
    }
    .tme-footprint {
        border-radius: 22px;
        padding: 12px;
    }
    .tme-footprint-art { min-height: 280px !important; }
    .tme-sat-wrap { min-height: 240px !important; height: 240px !important; }
    .tme-live-card {
        margin: -48px 10px 10px;
        padding: 16px;
        border-radius: 18px;
    }
    .tme-footprint-pills {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }
    .tme-footprint-pills button { flex: 0 0 auto; }

    /* Process / service mosaics */
    .tme-prow,
    .tme-prow.flip {
        padding: 22px 0;
        gap: 12px;
        grid-template-columns: 1fr;
        grid-template-areas:
            "no"
            "text"
            "img";
    }
    .tme-prow .no { font-size: 2rem; }
    .tme-prow h3 { font-size: 1.35rem; }
    .tme-prow img { height: 180px; border-radius: 18px; }
    .tme-tile { min-height: 220px; border-radius: 22px; }
    .tme-tile .copy { left: 16px; right: 16px; bottom: 16px; }
    .tme-svc-mosaic { gap: 10px; }
    .tme-svc-mosaic img { border-radius: 16px; min-height: 0; }
    .tme-photo-grid img { height: 180px; border-radius: 18px; }
    .tme-words span { font-size: 1rem; padding: 8px 14px; }

    /* Gallery / awards — 2-up feels richer */
    .tme-gallery {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
        gap: 10px;
    }
    .tme-gallery a { border-radius: 16px; }
    .tme-gallery a:nth-child(3n+1) { grid-row: span 1; }
    .tme-award-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .tme-award { padding: 12px; }
    .tme-award .frame { min-height: 140px; padding: 10px; }
    .tme-award h3 { font-size: 0.88rem; margin-top: 10px; }
    .tme-cert-grid { grid-template-columns: 1fr; gap: 18px; }
    .tme-cert-grid .tme-award { padding: 18px; }
    .tme-cert-grid .tme-award .frame { min-height: 280px; padding: 16px; }
    .tme-cert-grid .tme-award img { max-height: 300px; }
    .tme-cert-grid .tme-award h3 { font-size: 1.05rem; margin-top: 14px; }

    /* Team / testimonials */
    .tme-team-card .photo { height: 240px; }
    .tme-team-duo {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }
    .tme-team-duo .tme-team-card .photo {
        height: auto;
        max-height: min(58vh, 420px);
        aspect-ratio: 3 / 4;
    }
    .testimonial-item { border-radius: 20px; }
    .tme-acc summary { padding: 16px 44px 16px 16px; font-size: 1.05rem; }
    .tme-acc details p { padding: 0 16px 16px; }

    /* Footer */
    .main-footer { padding: 40px 0 0 !important; }
    .main-footer .tme-footer-social { justify-content: flex-start; }
    .main-footer .tme-footer-copy {
        align-items: flex-start;
        text-align: left;
    }

    /* CTA + WA */
    .tme-cta .tme-heading { margin-bottom: 10px; }
    .tme-wa {
        left: 14px;
        bottom: calc(14px + env(safe-area-inset-bottom, 0px));
        width: 52px;
        height: 52px;
    }
    .tme-wa i { font-size: 26px; }

    .tme-marquee { font-size: 0.78rem; padding: 12px 0; }
    .tme-6r-band .container-fluid {
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden;
    }
    .tme-6r-band img {
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
    }

    img,
    figure img {
        max-width: 100%;
    }
    figure.image-anime img,
    .tme-section img[style*="border-radius"] {
        border-radius: 22px !important;
    }
}

@media (max-width: 480px) {
    .tme-award-grid { grid-template-columns: 1fr; }
    .tme-gallery { grid-auto-rows: 140px; }
    .tme-stat b { font-size: 1.5rem; }
}

.tme-flash {
    margin: 0;
    padding: 14px 20px;
    text-align: center;
    font-weight: 600;
}
.tme-flash.ok { background: #e8f6ee; color: #146c2e; }
.tme-flash.bad { background: #fdecea; color: #9b1c1c; }

.tme-sell-hero {
    position: relative;
    min-height: 0;
    display: flex;
    align-items: flex-end;
    padding: 96px 0 16px;
    overflow: hidden;
    background: #0c0c0f;
    color: #fff;
}
.tme-sell-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}
.tme-sell-hero-mask {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(8,8,12,0.82) 0%, rgba(8,8,12,0.35) 55%, rgba(138,5,111,0.28) 100%),
        linear-gradient(180deg, rgba(8,8,12,0.15) 0%, rgba(8,8,12,0.55) 100%);
}
.tme-sell-hero .container { position: relative; z-index: 2; }
.tme-sell-hero .tme-kicker {
    color: #f3d9b0 !important;
    margin-bottom: 6px;
}
.tme-sell-hero .tme-hero-title,
.tme-sell-hero .tme-hero-title .line,
.tme-sell-hero .tme-hero-title em { color: #fff !important; }
.tme-sell-hero .tme-hero-title {
    font-size: clamp(1.35rem, 2.4vw, 1.85rem) !important;
    margin-bottom: 0;
    line-height: 1.15;
}
.tme-sell-hero .tme-hero-sub {
    max-width: 620px;
    color: rgba(255,255,255,0.82) !important;
    font-size: 0.85rem;
    line-height: 1.45;
    margin: 6px 0 0;
}
.tme-sell-hero .tme-hero-actions {
    margin-top: 10px;
    gap: 10px;
}
.tme-sell-hero .tme-hero-actions .tme-btn {
    padding: 8px 14px;
    font-size: 0.82rem;
}
.tme-sell-hero .tme-crumbs,
.tme-sell-hero .tme-crumbs a,
.tme-sell-hero .tme-crumbs strong { color: rgba(255,255,255,0.72); }
.tme-sell-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0 6px;
}
.tme-sell-chips span {
    border: 1px solid rgba(243,217,176,0.35);
    background: rgba(255,253,249,0.08);
    color: #f3d9b0;
    border-radius: 999px;
    padding: 3px 9px;
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.04em;
}
.tme-sell-facts {
    background: #fffdf9;
    border-bottom: 1px solid var(--tme-line);
}
.tme-sell-facts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.tme-sell-facts-grid > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 16px;
    border-right: 1px solid var(--tme-line);
}
.tme-sell-facts-grid > div:last-child { border-right: 0; }
.tme-sell-facts-grid i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #f6efe4;
    color: #8a056f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-bottom: 6px;
}
.tme-sell-facts-grid b {
    font-family: var(--display-font);
    font-size: 1.35rem;
    line-height: 1;
    color: var(--tme-ink);
}
.tme-sell-facts-grid b.tme-sell-doe {
    font-size: 1.02rem;
    line-height: 1.25;
}
.tme-sell-facts-grid span {
    color: var(--tme-muted);
    font-size: 0.78rem;
    line-height: 1.35;
}

.tme-sell-mid { padding: 48px 0; }
.tme-sell-mid.cream { background: var(--tme-cream); }
.tme-sell-intro { max-width: 720px; margin-bottom: 22px; }
.tme-sell-intro .tme-label {
    margin-bottom: 10px;
    font-size: 0.95rem !important;
    letter-spacing: 0.14em;
}
.tme-sell-intro h2 {
    font-family: var(--display-font);
    font-size: clamp(2rem, 3.4vw, 2.55rem) !important;
    line-height: 1.2;
    font-weight: 650;
    color: var(--tme-ink);
    margin: 0 0 8px;
}
.tme-sell-intro p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--tme-muted);
}

.tme-sell-offers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.tme-sell-offer {
    background: #fff;
    border: 1px solid var(--tme-line);
    border-radius: 18px;
    padding: 20px 20px 18px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.tme-sell-offer:hover {
    border-color: #d8b48a;
    box-shadow: 0 12px 28px rgba(18,18,18,0.06);
}
.tme-sell-offer-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.tme-sell-offer-top em {
    font-style: normal;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--tme-brand);
}
.tme-sell-ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}
.tme-sell-ico.it { background: #f3e8ff; color: #6b21a8; }
.tme-sell-ico.solder { background: #f6efe4; color: #8a5a00; }
.tme-sell-offer h3 {
    font-size: 1.1rem !important;
    line-height: 1.25;
    margin: 0 0 6px;
    color: var(--tme-ink);
    font-weight: 650;
}
.tme-sell-offer p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--tme-muted);
    line-height: 1.5;
}
.tme-sell-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 12px 0 14px;
}
.tme-sell-pills li {
    background: #f6efe4;
    color: #5c074b;
    border-radius: 999px;
    padding: 3px 9px;
    font-size: 0.72rem;
    font-weight: 700;
}
.tme-sell-offer > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #8a056f;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
}
.tme-sell-offer > a:hover { color: #5c074b; }
.tme-sell-offer > a i { font-size: 0.7rem; }

.tme-sell-steps {
    list-style: none;
    margin: 0;
    padding: 22px 8px 6px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    position: relative;
}
.tme-sell-steps::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: #ddd6c8;
}
.tme-sell-steps li {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 6px;
}
.tme-sell-steps span {
    width: 34px;
    height: 34px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #d8c9b4;
    color: #8a056f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
}
.tme-sell-steps strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--tme-ink);
    margin-bottom: 4px;
}
.tme-sell-steps p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--tme-muted);
}

.tme-sell-quote { background: #0c0c0f; }
.tme-sell-quote-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    align-items: start;
}
.tme-sell-aside { color: rgba(255,255,255,0.78); padding-top: 12px; }
.tme-sell-aside h2 {
    color: #fff !important;
    margin: 10px 0 14px;
}
.tme-sell-aside p { color: rgba(255,255,255,0.72); }
.tme-check.light { margin-bottom: 22px; }
.tme-check.light li {
    color: rgba(255,255,255,0.82);
    border-bottom-color: rgba(255,255,255,0.12);
}
.tme-check.light li::before { color: #c4a574; }
.tme-sell-contacts {
    display: grid;
    gap: 12px;
    margin-top: 8px;
}
.tme-sell-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff !important;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.tme-sell-contact:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(243,217,176,0.4);
    color: #fff !important;
}
.tme-sell-contact i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.tme-sell-contact.wa i { background: #25d366; color: #fff; }
.tme-sell-contact.hq i { background: #c4a574; color: #0c0c0f; }
.tme-sell-contact strong {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c4a574;
    margin-bottom: 2px;
}
.tme-sell-contact span {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.tme-sell-form {
    background: #fffdf9;
    border: 1px solid rgba(255,255,255,0.08);
}
.tme-sell-form h3 {
    font-size: 1.55rem;
    margin: 6px 0 16px;
}
.tme-sell-pick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 6px;
}
.tme-sell-pick button {
    border: 1px solid var(--tme-line);
    background: #fff;
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 700;
    color: var(--tme-ink);
    cursor: pointer;
}
.tme-sell-pick button.is-on {
    background: #8a056f;
    border-color: #8a056f;
    color: #fff;
}
.tme-form select.form-control,
select.form-control {
    height: auto;
    min-height: 52px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238a056f' d='M1.1 1.2 6 6.1l4.9-4.9 1.1 1.1L6 8.3.0 2.3z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px 8px;
    padding-right: 40px !important;
}
#sellPhotos { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.tme-drop {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 140px;
    border: 1.5px dashed #d4c7b4;
    border-radius: 18px;
    background: #fff;
    cursor: pointer;
    text-align: center;
    padding: 22px;
}
.tme-drop i { font-size: 22px; color: var(--tme-brand); }
.tme-drop strong { color: var(--tme-ink); }
.tme-drop span { font-size: 0.85rem; color: var(--tme-muted); }
.tme-drop:hover { border-color: #8a056f; background: #faf6ef; }
.tme-drop-previews {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}
.tme-drop-previews img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
}

.tme-sell-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 1px solid var(--tme-line);
    border-radius: 24px;
    padding: 28px;
    margin-top: 28px;
}
.tme-sell-home {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: center;
}

@media (max-width: 991px) {
    .tme-sell-hero { min-height: 0; padding: 82px 0 14px; }
    .tme-sell-facts-grid { grid-template-columns: 1fr 1fr; }
    .tme-sell-facts-grid > div:nth-child(2) { border-right: 0; }
    .tme-sell-facts-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--tme-line); }
    .tme-sell-offers,
    .tme-sell-home,
    .tme-sell-quote-grid { grid-template-columns: 1fr; }
    .tme-sell-steps { grid-template-columns: 1fr; padding-top: 0; gap: 14px; }
    .tme-sell-steps::before { display: none; }
    .tme-sell-steps li { display: grid; grid-template-columns: 34px minmax(0, 1fr); column-gap: 12px; text-align: left; }
    .tme-sell-steps span { margin: 0; grid-row: span 2; }
    .tme-sell-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 576px) {
    .tme-sell-pick { grid-template-columns: 1fr; }
    .tme-sell-hero .tme-hero-actions { flex-direction: column; align-items: stretch; }
}

.tme-org {
    background: #f3f4f7;
    padding: 0;
    overflow: hidden;
}

.tme-org-canvas {
    position: relative;
    width: 100%;
    min-height: 0;
    padding: 48px 36px 64px;
    overflow-x: auto;
}

.tme-org-title {
    width: min(96%, 1280px);
    min-width: 1080px;
    margin: 0 auto 28px;
    font-family: var(--display-font);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    color: #17173f;
}

.tme-org-top {
    width: min(86%, 1180px);
    height: 28px;
    margin: 0 auto 8px;
    border-top: 2px dotted #c2185b;
}

.tme-org-cols {
    display: grid;
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    gap: 18px 22px;
    width: min(96%, 1280px);
    margin: 0 auto;
    min-width: 1080px;
}

.tme-org-col {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.tme-org-col::before {
    content: "";
    position: absolute;
    top: -28px;
    left: 50%;
    width: 0;
    height: 28px;
    border-left: 2px dotted #c2185b;
}

.tme-org-node {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    padding: 9px 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, #17173f 0%, #4b1a70 52%, #8a056f 100%);
    color: #fff;
    font-family: var(--body-font);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    border: 3px solid #f2f2f5;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.55) inset,
        0 0 0 1px #c8c8d2,
        0 8px 16px rgba(22, 16, 40, 0.16);
}

.tme-org-node-2 {
    min-height: 54px;
}

.tme-org-col-prod {
    padding-bottom: 8px;
}

.tme-org-branch {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 14px;
    width: calc(200% + 22px);
    margin-left: -50%;
    margin-top: 28px;
    padding-top: 22px;
}

.tme-org-branch::before {
    content: "";
    position: absolute;
    top: 0;
    left: 25%;
    right: 25%;
    height: 22px;
    border-top: 2px dotted #c2185b;
}

.tme-org-branch-col {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tme-org-branch-col::before {
    content: "";
    position: absolute;
    top: -22px;
    left: 50%;
    height: 22px;
    border-left: 2px dotted #c2185b;
}

@media (max-width: 991px) {
    .tme-org { overflow: hidden; }
    .tme-org-canvas {
        padding: 28px 16px 40px;
        overflow: visible;
    }
    .tme-org-title {
        min-width: 0;
        width: 100%;
        margin-bottom: 18px;
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
    .tme-org-top { display: none; }
    .tme-org-cols {
        display: flex;
        flex-direction: column;
        gap: 22px;
        min-width: 0;
        width: 100%;
    }
    .tme-org-col,
    .tme-org-col-prod {
        width: 100%;
        padding-bottom: 0;
    }
    .tme-org-col::before { display: none; }
    .tme-org-node {
        font-size: 0.78rem;
        min-height: 44px;
        padding: 10px 14px;
    }
    .tme-org-branch {
        width: 100%;
        margin-left: 0;
        margin-top: 8px;
        padding-top: 16px;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .tme-org-branch::before,
    .tme-org-branch-col::before { display: none; }
}

/* ============================================================
   Phone, tablet, and iOS layout
   ============================================================ */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

.tme-topstrip {
    padding-top: env(safe-area-inset-top);
}

@media (hover: none), (pointer: coarse) {
    .cb-cursor { display: none !important; }
    a, button, .tme-btn, input, select, textarea, label, summary {
        cursor: pointer;
    }
    .tme-card:hover,
    .tme-office:hover,
    .tme-pillar:hover,
    .tme-award:hover,
    .tme-step:hover,
    .tme-why:hover,
    .tme-vmv article:hover {
        transform: none;
    }
}

@media (max-width: 991px) {
    .tme-top-actions a,
    .tme-topstrip .tme-top-call,
    .tme-topstrip .tme-top-mail,
    .tme-top-ico {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        flex-basis: 32px !important;
    }
    .tme-top-actions a i,
    .tme-topstrip .tme-top-call i,
    .tme-topstrip .tme-top-mail i,
    .tme-top-ico i {
        width: 32px !important;
        height: 32px !important;
        font-size: 13px !important;
    }
    .tme-topstrip {
        font-size: 0.75rem;
    }
    .tme-mob-actions .tme-nav-sell,
    .tme-mob-call,
    .tme-burger {
        min-width: 40px;
        min-height: 40px;
    }
    .tme-burger { width: 40px; height: 40px; }

    h2.tme-heading,
    .tme-heading {
        font-size: clamp(1.65rem, 5.4vw, 2.15rem) !important;
        line-height: 1.2;
        text-wrap: balance;
    }
    .tme-page-hero .tme-hero-title,
    .tme-page-hero h1 {
        font-size: clamp(1.7rem, 5vw, 2.2rem) !important;
    }

    .tme-slider .swiper-slide {
        min-height: min(78svh, 680px);
        padding: 56px 0 108px !important;
    }
    .tme-hero-sub { max-width: 40ch; }
    .tme-slider-ui { bottom: calc(16px + env(safe-area-inset-bottom)); }

    .tme-history-section,
    .tme-history-section img {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .tme-form .form-control,
    .tme-form input,
    .tme-form select,
    .tme-form textarea,
    input.form-control,
    select.form-control,
    textarea.form-control {
        font-size: 16px !important;
    }
    .tme-form .tme-btn,
    .contact-us-form .tme-btn,
    #contact-form .tme-btn {
        width: 100%;
        max-width: none;
        justify-content: center;
        min-height: 48px;
    }

    .tme-sell-contact span { white-space: normal; }
    .tme-site-lab { max-width: 92px; white-space: normal; text-align: center; }

    .tme-mob-drawer {
        height: 100dvh;
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }
    .tme-mob-foot {
        padding-bottom: calc(18px + env(safe-area-inset-bottom));
    }
    .main-footer {
        padding-bottom: env(safe-area-inset-bottom) !important;
    }

    table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

}

@media (min-width: 768px) and (max-width: 991px) {
    .main-header .navbar-brand {
        max-width: 240px;
    }
    .main-header .navbar-brand img,
    .main-header .navbar-brand #logo,
    #logo {
        max-height: 48px !important;
        max-width: 190px !important;
    }
    .tme-brand-tagline {
        max-width: 190px;
        font-size: 0.62rem;
    }
    .tme-mob-actions .tme-nav-sell {
        height: 42px;
        padding: 0 16px;
        font-size: 0.88rem;
    }

    .tme-slider .swiper-slide { min-height: 70svh; }
    .tme-hero-actions {
        flex-direction: row;
        align-items: center;
        width: auto;
    }
    .tme-hero-actions .tme-btn { width: auto; }
    .tme-tagline-main { font-size: clamp(2.4rem, 5vw, 3.2rem); }
    .tme-tagline-title { max-width: 16ch; }

    h2.tme-heading,
    .tme-heading {
        font-size: clamp(2rem, 3.6vw, 2.6rem) !important;
    }

    .tme-about-split {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 28px;
        align-items: center;
    }
    .tme-card-grid,
    .tme-step-grid,
    .tme-office-grid,
    .tme-quote-grid,
    .tme-team-grid,
    .tme-process-grid,
    .tme-award-grid,
    .tme-sell-offers,
    .tme-metal-figs {
        grid-template-columns: 1fr 1fr;
    }
    .tme-card-grid > :last-child:nth-child(odd) { grid-column: 1 / -1; }
    .tme-pillar-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .tme-pillar { min-height: 0; padding: 24px 18px; }
    .tme-stats { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
    .tme-home-testi-visual img { height: 420px; max-height: 460px; }
    .tme-maps { grid-template-columns: 1fr 1fr; }
    .tme-maps iframe:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
    .tme-hero-actions { width: 100%; }
    .tme-card.media .img { height: 200px; }
    .tme-about-media img.main { height: 240px; }
    .tme-pillar { min-height: 0; }
    .tme-stats { grid-template-columns: 1fr 1fr !important; }
    .tme-quiz-opts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 991px) and (orientation: landscape) and (max-height: 500px) {
    .tme-slider .swiper-slide {
        min-height: 0;
        padding: 24px 0 78px !important;
    }
    .tme-hero-actions {
        flex-direction: row;
        width: auto;
    }
    .tme-hero-actions .tme-btn { width: auto; }
    .tme-tagline-main { font-size: 1.7rem; }
}

@media (max-width: 380px) {
    .tme-top-license { font-size: 0.68rem; }
    .tme-mob-actions { gap: 4px; }
    .tme-mob-actions .tme-nav-sell {
        padding: 0 10px;
        font-size: 0.7rem;
    }
}
