
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&display=swap");
/* =========================================================
   THE INNER SHIFT — GLOBAL DESIGN SYSTEM
========================================================= */
:root {
    --tis-black: #10100f;
    --tis-black-soft: #1b1916;
    --tis-gold: #c28a2b;
    --tis-gold-light: #d6a64d;
    --tis-brown: #7d5a2b;
    --tis-cream: #f7f5f1;
    --tis-white: #ffffff;
    --tis-line: rgba(194, 138, 43, 0.22);
    --tis-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
    --header-height: 92px;
}
/* =========================================================
   RESET
========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--tis-black);
    background: var(--tis-cream);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font: inherit;
}
/* =========================================================
   TOP ANNOUNCEMENT BAR
========================================================= */
.top-announcement {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 48px;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    background: #1a1510;
    border-bottom: 1px solid rgba(194, 138, 43, 0.28);
    transform: translateY(0);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease;
}
.top-announcement.is-fixed {
    position: fixed;
    top: 0;
    transform: translateY(0);
    opacity: 1;
}
.announcement-inner {
    width: min(1600px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.announcement-left {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.announcement-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 8px;
    color: rgba(247, 245, 241, 0.88);
    font-family: "Manrope", sans-serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.01em;
    text-align: center;
}
.announcement-brand {
    color: #d6a64d;
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}
.announcement-brand span {
    color: #ffffff;
}
.announcement-brand:hover {
    color: #e8c56a;
    transform: translateY(-1px);
}
.announcement-separator {
    color: rgba(214, 166, 77, 0.55);
    font-weight: 400;
    margin: 0 2px;
}
/* =========================================================
   HEADER
========================================================= */
.site-header {
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    height: var(--header-height);
    padding: 14px 24px;
    z-index: 9999;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.45s ease,
        background 0.4s ease,
        box-shadow 0.4s ease,
        opacity 0.35s ease;
}
.site-header.is-fixed {
    position: fixed;
    top: 48px;
    opacity: 1;
}
.site-header.is-scrolled {
    height: 80px;
    padding-top: 6px;
    padding-bottom: 9px;
    background: #ffffff;
    border-bottom: 1px solid var(--tis-gold-light);
    box-shadow: 0 14px 50px rgba(0, 0, 0, 0.08);
}
.site-header.is-scrolled::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(247, 245, 241, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.site-header.is-hidden {
    transform: translateY(0);
}
/* =========================================================
   NAV SHELL
========================================================= */
.nav-shell {
    position: relative;
    width: min(1600px, 100%);
    height: 100%;
    margin: 0 auto;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
/* =========================================================
   BRAND
========================================================= */
.brand {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.brand-mark {
    position: relative;
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
}
.brand-mark img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}
/* HERO LOGO */
.brand-mark .logo-hero {
    opacity: 1;
    visibility: visible;
}
/* SCROLLED LOGO */
.brand-mark .logo-scrolled {
    opacity: 0;
    visibility: hidden;
}
/* FIXED / SCROLLED LOGO */
.site-header.is-scrolled .brand-mark .logo-hero,
.site-header.is-fixed .brand-mark .logo-hero {
    opacity: 0;
    visibility: hidden;
}
.site-header.is-scrolled .brand-mark .logo-scrolled,
.site-header.is-fixed .brand-mark .logo-scrolled {
    opacity: 1;
    visibility: visible;
}
/* BRAND TEXT */
.brand-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.brand-name {
    display: flex;
    align-items: baseline;
    gap: 7px;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-size: 23px;
    font-weight: 300;
    letter-spacing: 1px;
}
.brand-inner {
    color: var(--tis-black);
}

/* =========================================================
   MAIN NAVIGATION
========================================================= */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(18px, 2vw, 34px);
}
/* =========================================================
   NAV LINKS
========================================================= */
.nav-link {
    position: relative;
    padding: 12px 0;
    color: rgba(16, 16, 15, 0.72);
    background: transparent;
    border: 0;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition:
        color 0.3s ease;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 1px;
    background: var(--tis-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-link:hover,
.nav-link.is-active {
    color: var(--tis-black);
}
.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}
/* =========================================================
   SERVICES DROPDOWN — CLEAN PREMIUM DESIGN
========================================================= */

.services-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 300px;
}

.services-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 0;
    color: rgba(16, 16, 15, 0.72);
    background: transparent;
    border: 0;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.services-toggle::after {
    display: none;
}

.services-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    color: currentColor;
    transition: transform 0.3s ease;
}

.services-dropdown:hover .services-arrow,
.services-dropdown:focus-within .services-arrow {
    transform: rotate(180deg);
}


/* =========================================================
   DESKTOP SERVICES PANEL
========================================================= */

.services-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    width: 310px;

    padding: 7px;

    background: #f7f2e8;
    border: 1px solid rgba(169, 120, 41, 0.28);
    border-radius: 12px;

    box-shadow:
        0 20px 55px rgba(35, 30, 25, 0.16),
        0 5px 15px rgba(35, 30, 25, 0.06);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translate(-50%, 10px);

    transition:
        opacity 0.28s ease,
        visibility 0.28s ease,
        transform 0.28s ease;

    z-index: 10060;
}


/* Small gold line at top */

.services-menu::before {
    content: "";

    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;

    height: 2px;

    background: #b9832d;
    border-radius: 0 0 3px 3px;
}


/* Small arrow */

.services-menu::after {
    content: "";

    position: absolute;

    top: -6px;
    left: 50%;

    width: 11px;
    height: 11px;

    background: #f7f2e8;

    border-left: 1px solid rgba(169, 120, 41, 0.28);
    border-top: 1px solid rgba(169, 120, 41, 0.28);

    transform: translateX(-50%) rotate(45deg);
}


/* SHOW PANEL */

.services-dropdown:hover .services-menu,
.services-dropdown:focus-within .services-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translate(-50%, 0);
}


/* =========================================================
   SERVICE ITEMS
========================================================= */

.services-menu-item {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    min-height: 62px;

    padding: 0 17px;

    color: #292520;

    background: transparent;

    border-bottom: 1px solid rgba(41, 37, 32, 0.09);

    text-decoration: none;

    transition:
        background 0.25s ease,
        padding 0.25s ease,
        color 0.25s ease;
}

.services-menu-item:last-child {
    border-bottom: 0;
}


/* SERVICE NAME */

.services-menu-content {
    display: block;
    min-width: 0;
}

.services-menu-content strong {
    display: block;

    color: #292520;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 18px;
    font-weight: 400;

    line-height: 1.2;

    transition: color 0.25s ease;
}


/* ARROW */

.services-menu-arrow {
    flex-shrink: 0;

    margin-left: 15px;

    color: #b9832d;

    font-size: 20px;
    font-weight: 400;

    line-height: 1;

    opacity: 0.8;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* HOVER */

.services-menu-item:hover {
    padding-left: 21px;
    padding-right: 13px;

    background: rgba(185, 131, 45, 0.07);
}

.services-menu-item:hover strong {
    color: #a97829;
}

.services-menu-item:hover .services-menu-arrow {
    opacity: 1;
    transform: translate(4px, -3px);
}


/* ACTIVE */

.services-menu-item.is-active {
    background: rgba(185, 131, 45, 0.07);
}

.services-menu-item.is-active strong {
    color: #a97829;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 980px) {

    .services-dropdown {
        display: block;
        width: 100%;
    }

.services-dropdown:hover .services-menu,
.services-dropdown:focus-within .services-menu {

    transform: translate(0%, 0);
}


    /* SERVICES BUTTON */

    .services-dropdown .services-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;

        padding: 18px 0;

        color: #292520 !important;

        background: transparent;

        border: 0;
        border-bottom: 1px solid rgba(41, 37, 32, 0.10);

        font-size: 17px;
        font-weight: 600;

        text-align: left;
    }

    .services-dropdown .services-toggle::after {
        display: none;
    }

    .services-arrow {
        margin-left: auto;

        width: 25px;
        height: 25px;

        display: flex;
        align-items: center;
        justify-content: center;

        color: #a97829;

        font-size: 13px;


        transition:
            transform 0.3s ease,
            background 0.3s ease;
    }


    /* =====================================================
       MOBILE PANEL
    ===================================================== */

    .services-menu {

        position: static;

        width: 100%;

        margin: 0;

        padding: 5px 0;

        background: #f7f2e8;

        border: 0;
        border-bottom: 1px solid rgba(41, 37, 32, 0.10);

        border-radius: 0;

        box-shadow: none;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: none;

        /* CLOSED BY DEFAULT */

        max-height: 0;
        overflow: hidden;

        transition:
            max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
            padding 0.3s ease;
    }


    .services-menu::before,
    .services-menu::after {
        display: none;
    }


    /* OPEN */

    .services-dropdown.is-open .services-menu {
        max-height: 180px;
        padding: 5px 0;
    }


    .services-dropdown.is-open .services-arrow {
        transform: rotate(180deg);
    }


    /* =====================================================
       MOBILE SERVICE ITEMS
    ===================================================== */

    .services-menu-item {

        min-height: 64px;

        padding: 0 12px;

        background: transparent;

        border-bottom: 1px solid rgba(41, 37, 32, 0.08);

        transition:
            background 0.25s ease,
            padding 0.25s ease;
    }

    .services-menu-item:last-child {
        border-bottom: 0;
    }


    .services-menu-content {
        display: block;
        width: 100%;
    }


    .services-menu-content strong {

        color: #292520;

        font-family: Georgia, "Times New Roman", serif;

        font-size: 17px;
        font-weight: 400;

        line-height: 1.25;
    }


    .services-menu-arrow {

        margin-left: 10px;

        color: #b9832d;

        font-size: 19px;

        opacity: 0.75;

        transition: transform 0.25s ease;
    }


    /* MOBILE HOVER / TAP */

    .services-menu-item:hover {
        padding-left: 18px;
        padding-right: 10px;

        background: rgba(185, 131, 45, 0.07);
    }

    .services-menu-item:hover strong {
        color: #a97829;
    }

    .services-menu-item:hover .services-menu-arrow {
        transform: translate(3px, -3px);
    }


    .services-menu-item.is-active {
        background: rgba(185, 131, 45, 0.07);
    }

    .services-menu-item.is-active strong {
        color: #a97829;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 560px) {

    .services-dropdown .services-toggle {
        padding: 17px 0;

        font-size: 16px;
    }

    .services-menu-item {
        min-height: 60px;
        padding: 0 9px;
    }

    .services-menu-content strong {
        font-size: 16px;
    }

    .services-menu-arrow {
        font-size: 18px;
    }

    .services-menu-item:hover {
        padding-left: 15px;
        padding-right: 8px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .services-dropdown .services-toggle {
        font-size: 15px;
    }

    .services-menu-content strong {
        font-size: 15px;
    }

    .services-menu-item {
        min-height: 57px;
    }

    .services-menu-arrow {
        font-size: 17px;
    }
}
/* =========================================================
   CTA
========================================================= */
.nav-cta {
    min-height: 46px;
    padding: 0 17px 0 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    color: var(--tis-white);
    background: var(--tis-gold);
    border: 1px solid var(--tis-gold-light);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow:
        0 10px 28px rgba(16, 16, 15, 0.14);
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.nav-cta-arrow {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--tis-gold);
    background: var(--tis-cream);
    transition:
        transform 0.3s ease;
}
.nav-cta:hover {
    color: var(--tis-black);
    background: var(--tis-gold);
    border-color: var(--tis-gold);
    transform: translateY(-2px);
    box-shadow:
        0 14px 34px rgba(194, 138, 43, 0.24);
}
.nav-cta:hover .nav-cta-arrow {
    transform: rotate(45deg);
}
/* =========================================================
   MOBILE TOGGLE
========================================================= */
.nav-toggle {
    display: none;
    position: relative;
    width: 46px;
    height: 46px;
    z-index: 10070;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    border: 1px solid rgba(16, 16, 15, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.12);
}
.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--tis-black);
    border-radius: 2px;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}
/* OPEN → X */
.nav-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
}
.nav-toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}
/* =========================================================
   ACCESSIBILITY
========================================================= */
.nav-link:focus-visible,
.nav-cta:focus-visible,
.nav-toggle:focus-visible,
.brand:focus-visible,
.services-menu-item:focus-visible {
    outline: 2px solid var(--tis-gold);
    outline-offset: 4px;
}
/* =========================================================
   MOBILE NAVIGATION
========================================================= */
@media (max-width: 980px) {
    /* HAMBURGER */
    .nav-toggle {
        display: flex;
    }
    /* MOBILE NAV PANEL */
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(390px, 90vw);
        height: 100dvh;
        height: 100vh;
        padding: 125px 32px 40px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        background: #f7f5f1;
        border-left: 1px solid rgba(16, 16, 15, 0.08);
        box-shadow:
            -20px 0 60px rgba(0, 0, 0, 0.14);
        overflow-y: auto;
        overscroll-behavior: contain;
        transform: translateX(105%);
        transition:
            transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 10040;
    }
    /* OPEN */
    .main-nav.is-open {
        transform: translateX(0);
    }
    /* NORMAL LINKS */
    .main-nav > .nav-link {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 18px 0;
        color: var(--tis-black) !important;
        background: transparent;
        border: 0;
        border-bottom: 1px solid rgba(16, 16, 15, 0.09);
        font-size: 17px;
        font-weight: 600;
        text-align: left;
    }
    .main-nav > .nav-link::after {
        bottom: 0;
        height: 1.5px;
        background: var(--tis-gold);
    }
    .main-nav > .nav-link.is-active {
        color: var(--tis-gold) !important;
    }
    /* =====================================================
       MOBILE SERVICES
    ===================================================== */
    .services-dropdown {
        display: block;
        width: 100%;
    }
    /* SERVICES BUTTON */
    .services-dropdown .services-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 18px 0;
        color: var(--tis-black) !important;
        border: 0;
        border-bottom: 1px solid rgba(16, 16, 15, 0.09);
        font-size: 17px;
        font-weight: 600;
        text-align: left;
    }
    .services-dropdown .services-toggle::after {
        display: none;
    }
    .services-arrow {
        margin-left: auto;
        font-size: 15px;
    }
   
    /* CTA */
    .main-nav .nav-cta {
        margin-top: 30px;
        min-height: 52px;
        padding: 0 24px;
        justify-content: center;
        gap: 12px;
        font-size: 13px;
        border-radius: 999px;
        background: var(--tis-gold) !important;
        color: #ffffff !important;
        box-shadow:
            0 8px 24px rgba(194, 138, 43, 0.25);
    }
    .main-nav .nav-cta-arrow {
        width: 26px;
        height: 26px;
        background: var(--tis-cream);
        color: var(--tis-gold);
    }
}
/* =========================================================
   BODY SCROLL LOCK
========================================================= */
body.nav-open {
    overflow: hidden !important;
    touch-action: none;
}
/* =========================================================
   TABLET
========================================================= */
@media (min-width: 561px) and (max-width: 900px) {
    .site-header {
        top: 34px;
    }
    .top-announcement {
        min-height: 34px;
        height: auto;
        padding: 6px 16px;
    }
    .announcement-text {
        font-size: 13px;
        gap: 4px 6px;
    }
    .announcement-brand {
        font-size: 14px;
    }
}
/* =========================================================
   MOBILE ANNOUNCEMENT
========================================================= */
@media (max-width: 560px) {
    :root {
        --header-height: 76px;
    }
    .top-announcement {
        height: auto;
        min-height: 34px;
        padding: 6px 14px;
    }
    .announcement-text {
        font-size: 11px;
        line-height: 1.4;
        gap: 3px 5px;
    }
    .announcement-brand {
        font-size: 13px;
    }
    /* HEADER */
    .site-header {
        top: 34px;
        padding: 8px 12px;
    }
    .site-header.is-fixed {
        top: 34px;
    }
    .site-header.is-scrolled {
        height: 76px;
        padding-top: 6px;
        padding-bottom: 6px;
    }
    /* NAV SHELL */
    .nav-shell {
        padding: 0 2px;
        gap: 15px;
    }
    /* BRAND */
    .brand {
        gap: 9px;
        min-width: 0;
    }
    .brand-mark {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
    }
    .brand-name {
        font-size: 17px;
        gap: 5px;
    }
    /* TOGGLE */
    .nav-toggle {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
    }
    .nav-toggle span {
        width: 18px;
    }
    /* MOBILE PANEL */
    .main-nav {
        width: 100%;
        padding: 115px 27px 35px;
    }
}
/* =========================================================
   VERY SMALL MOBILE
========================================================= */
@media (max-width: 480px) {
    .announcement-text {
        font-size: 9px;
        line-height: 1.45;
    }
    .announcement-brand {
        font-size: 13px;
    }
    .announcement-separator {
        display: none;
    }
    .site-header {
        top: 32px;
    }
    .site-header.is-fixed {
        top: 32px;
    }
    .main-nav {
        padding-top: 105px;
    }
}
/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */
@media (max-width: 380px) {
    .announcement-text {
        font-size: 8.5px;
    }
    .announcement-brand {
        font-size: 12px;
    }
    .brand-mark {
        width: 41px;
        height: 41px;
        flex-basis: 41px;
    }
    .brand-name {
        font-size: 15px;
    }
    .nav-toggle {
        width: 40px;
        height: 40px;
    }
    .main-nav {
        padding-left: 22px;
        padding-right: 22px;
    }
    .services-menu-content strong {
        font-size: 16px;
    }
}
/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   THE INNER SHIFT — HERO
   PREMIUM EDITORIAL / WELLNESS DESIGN
   ========================================================= */

.tis-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height, 80px));
  overflow: hidden;

  background: var(--tis-cream);
  color: var(--tis-black);
}

/* =========================================================
   HERO INNER
   ========================================================= */

.tis-hero-inner {
  position: relative;
  z-index: 5;

  width: min(1280px, calc(100% - 72px));
  min-height: calc(100svh - var(--header-height, 80px));

  margin: 0 auto;

  display: flex;
  align-items: center;
}

/* =========================================================
   MAIN CONTENT GRID
   ========================================================= */

.tis-hero-content {
  width: 100%;

  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);

  align-items: center;

  column-gap: 30px;

  padding: 110px 0 55px;
}

/* =========================================================
   LEFT COPY
   ========================================================= */

.tis-hero-copy {
  position: relative;
  z-index: 10;

  width: 100%;
  max-width: 610px;

  transform: translateY(-4px);
}

/* =========================================================
   HERO HEADING
   ========================================================= */

.tis-hero-copy h1 {
  margin: 0;

  color: var(--tis-black);

  font-size: clamp(58px, 6.4vw, 94px);

  line-height: 0.88;

  letter-spacing: -0.065em;

  font-weight: 650;
}

.tis-hero-copy h1 em {
  display: block;

  margin-top: 4px;

  padding-left: 54px;

  color: var(--tis-gold);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 0.98em;

  font-weight: 400;

  font-style: italic;

  line-height: 1.08;
}
.headpara {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin: 10px 0px !important;
}
.headpara span {
  color: var(--tis-gold-light);
}
/* =========================================================
   HEADING LINE
   ========================================================= */

.tis-heading-line {
  width: min(390px, 82%);

  display: flex;
  align-items: center;

  gap: 12px;

  margin-top: 25px;
}

.tis-heading-line span {
  flex: 1;

  height: 1px;

  background: linear-gradient(90deg, transparent, var(--tis-line));
}

.tis-heading-line span:last-child {
  background: linear-gradient(90deg, var(--tis-line), transparent);
}

.tis-heading-line i {
  flex: 0 0 auto;

  color: var(--tis-gold);

  font-size: 12px;

  font-style: normal;

  line-height: 1;

  animation: tisHeroStar 4s ease-in-out infinite;
}

@keyframes tisHeroStar {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
    opacity: 0.75;
  }

  50% {
    transform: rotate(90deg) scale(1.15);
    opacity: 1;
  }
}

/* =========================================================
   DESCRIPTION
   ========================================================= */

.tis-hero-description {
  max-width: 525px;

  margin: 21px 0 0;

  color: #625c53;

  font-size: 15.5px;

  line-height: 1.75;

  letter-spacing: 0.002em;
}

.tis-hero-description strong {
  color: var(--tis-black);

  font-weight: 650;
}

/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 760px) {
  .tis-hero-content {
    display: flex;
    flex-direction: column;

    padding: 105px 0 45px;
  }

  .tis-hero-copy {
    display: flex;
    flex-direction: column;

    max-width: 100%;
  }
  .headpara {
    font-size: 15px;
    font-weight: 700;
    color: white;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
  .tis-hero-content {
    padding-top: 92px;
  }
}

/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .tis-hero-inner {
    width: min(94%, 920px);
  }

  .tis-hero-content {
    column-gap: 12px;
  }

  .tis-hero-copy h1 {
    font-size: clamp(53px, 7vw, 76px);
  }

  .tis-hero-copy h1 em {
    padding-left: 38px;
  }

  .tis-hero-description {
    font-size: 14px;
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
  .tis-hero-inner {
    width: calc(100% - 40px);
  }

  .tis-hero-content {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(0, 0.95fr);

    column-gap: 5px;

    padding: 48px 0;
  }

  .tis-hero-copy h1 {
    font-size: clamp(48px, 7vw, 66px);
  }

  .tis-hero-description {
    max-width: 450px;

    font-size: 13.5px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 760px) {
  .tis-hero {
    min-height: auto;
  }
  .tis-hero-inner {
    width: calc(100% - 30px);
    min-height: auto;
    padding: calc(var(--header-height, 80px) + 28px) 0 48px;
  }
  .tis-hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .tis-hero-copy {
    width: 100%;
    max-width: 100%;
    order: 0;
    margin-top: 77px;
    text-align: center;
    transform: none;
  }
  /* =====================================================
       MOBILE HEADING
===================================================== */

  .tis-hero-copy h1 {
    font-size: clamp(48px, 14vw, 68px);
    line-height: 0.92;
    letter-spacing: -0.065em;
  }
  .tis-hero-copy h1 em {
    margin-top: 3px;
    padding-left: 8px;
  }

  /* =====================================================
       MOBILE LINE
===================================================== */
  .tis-heading-line {
    width: 100%;
    max-width: 270px;
    margin: 21px auto 0;
  }

  /* =====================================================
       MOBILE DESCRIPTION
       ===================================================== */

  .tis-hero-description {
    width: 100%;
    max-width: 520px;
    margin: 18px auto 0;
    font-size: 14px;
    line-height: 1.68;
  }
}

@media (max-width: 480px) {
  .tis-hero-inner {
    width: calc(100% - 24px);
    padding: calc(var(--header-height, 75px) + 22px) 0 42px;
  }

  .tis-hero-copy h1 {
    font-size: clamp(45px, 52px, 60px);
  }
  .tis-heading-line {
    max-width: 240px;
  }
  .tis-hero-description {
    font-size: 13.5px;
    line-height: 1.65;
  }
  .tis-hero-visual {
    width: 100%;
    height: 420px !important;
  }
}

/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {
  .tis-hero-inner {
    width: calc(100% - 20px);
  }

  .tis-hero-copy h1 {
    font-size: 43px;
  }

  .tis-hero-description {
    font-size: 12.8px;
  }
}
@media (max-width: 440px) {
  .tis-hero-visual {
    width: 100%;
    height: 380px !important;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .tis-heading-line i {
    animation: none !important;
  }
}
/* =========================================================
   SECTION 02 — DISCOVER
   ========================================================= */
.tis-discover {
  position: relative;
  min-height: auto;
  overflow: hidden;

  background: #f7ebd3; /* ← Light cream background */
  color: var(--tis-black); /* ← Dark text */
}

/* =========================================================
   BACKGROUND YOU
   ========================================================= */

.tis-discover-bg {
  position: absolute;
  right: -4%;
  bottom: -20%;
  z-index: 0;

  color: rgba(16, 16, 15, 0.035); /* ← Soft dark instead of white */

  font-size: clamp(260px, 30vw, 480px);
  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 0.7;

  pointer-events: none;
  user-select: none;
}

/* =========================================================
   GLOW
   ========================================================= */

.tis-discover::before {
  content: "";
  position: absolute;
  top: -220px;
  left: 32%;
  width: 650px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(194, 138, 43, 0.1),
    /* thoda soft gold glow */ transparent 68%
  );
  pointer-events: none;
}

.tis-discover-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  right: -180px;
  bottom: -180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(194, 138, 43, 0.06),
    transparent 70%
  );
  pointer-events: none;
}

/* =========================================================
   INNER
   ========================================================= */

.tis-discover-inner {
  position: relative;
  z-index: 5;
  width: min(1380px, calc(100% - 70px));
  margin: auto;
  padding: 95px 0 85px;
}

/* =========================================================
   MAIN GRID
   ========================================================= */

.tis-discover-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 90px;
}

/* =========================================================
   LEFT HEADING
   ========================================================= */

.tis-discover-heading {
  position: relative;
  z-index: 2;
}
/* Discover — short copy + wider video */
.tis-discover-grid-video {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr; /* video half se zyada */
  gap: 40px;
  align-items: center;
}

.tis-discover-heading .tis-discover-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--tis-gold, #c28a2b);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.tis-discover-short {
  margin: 20px 0 0;
  max-width: 420px;
  color: #5e584f;
  font-size: 15.5px;
  line-height: 1.7;
}

.tis-discover-video {
  width: 100%;
}

.tis-discover-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #0c0a08;
  box-shadow: 0 22px 55px rgba(16, 16, 15, 0.12);
  border: 1px solid rgba(16, 16, 15, 0.06);
}

.tis-discover-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tis-discover-video-frame .cvr-iframe-holder {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.tis-discover-video-frame .cvr-iframe-holder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.tis-discover-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(194, 138, 43, 0.92);
  color: #10100f;
  display: grid;
  place-items: center;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
}

.tis-discover-play svg {
  width: 22px;
  height: 22px;
  margin-left: 2px;
}

.tis-discover-video.is-playing .tis-discover-play,
.tis-discover-video.is-playing .tis-discover-thumb {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 900px) {
  .tis-discover-grid-video {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .tis-discover-video {
    order: -1;
  }
  .tis-discover-short {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .tis-discover-play {
    width: 48px;
    height: 48px;
  }
  .tis-discover-short {
    font-size: 14.5px;
  }
}
/* =========================================================
   KICKER
   ========================================================= */

.tis-discover-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;

  color: var(--tis-gold);

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* =========================================================
   HEADING
   ========================================================= */

.tis-discover-heading h2 {
  margin: 0;
  max-width: 650px;

  color: var(--tis-black); /* dark heading */

  font-size: clamp(55px, 6.2vw, 80px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 500;
}

.tis-discover-heading h2 em {
  color: var(--tis-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
}

/* =========================================================
   RIGHT CONTENT
   ========================================================= */

.tis-discover-content {
  position: relative;
  padding-left: 38px;
  border-left: 1px solid rgba(194, 138, 43, 0.28);
}

/* Gold accent on vertical line */
.tis-discover-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  width: 4px;
  height: 55px;
  border-radius: 10px;
  background: var(--tis-gold);
}

/* =========================================================
   INTRO
   ========================================================= */

.tis-discover-intro p {
  max-width: 500px;
  margin: 0 0 25px;

  color: rgba(16, 16, 15, 0.82); /* soft dark */

  font-size: 18px;
  line-height: 1.7;
}

/* =========================================================
   BODY
   ========================================================= */

.tis-discover-body {
  max-width: 500px;
}

.tis-discover-body p {
  margin: 0 0 17px;

  color: rgba(16, 16, 15, 0.62); /* lighter dark */

  font-size: 15px;
  line-height: 1.72;
}

.tis-discover-body p:last-child {
  margin-bottom: 0;
  color: rgba(16, 16, 15, 0.7);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {
  .tis-discover-inner {
    width: min(92%, 850px);
    padding: 75px 0 65px;
  }

  .tis-discover-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

  .tis-discover-heading h2 {
    font-size: clamp(50px, 7vw, 72px);
  }

  .tis-discover-content {
    padding-left: 28px;
  }

  .tis-discover-intro p {
    font-size: 16px;
  }

  .tis-discover-body p {
    font-size: 14px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {
  .tis-discover-inner {
    width: calc(100% - 34px);
    padding: 65px 0 55px;
  }

  .tis-discover-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .tis-discover-heading {
    text-align: center;
  }

  .tis-discover-kicker {
    justify-content: center;
  }

  .tis-discover-heading h2 {
    font-size: clamp(48px, 14vw, 68px);
    line-height: 0.93;
  }

  .tis-discover-content {
    padding-left: 23px;
    text-align: left;
  }

  .tis-discover-intro p {
    font-size: 15px;
    line-height: 1.65;
  }

  .tis-discover-body p {
    font-size: 14px;
    line-height: 1.68;
  }

  .tis-discover-bg {
    right: -15%;
    bottom: -4%;
    font-size: 55vw;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {
  .tis-discover-inner {
    padding: 55px 0 48px;
  }

  .tis-discover-grid {
    gap: 30px;
  }

  .tis-discover-heading h2 {
    font-size: 47px;
  }

  .tis-discover-content {
    padding-left: 19px;
  }

  .tis-discover-intro p {
    font-size: 14px;
  }

  .tis-discover-body p {
    font-size: 13.5px;
  }
}
/* =========================================================
   THE INNER SHIFT
   SECTION 03 — RECOGNITION
   ========================================================= */

.tis-recognition {
  position: relative;
  overflow: hidden;

  background: var(--tis-cream);
  color: var(--tis-black);

  padding: 80px 0 75px;
}

/* =========================================================
   BACKGROUND WORD
   ========================================================= */

.tis-recognition-bg {
  position: absolute;

  left: -5%;
  bottom: -13%;

  z-index: 0;

  color: rgba(16, 16, 15, 0.025);

  font-size: clamp(230px, 27vw, 430px);

  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 0.7;

  white-space: nowrap;

  pointer-events: none;
  user-select: none;
}

/* =========================================================
   INNER
   ========================================================= */

.tis-recognition-inner {
  position: relative;
  z-index: 2;

  width: min(1200px, calc(100% - 70px));

  margin: 0 auto;
}

/* =========================================================
   MAIN GRID
   ========================================================= */

.tis-recognition-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.88fr)
    minmax(0, 1.12fr);

  gap: 75px;

  align-items: center;
}

/* =========================================================
   LEFT CONTENT
   ========================================================= */

.tis-recognition-intro {
  max-width: 560px;
}

/* =========================================================
   KICKER
   ========================================================= */

.tis-recognition-kicker {
  display: inline-flex;

  align-items: center;
  gap: 10px;

  margin-bottom: 20px;

  color: var(--tis-gold);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}

/* =========================================================
   HEADING
   ========================================================= */

.tis-recognition-title {
  max-width: 560px;

  margin: 0;

  font-size: clamp(56px, 6vw, 75px);

  line-height: 0.92;

  letter-spacing: -0.065em;

  font-weight: 500;
}

.tis-recognition-title em {
  display: block;

  margin-top: 4px;

  color: var(--tis-gold);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 0.97em;

  font-weight: 400;

  font-style: italic;

  line-height: 1.05;
}

/* =========================================================
   LEFT PARAGRAPHS
   ========================================================= */

.tis-recognition-lead {
  max-width: 500px;

  margin: 27px 0 0;

  color: #3f3d39;

  font-size: 16px;

  line-height: 1.72;
}

.tis-recognition-lead.muted {
  margin-top: 13px;

  color: #706c65;
}

/* =========================================================
   QUESTION
   ========================================================= */

.tis-recognition-question {
  max-width: 500px;

  margin-top: 30px;

  padding: 18px 22px;

  border-radius: 12px;

  background: rgba(194, 138, 43, 0.075);
}

.tis-recognition-question span {
  display: block;

  margin-bottom: 8px;

  color: var(--tis-gold);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}

.tis-recognition-question p {
  margin: 0;

  color: var(--tis-black);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 18px;

  line-height: 1.5;
}

/* =========================================================
   RIGHT PATTERNS
   ========================================================= */

.tis-recognition-patterns {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 14px;
}

/* =========================================================
   PATTERN CARD
   ========================================================= */

.tis-pattern {
  position: relative;

  min-height: 190px;

  padding: 25px 25px 23px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  border-radius: 16px;

  background: rgba(255, 255, 255, 0.68);

  box-shadow: 0 8px 30px rgba(16, 16, 15, 0.045);

  overflow: hidden;

  transition:
    transform 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease;
}

/* Gold corner accent */

.tis-pattern::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 4px;
  height: 42px;

  border-radius: 0 0 6px 0;

  background: var(--tis-gold);
}

.tis-pattern:hover {
  transform: translateY(-5px);

  background: rgba(255, 255, 255, 0.95);

  box-shadow: 0 18px 42px rgba(16, 16, 15, 0.09);
}

/* =========================================================
   NUMBER
   ========================================================= */

.tis-pattern-number {
  width: 38px;
  height: 38px;

  display: grid;

  place-items: center;

  margin-bottom: 22px;

  border-radius: 50%;

  background: rgba(194, 138, 43, 0.1);

  color: var(--tis-gold);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.05em;
}

/* =========================================================
   TITLE
   ========================================================= */

.tis-pattern-content h3 {
  margin: 0 0 9px;

  color: var(--tis-black);

  font-size: clamp(21px, 2.1vw, 27px);

  font-weight: 550;

  line-height: 1.08;

  letter-spacing: -0.035em;

  transition: color 0.3s ease;
}

.tis-pattern:hover .tis-pattern-content h3 {
  color: var(--tis-gold);
}

/* =========================================================
   DESCRIPTION
   ========================================================= */

.tis-pattern-content p {
  max-width: 360px;

  margin: 0;

  color: #66625b;

  font-size: 13.5px;

  line-height: 1.65;
}

/* =========================================================
   TABLET — 1100px
   ========================================================= */

@media (max-width: 1100px) {
  .tis-recognition {
    padding: 70px 0 65px;
  }

  .tis-recognition-inner {
    width: min(92%, 900px);
  }

  .tis-recognition-grid {
    gap: 45px;
  }

  .tis-recognition-title {
    font-size: clamp(50px, 6.8vw, 72px);
  }

  .tis-recognition-lead {
    font-size: 14.5px;
  }

  .tis-recognition-question p {
    font-size: 16px;
  }

  .tis-pattern {
    min-height: 175px;

    padding: 21px 20px;
  }

  .tis-pattern-content h3 {
    font-size: 21px;
  }

  .tis-pattern-content p {
    font-size: 12.5px;
  }
}

/* =========================================================
   TABLET / SMALL LAPTOP — 850px
   ========================================================= */

@media (max-width: 850px) {
  .tis-recognition-grid {
    grid-template-columns: 1fr;

    gap: 42px;
  }

  .tis-recognition-intro {
    max-width: 680px;
  }

  .tis-recognition-title {
    font-size: clamp(55px, 9vw, 78px);
  }

  .tis-recognition-lead {
    max-width: 620px;

    font-size: 15px;
  }

  .tis-recognition-question {
    max-width: 600px;
  }

  .tis-recognition-patterns {
    width: 100%;
  }

  .tis-pattern {
    min-height: 180px;
  }
}

/* =========================================================
   MOBILE — 600px
   ========================================================= */

@media (max-width: 600px) {
  .tis-recognition {
    padding: 60px 0 50px;
  }

  .tis-recognition-inner {
    width: calc(100% - 30px);
  }

  /* LEFT */

  .tis-recognition-intro {
    text-align: center;
  }

  .tis-recognition-kicker {
    justify-content: center;

    font-size: 10px;

    margin-bottom: 17px;
  }

  .tis-recognition-title {
    font-size: clamp(48px, 14vw, 67px);

    line-height: 0.91;
  }

  .tis-recognition-title em {
    margin-top: 3px;
  }

  .tis-recognition-lead {
    max-width: 520px;

    margin-left: auto;
    margin-right: auto;

    font-size: 14px;

    line-height: 1.68;
  }

  .tis-recognition-question {
    margin: 25px auto 0;

    padding: 17px 19px;

    text-align: left;
  }

  .tis-recognition-question p {
    font-size: 16px;

    line-height: 1.48;
  }

  /* CARDS */

  .tis-recognition-patterns {
    grid-template-columns: 1fr;

    gap: 11px;
  }

  .tis-pattern {
    min-height: auto;

    padding: 19px 18px 20px;

    border-radius: 14px;
  }

  .tis-pattern-number {
    width: 36px;
    height: 36px;

    margin-bottom: 17px;
  }

  .tis-pattern-content h3 {
    margin-bottom: 7px;

    font-size: 22px;
  }

  .tis-pattern-content p {
    max-width: none;

    font-size: 13.5px;

    line-height: 1.65;
  }

  .tis-pattern:hover {
    transform: none;
  }

  /* BACKGROUND */

  .tis-recognition-bg {
    left: auto;
    right: -18%;

    bottom: -2%;

    font-size: 58vw;
  }
}

/* =========================================================
   SMALL MOBILE — 430px
   ========================================================= */

@media (max-width: 430px) {
  .tis-recognition {
    padding: 52px 0 45px;
  }

  .tis-recognition-inner {
    width: calc(100% - 26px);
  }

  .tis-recognition-grid {
    gap: 32px;
  }

  .tis-recognition-title {
    font-size: 47px;
  }

  .tis-recognition-lead {
    font-size: 13.5px;
  }

  .tis-recognition-question {
    padding: 16px 17px;
  }

  .tis-recognition-question span {
    font-size: 9px;
  }

  .tis-recognition-question p {
    font-size: 15px;
  }

  .tis-pattern {
    padding: 18px 16px 19px;
  }

  .tis-pattern-number {
    width: 34px;
    height: 34px;

    margin-bottom: 15px;
  }

  .tis-pattern-content h3 {
    font-size: 20px;
  }

  .tis-pattern-content p {
    font-size: 13px;
  }
}

/* =========================================================
   VERY SMALL DEVICES — 360px
   ========================================================= */

@media (max-width: 360px) {
  .tis-recognition-title {
    font-size: 43px;
  }

  .tis-recognition-lead {
    font-size: 13px;
  }

  .tis-pattern-content h3 {
    font-size: 19px;
  }

  .tis-pattern-content p {
    font-size: 12.5px;
  }
}
/* =========================================================
   ROOT — REFINED TYPOGRAPHY
   ========================================================= */

.tis-root {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;

  color: var(--tis-white);

  background:
    radial-gradient(
      circle at 78% 15%,
      rgba(194, 138, 43, 0.085),
      transparent 30%
    ),
    radial-gradient(
      circle at 12% 88%,
      rgba(125, 90, 43, 0.055),
      transparent 30%
    ),
    linear-gradient(135deg, #10100f 0%, #15130f 50%, #12110f 100%);

  padding: 70px 0 76px;
}

/* =========================================================
   BACKGROUND WORD
   ========================================================= */

.tis-root-word {
  position: absolute;

  right: -4%;
  bottom: -8%;

  font-family: "DM Sans", "Inter", Arial, sans-serif;

  font-size: clamp(180px, 25vw, 380px);

  font-weight: 700;

  line-height: 0.7;

  letter-spacing: -0.11em;

  color: rgba(194, 138, 43, 0.025);

  pointer-events: none;
  user-select: none;
}

/* =========================================================
   MAIN GRID
   ========================================================= */

.tis-root-shell {
  position: relative;
  z-index: 2;

  width: min(1180px, calc(100% - 70px));

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 0.84fr)
    minmax(0, 1.16fr);

  gap: 72px;

  align-items: start;
}

/* =========================================================
   IMAGE
   ========================================================= */

.tis-root-image-wrap {
  position: relative;

  width: 100%;
  height: 325px;

  overflow: hidden;

  border-radius: 6px;

  background: var(--tis-black-soft);

  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.3);
}

.tis-root-image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transform: scale(1.04);

  filter: saturate(0.78) contrast(1.04);

  transition:
    transform 1.4s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.8s ease;
}

.tis-root-image-wrap:hover .tis-root-image {
  transform: scale(1.08);

  filter: saturate(0.92) contrast(1.06);
}

/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.tis-root-image-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(16, 16, 15, 0.02) 20%,
    rgba(16, 16, 15, 0.08) 50%,
    rgba(16, 16, 15, 0.76) 100%
  );

  pointer-events: none;
}

/* =========================================================
   IMAGE CIRCLE
   ========================================================= */

.tis-root-image-circle {
  position: absolute;

  top: 18px;
  right: 18px;

  width: 72px;
  height: 72px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(214, 166, 77, 0.65);

  border-radius: 50%;

  background: rgba(16, 16, 15, 0.28);

  backdrop-filter: blur(8px);

  color: var(--tis-gold-light);

  transition:
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1),
    background 0.5s ease;
}

.tis-root-image-wrap:hover .tis-root-image-circle {
  transform: rotate(8deg) scale(1.07);

  background: rgba(194, 138, 43, 0.12);
}

.tis-root-image-circle span {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.tis-root-image-circle strong {
  margin-top: 3px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 12px;

  font-weight: 400;
}

/* =========================================================
   LEFT MESSAGE
   ========================================================= */

.tis-root-message {
  padding-top: 25px;
}

.tis-root-kicker {
  margin: 0 0 13px;

  color: var(--tis-gold-light);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.17em;

  text-transform: uppercase;
}

.tis-root-message h2 {
  max-width: 560px;

  margin: 0;

  color: #ffffff;

  font-family: "DM Sans", "Inter", Arial, sans-serif;

  font-size: clamp(44px, 4.5vw, 64px);

  font-weight: 500;

  line-height: 0.94;

  letter-spacing: -0.065em;
}

.tis-root-message h2 em {
  display: block;

  margin-top: 4px;

  color: var(--tis-gold-light);

  font-family: Georgia, "Times New Roman", serif;

  font-weight: 400;

  font-style: italic;

  line-height: 1.05;
}

.tis-root-message > p:last-child {
  max-width: 510px;

  margin: 20px 0 0;

  color: rgba(255, 255, 255, 0.66);

  font-size: 14px;

  line-height: 1.75;
}

/* =========================================================
   RIGHT CONTENT
   ========================================================= */

.tis-root-content {
  width: 100%;
  min-width: 0;
}

.tis-root-list {
  display: flex;
  flex-direction: column;

  width: 100%;
}

/* =========================================================
   STORY ITEM
   ========================================================= */

.tis-root-item {
  position: relative;

  display: grid;

  grid-template-columns: 78px minmax(0, 1fr);

  column-gap: 19px;

  width: 100%;

  padding: 4px 0 25px;

  box-sizing: border-box;

  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.tis-root-item + .tis-root-item {
  padding-top: 25px;
}

/* =========================================================
   LARGE NUMBER
   ========================================================= */

.tis-root-number {
  align-self: start;

  font-family: "DM Sans", "Inter", Arial, sans-serif;

  font-size: 54px;

  line-height: 0.8;

  font-weight: 600;

  letter-spacing: -0.075em;

  color: rgba(214, 166, 77, 0.23);

  transition:
    color 0.45s ease,
    transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* IMPORTANT:
   No dot / no pseudo element
*/

.tis-root-number::after {
  display: none !important;
}

/* =========================================================
   POINT CONTENT
   ========================================================= */

.tis-root-item-content {
  position: relative;

  min-width: 0;
}

.tis-root-item-content h3 {
  margin: 0 0 9px;

  color: rgba(255, 255, 255, 0.96);

  font-family: "DM Sans", "Inter", Arial, sans-serif;

  font-size: clamp(28px, 2.6vw, 36px);

  font-weight: 500;

  line-height: 1;

  letter-spacing: -0.045em;

  transition:
    color 0.4s ease,
    transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* =========================================================
   PARAGRAPH — MORE VISIBLE
   ========================================================= */

.tis-root-item-content p {
  max-width: 560px;

  margin: 0;

  color: rgba(255, 255, 255, 0.68);

  font-family: "DM Sans", "Inter", Arial, sans-serif;

  font-size: 15px;

  font-weight: 400;

  line-height: 1.72;

  letter-spacing: -0.005em;

  transition:
    color 0.45s ease,
    transform 0.45s ease;
}

/* =========================================================
   SUBTLE GOLD ATMOSPHERE ON HOVER
   ========================================================= */

.tis-root-item::before {
  content: "";

  position: absolute;

  left: 25px;
  top: 50%;

  width: 300px;
  height: 180px;

  transform: translate(-50%, -50%) scale(0.6);

  border-radius: 50%;

  background: radial-gradient(
    ellipse,
    rgba(194, 138, 43, 0.065),
    transparent 70%
  );

  opacity: 0;

  pointer-events: none;

  transition:
    opacity 0.55s ease,
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.tis-root-item:hover {
  transform: translateX(7px);
}

.tis-root-item:hover::before {
  opacity: 1;

  transform: translate(-50%, -50%) scale(1);
}

.tis-root-item:hover .tis-root-number {
  color: rgba(214, 166, 77, 0.92);

  transform: translateX(3px);
}

.tis-root-item:hover .tis-root-item-content h3 {
  color: var(--tis-gold-light);

  transform: translateX(4px);
}

.tis-root-item:hover .tis-root-item-content p {
  color: rgba(255, 255, 255, 0.82);

  transform: translateX(4px);
}

/* =========================================================
   THE SHIFT
   ========================================================= */

.tis-root-item-final .tis-root-number {
  color: rgba(214, 166, 77, 0.42);
}

.tis-root-item-final .tis-root-item-content h3 {
  color: var(--tis-gold-light);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {
  .tis-root-shell {
    width: min(92%, 900px);

    gap: 48px;
  }

  .tis-root-image-wrap {
    height: 300px;
  }

  .tis-root-message h2 {
    font-size: clamp(40px, 5vw, 56px);
  }

  .tis-root-item {
    grid-template-columns: 65px minmax(0, 1fr);
  }

  .tis-root-number {
    font-size: 47px;
  }

  .tis-root-item-content h3 {
    font-size: 27px;
  }

  .tis-root-item-content p {
    font-size: 14px;
  }
}

/* =========================================================
   TABLET PORTRAIT
   ========================================================= */

@media (max-width: 800px) {
  .tis-root {
    padding: 58px 0 65px;
  }

  .tis-root-shell {
    width: min(92%, 700px);

    display: flex;

    flex-direction: column;

    gap: 40px;
  }

  .tis-root-left {
    display: grid;

    grid-template-columns:
      minmax(0, 0.9fr)
      minmax(0, 1.1fr);

    gap: 28px;

    align-items: center;
  }

  .tis-root-image-wrap {
    height: 275px;
  }

  .tis-root-message {
    padding-top: 0;
  }

  .tis-root-message h2 {
    font-size: clamp(40px, 6vw, 55px);
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .tis-root {
    padding: 48px 0 52px;
  }

  .tis-root-shell {
    width: calc(100% - 30px);

    display: flex;

    flex-direction: column;

    gap: 34px;
  }

  .tis-root-left {
    display: flex;

    flex-direction: column;
  }

  /* IMAGE */

  .tis-root-image-wrap {
    height: 265px;

    width: 100%;
  }

  /* MESSAGE */

  .tis-root-message {
    padding-top: 23px;

    text-align: center;
  }

  .tis-root-kicker {
    font-size: 8px;
  }

  .tis-root-message h2 {
    font-size: clamp(39px, 45px, 55px);

    line-height: 0.95;
  }

  .tis-root-message > p:last-child {
    margin-top: 16px;

    font-size: 13px;

    line-height: 1.72;
  }

  /* LIST */

  .tis-root-item {
    grid-template-columns: 52px minmax(0, 1fr);

    column-gap: 13px;

    padding: 4px 0 23px;
  }

  .tis-root-item + .tis-root-item {
    padding-top: 23px;
  }

  /* NUMBER */

  .tis-root-number {
    font-size: 39px;
  }

  /* HEADING */

  .tis-root-item-content h3 {
    margin-bottom: 8px;

    font-size: clamp(23px, 7vw, 28px);

    line-height: 1;
  }

  /* PARAGRAPH */

  .tis-root-item-content p {
    font-size: 13px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.7);
  }

  /* Remove hover movement on mobile */

  .tis-root-item:hover {
    transform: none;
  }

  .tis-root-item:hover .tis-root-item-content h3 {
    transform: none;
  }

  .tis-root-item:hover .tis-root-item-content p {
    transform: none;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {
  .tis-root {
    padding: 43px 0 47px;
  }

  .tis-root-shell {
    width: calc(100% - 24px);
  }

  .tis-root-image-wrap {
    height: 240px;
  }

  .tis-root-message h2 {
    font-size: 37px;
  }

  .tis-root-message > p:last-child {
    font-size: 12.5px;
  }

  .tis-root-item {
    grid-template-columns: 45px minmax(0, 1fr);

    column-gap: 11px;
  }

  .tis-root-number {
    font-size: 35px;
  }

  .tis-root-item-content h3 {
    font-size: 21px;
  }

  .tis-root-item-content p {
    font-size: 12.5px;

    line-height: 1.68;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .tis-root *,
  .tis-root *::before,
  .tis-root *::after {
    animation: none !important;
    transition: none !important;
  }
}
/* =========================================================
   SECTION 05 — THE TRIGGER
========================================================= */

.tis-trigger {
  position: relative;
  overflow: hidden;
  background: var(--tis-cream);
  color: var(--tis-black);
  padding: 85px 0 90px;
}

/* ---------------------------------------------------------
   INNER
--------------------------------------------------------- */

.tis-trigger-inner {
  position: relative;
  z-index: 2;

  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;

  gap: 80px;
}

/* ---------------------------------------------------------
   LEFT CONTENT
--------------------------------------------------------- */

.tis-trigger-content {
  max-width: 650px;
}

/* LABEL */

.tis-trigger-label {
  display: flex;
  align-items: center;
  gap: 13px;

  margin-bottom: 25px;

  color: var(--tis-brown);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.tis-trigger-label span {
  color: var(--tis-gold);
  font-size: 13px;
}

.tis-trigger-label i {
  width: 38px;
  height: 1px;

  background: var(--tis-gold);

  display: block;
}

/* ---------------------------------------------------------
   HEADING
--------------------------------------------------------- */

.tis-trigger-title {
  margin: 0;

  max-width: 650px;

  font-size: clamp(55px, 6vw, 75px);
  line-height: 0.94;

  font-weight: 500;

  letter-spacing: -0.055em;
}

.tis-trigger-title em {
  display: block;

  margin-top: 4px;

  color: var(--tis-gold);

  font-family: Georgia, serif;
  font-weight: 400;
  font-style: italic;

  letter-spacing: -0.045em;
}

/* ---------------------------------------------------------
   TEXT
--------------------------------------------------------- */

.tis-trigger-lead {
  max-width: 570px;

  margin: 30px 0 10px;

  color: #393631;

  font-size: 18px;
  line-height: 1.7;
}

.tis-trigger-description {
  max-width: 560px;

  margin: 0;

  color: #777168;

  font-size: 15px;
  line-height: 1.75;
}

/* ---------------------------------------------------------
   POINTS
--------------------------------------------------------- */

.tis-trigger-points {
  margin-top: 38px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  column-gap: 45px;
  row-gap: 27px;
}

/* SINGLE POINT */

.tis-trigger-point {
  display: grid;

  grid-template-columns: 38px 1fr;

  gap: 15px;

  align-items: start;

  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* NUMBER */

.tis-trigger-point > span {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  border-radius: 50%;

  background: rgba(194, 138, 43, 0.1);

  color: var(--tis-gold);

  font-size: 10px;
  font-weight: 700;

  transition:
    background 0.4s ease,
    color 0.4s ease,
    transform 0.4s ease;
}

/* POINT TITLE */

.tis-trigger-point h3 {
  margin: 2px 0 6px;

  color: var(--tis-black);

  font-size: 19px;
  line-height: 1.1;

  font-weight: 600;

  transition: color 0.35s ease;
}

/* POINT TEXT */

.tis-trigger-point p {
  margin: 0;

  color: #777168;

  font-size: 13px;
  line-height: 1.6;
}

/* HOVER */

.tis-trigger-point:hover {
  transform: translateY(-5px);
}

.tis-trigger-point:hover > span {
  background: var(--tis-gold);
  color: var(--tis-white);

  transform: scale(1.08);
}

.tis-trigger-point:hover h3 {
  color: var(--tis-gold);
}

/* ---------------------------------------------------------
   RIGHT IMAGE
--------------------------------------------------------- */

.tis-trigger-visual {
  position: relative;

  min-height: 570px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE WRAPPER */

.tis-trigger-image-wrap {
  position: relative;

  width: min(520px, 85%);

  aspect-ratio: 0.78;

  overflow: hidden;

  background: #ddd8cf;

  box-shadow: 0 25px 70px rgba(16, 16, 15, 0.13);
}

/* IMAGE */

.tis-trigger-image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.tis-trigger-image-wrap:hover .tis-trigger-image {
  transform: scale(1.045);
}

/* GOLD SHAPE */

.tis-trigger-image-shape {
  position: absolute;

  width: 75px;
  height: 75px;

  right: -34px;
  bottom: 55px;

  border-radius: 50%;

  border: 1px solid rgba(194, 138, 43, 0.65);

  pointer-events: none;
}

.tis-trigger-image-shape::before {
  content: "";

  position: absolute;

  inset: 9px;

  border-radius: 50%;

  background: rgba(194, 138, 43, 0.1);
}

/* BACKGROUND WORD */

.tis-trigger-visual-word {
  position: absolute;

  right: -35px;
  top: 50%;

  transform: translateY(-50%) rotate(90deg);

  color: rgba(194, 138, 43, 0.08);

  font-size: 80px;
  font-weight: 700;

  letter-spacing: 0.08em;

  pointer-events: none;
}

/* ---------------------------------------------------------
   RESPONSIVE — TABLET
--------------------------------------------------------- */

@media (max-width: 1000px) {
  .tis-trigger {
    padding: 70px 0 75px;
  }

  .tis-trigger-inner {
    width: min(900px, calc(100% - 50px));

    grid-template-columns: 1fr 0.8fr;

    gap: 45px;
  }

  .tis-trigger-title {
    font-size: clamp(50px, 7vw, 72px);
  }

  .tis-trigger-lead {
    font-size: 16px;
  }

  .tis-trigger-points {
    column-gap: 25px;
  }

  .tis-trigger-visual {
    min-height: 500px;
  }

  .tis-trigger-image-wrap {
    width: min(350px, 100%);
  }

  .tis-trigger-visual-word {
    display: none;
  }
}

/* ---------------------------------------------------------
   RESPONSIVE — MOBILE
--------------------------------------------------------- */

@media (max-width: 767px) {
  .tis-trigger {
    padding: 65px 0 70px;
  }

  .tis-trigger-inner {
    width: calc(100% - 32px);

    display: flex;
    flex-direction: column;

    gap: 45px;
  }

  /* CONTENT */

  .tis-trigger-content {
    max-width: 100%;
  }

  .tis-trigger-label {
    margin-bottom: 20px;

    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .tis-trigger-title {
    font-size: clamp(47px, 45px, 66px);

    line-height: 0.96;
  }

  .tis-trigger-lead {
    margin-top: 25px;

    font-size: 16px;
    line-height: 1.7;
  }

  .tis-trigger-description {
    font-size: 14px;
    line-height: 1.7;
  }

  /* POINTS */

  .tis-trigger-points {
    margin-top: 32px;

    grid-template-columns: 1fr;

    gap: 25px;
  }

  .tis-trigger-point {
    grid-template-columns: 38px 1fr;

    gap: 14px;
  }

  .tis-trigger-point h3 {
    font-size: 18px;
  }

  .tis-trigger-point p {
    font-size: 13px;
    line-height: 1.6;
  }

  /* IMAGE */

  .tis-trigger-visual {
    min-height: auto;

    width: 100%;
  }

  .tis-trigger-image-wrap {
    width: min(340px, 82vw);

    aspect-ratio: 0.78;
  }

  .tis-trigger-image-shape {
    width: 58px;
    height: 58px;

    right: -15px;
    bottom: 35px;
  }
}

/* ---------------------------------------------------------
   SMALL MOBILE
--------------------------------------------------------- */

@media (max-width: 420px) {
  .tis-trigger {
    padding: 55px 0 60px;
  }

  .tis-trigger-inner {
    width: calc(100% - 26px);

    gap: 38px;
  }

  .tis-trigger-title {
    font-size: 46px;
  }

  .tis-trigger-lead {
    font-size: 15px;
  }

  .tis-trigger-description {
    font-size: 13px;
  }

  .tis-trigger-point h3 {
    font-size: 17px;
  }

  .tis-trigger-point p {
    font-size: 12.5px;
  }

  .tis-trigger-image-wrap {
    width: 78vw;
  }
}

/* ---------------------------------------------------------
   REDUCED MOTION
--------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .tis-trigger-point,
  .tis-trigger-point > span,
  .tis-trigger-point h3,
  .tis-trigger-image {
    transition: none;
  }
}
/* =========================================================
   SECTION 08 — RESPONSE
========================================================= */

.tis08x-response {
  position: relative;
  overflow: hidden;

  min-height: 540px;

  display: flex;
  align-items: center;

  padding: 60px 0 65px;

  background:
    radial-gradient(
      circle at 75% 45%,
      rgba(194, 138, 43, 0.1),
      transparent 34%
    ),
    linear-gradient(135deg, #ebe5d9 0%, #f3efe8 55%, #e8e0d2 100%);

  color: var(--tis-black);
}

/* =========================================================
   WIDER CONTAINER
========================================================= */

.tis08x-container {
  position: relative;
  z-index: 5;

  width: min(1240px, calc(100% - 70px));

  margin: 0 auto;

  text-align: center;
}

/* =========================================================
   SECTION LABEL
========================================================= */

.tis08x-label {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 14px;

  margin-bottom: 28px;

  color: var(--tis-brown);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.tis08x-label i {
  width: 55px;
  height: 1px;

  background: var(--tis-gold);
}

.tis08x-label strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

/* =========================================================
   CONTENT
========================================================= */

.tis08x-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* =========================================================
   TITLE
========================================================= */

.tis08x-title {
  width: 100%;
  max-width: 1120px;

  margin: 0 auto;

  color: var(--tis-black);

  font-family: "DM Sans", "Inter", Arial, sans-serif;

  font-size: clamp(46px, 6vw, 60px);
  font-weight: 500;
  line-height: 0.64;

  letter-spacing: -0.065em;
}

/* GOLDEN PART */

.tis08x-title em {
  display: block;

  margin-top: 8px;

  color: var(--tis-gold);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 0.94em;

  font-weight: 400;

  font-style: italic;

  line-height: 1.02;

  letter-spacing: -0.045em;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.tis08x-description {
  width: 100%;
  max-width: 650px;

  margin: 27px auto 0;

  color: rgba(16, 16, 15, 0.64);

  font-size: 15px;

  line-height: 1.75;
}

/* =========================================================
   BUTTON
========================================================= */

.tis08x-button {
  display: inline-flex;
  align-items: center;

  gap: 17px;

  min-height: 56px;

  margin-top: 27px;

  padding: 6px 7px 6px 25px;

  border-radius: 50px;

  background: var(--tis-black);

  color: var(--tis-white);

  text-decoration: none;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.09em;

  text-transform: uppercase;

  box-shadow: 0 15px 35px rgba(16, 16, 15, 0.14);

  transition:
    transform 0.4s ease,
    background 0.35s ease,
    box-shadow 0.4s ease;
}

.tis08x-button b {
  display: grid;
  place-items: center;

  width: 43px;
  height: 43px;

  border-radius: 50%;

  background: var(--tis-gold);

  color: var(--tis-black);

  font-size: 18px;
  font-weight: 400;
  font-style: normal;

  transition: transform 0.4s ease;
}

.tis08x-button:hover {
  transform: translateY(-4px);

  background: var(--tis-black-soft);

  box-shadow: 0 20px 45px rgba(16, 16, 15, 0.18);
}

.tis08x-button:hover b {
  transform: rotate(45deg);
}

/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.tis08x-glow {
  position: absolute;

  width: 500px;
  height: 500px;

  right: -180px;
  top: 50%;

  transform: translateY(-50%);

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(194, 138, 43, 0.12),
    transparent 68%
  );

  pointer-events: none;
}

.tis08x-ring {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}

.tis08x-ring-one {
  width: 520px;
  height: 520px;

  right: -280px;
  top: 50%;

  transform: translateY(-50%);

  border: 1px solid rgba(194, 138, 43, 0.18);
}

.tis08x-ring-two {
  width: 390px;
  height: 390px;

  right: -210px;
  top: 50%;

  transform: translateY(-50%);

  border: 1px solid rgba(194, 138, 43, 0.11);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .tis08x-response {
    min-height: 510px;
    padding: 55px 0 60px;
  }

  .tis08x-container {
    width: min(900px, calc(100% - 50px));
  }

  .tis08x-title {
    max-width: 850px;

    font-size: clamp(48px, 7vw, 70px);
  }

  .tis08x-description {
    max-width: 600px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
  .tis08x-response {
    min-height: auto;

    padding: 55px 0 60px;
  }

  .tis08x-container {
    width: calc(100% - 28px);
  }

  .tis08x-label {
    gap: 10px;

    margin-bottom: 23px;

    font-size: 9px;

    letter-spacing: 0.14em;
  }

  .tis08x-label i {
    width: 35px;
  }

  .tis08x-label strong {
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .tis08x-title {
    max-width: 100%;

    font-size: clamp(38px, 40px, 55px);

    line-height: 0.97;
  }

  .tis08x-title em {
    margin-top: 7px;

    font-size: 0.94em;

    line-height: 1.04;
  }

  .tis08x-description {
    max-width: 480px;

    margin-top: 22px;

    font-size: 13px;

    line-height: 1.7;
  }

  .tis08x-button {
    margin-top: 24px;

    min-height: 53px;

    padding-left: 21px;

    font-size: 9px;
  }

  .tis08x-button b {
    width: 41px;
    height: 41px;

    font-size: 16px;
  }

  .tis08x-glow {
    width: 300px;
    height: 300px;

    right: -190px;
  }

  .tis08x-ring-one {
    width: 350px;
    height: 350px;

    right: -240px;
  }

  .tis08x-ring-two {
    width: 270px;
    height: 270px;

    right: -200px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {
  .tis08x-title {
    font-size: 38px;
  }

  .tis08x-description {
    font-size: 12.5px;
  }
}
/* =========================================================
   THE INNER SHIFT — SECTION 11
   FAQ / CLARITY
========================================================= */

.tis-faq11 {
  position: relative;
  overflow: hidden;
  padding: 85px 0 70px;
  background:
    radial-gradient(
      circle at 82% 35%,
      rgba(194, 138, 43, 0.055),
      transparent 30%
    ),
    var(--tis-cream);
  color: var(--tis-black);
}

/* =========================================================
   BACKGROUND GHOST
========================================================= */

.tis-faq11__ghost {
  position: absolute;
  right: -5%;
  top: 42%;
  transform: translateY(-50%);
  font-size: clamp(170px, 23vw, 340px);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 0.7;
  color: rgba(16, 16, 15, 0.018);
  pointer-events: none;
  user-select: none;
}

/* =========================================================
   WRAPPER
========================================================= */

.tis-faq11__wrap {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 70px));
  margin: 0 auto;
}

/* =========================================================
   TOP LABEL
========================================================= */

.tis-faq11__top {
  display: flex;
  align-items: center;
  margin-bottom: 58px;
}

.tis-faq11__marker {
  display: flex;
  align-items: center;
  gap: 15px;
}

.tis-faq11__marker span {
  color: var(--tis-gold);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.tis-faq11__marker i {
  width: 45px;
  height: 1px;
  background: rgba(194, 138, 43, 0.55);
}

.tis-faq11__marker small {
  color: var(--tis-brown);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

/* =========================================================
   INTRO
========================================================= */

.tis-faq11__intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 52px;
}

/* BEFORE WE BEGIN — REMOVED */

.tis-faq11__eyebrow {
  display: none;
}

.tis-faq11__intro h2 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(50px, 5.7vw, 60px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.tis-faq11__intro h2 em {
  display: block;
  margin-top: 4px;
  color: var(--tis-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
}

.tis-faq11__intro > p {
  max-width: 430px;
  margin: 0 0 5px;
  color: #62605b;
  font-size: 17px;
  line-height: 1.8;
}

/* =========================================================
   FAQ LIST
========================================================= */

.tis-faq11__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* =========================================================
   FAQ ITEM
========================================================= */

.tis-faq11__item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 1px 0 rgba(16, 16, 15, 0.035),
    inset 0 0 0 1px rgba(16, 16, 15, 0.045);
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s ease;
}

.tis-faq11__item:hover {
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 12px 35px rgba(16, 16, 15, 0.055),
    inset 0 0 0 1px rgba(194, 138, 43, 0.16);
  transform: translateY(-2px);
}

/* =========================================================
   QUESTION
========================================================= */

.tis-faq11__question {
  width: 100%;
  min-height: 76px;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 45px 1fr 40px;
  align-items: center;
  gap: 18px;

  border: 0;
  background: transparent;
  color: var(--tis-black);

  text-align: left;
  cursor: pointer;
}

/* Number */

.tis-faq11__number {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: rgba(194, 138, 43, 0.1);

  color: var(--tis-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

/* Question text */

.tis-faq11__question-text {
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.025em;

  transition:
    color 0.3s ease,
    transform 0.35s ease;
}

.tis-faq11__question:hover .tis-faq11__question-text {
  color: var(--tis-gold);
  transform: translateX(3px);
}

/* =========================================================
   PLUS / MINUS
========================================================= */

.tis-faq11__icon {
  position: relative;

  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: rgba(194, 138, 43, 0.08);

  transition:
    background 0.35s ease,
    transform 0.45s ease;
}

.tis-faq11__icon i {
  position: absolute;

  width: 11px;
  height: 1.5px;

  background: var(--tis-gold);

  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.tis-faq11__icon i:last-child {
  transform: rotate(90deg);
}

/* OPEN */

.tis-faq11__item.is-open .tis-faq11__number {
  background: var(--tis-gold);
  color: var(--tis-black);
  transform: scale(1.04);
}

.tis-faq11__item.is-open .tis-faq11__icon {
  background: var(--tis-gold);
  transform: rotate(45deg);
}

.tis-faq11__item.is-open .tis-faq11__icon i {
  background: var(--tis-black);
}

/* =========================================================
   ANSWER
========================================================= */

.tis-faq11__answer {
  display: grid;
  grid-template-rows: 0fr;

  transition: grid-template-rows 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.tis-faq11__answer > div {
  min-height: 0;
  overflow: hidden;

  max-width: 760px;

  margin-left: 87px;
  padding-right: 65px;

  color: #64615b;

  font-size: 14px;
  line-height: 1.8;

  opacity: 0;
  transform: translateY(-7px);

  transition:
    opacity 0.35s ease,
    transform 0.45s ease,
    padding 0.45s ease;
}

/* OPEN ANSWER */

.tis-faq11__item.is-open .tis-faq11__answer {
  grid-template-rows: 1fr;
}

.tis-faq11__item.is-open .tis-faq11__answer > div {
  padding-bottom: 24px;
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   EXTRA FAQ
========================================================= */

.tis-faq11__extra {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

.tis-faq11__list.show-all .tis-faq11__extra {
  display: block;
  animation: faq11ExtraReveal 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

@keyframes faq11ExtraReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   VIEW ALL BUTTON
========================================================= */

.tis-faq11__more {
  display: flex;
  justify-content: center;

  padding: 34px 0 5px;
}

.tis-faq11__more-btn {
  display: inline-flex;
  align-items: center;
  gap: 13px;

  padding: 0;

  border: 0;
  background: transparent;

  color: var(--tis-black);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;

  cursor: pointer;
}

.tis-faq11__more-btn b {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: rgba(194, 138, 43, 0.1);

  color: var(--tis-gold);

  font-size: 18px;
  font-weight: 400;

  transition:
    transform 0.4s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.tis-faq11__more-btn:hover b {
  background: var(--tis-gold);
  color: var(--tis-black);
  transform: rotate(90deg);
}

/* SHOW LESS */

.tis-faq11__list.show-all ~ .tis-faq11__more .tis-faq11__more-btn b {
  transform: rotate(45deg);
}

.tis-faq11__list.show-all ~ .tis-faq11__more .tis-faq11__more-btn span {
  font-size: 0;
}

.tis-faq11__list.show-all ~ .tis-faq11__more .tis-faq11__more-btn span::after {
  content: "SHOW LESS";
  font-size: 10px;
}

/* =========================================================
   BOTTOM — REMOVED
   Keeping selector harmless in case HTML remains.
========================================================= */

.tis-faq11__bottom {
  display: none;
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {
  .tis-faq11 {
    padding: 75px 0 60px;
  }

  .tis-faq11__wrap {
    width: min(100% - 45px, 760px);
  }

  .tis-faq11__top {
    margin-bottom: 48px;
  }

  .tis-faq11__intro {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 42px;
  }

  .tis-faq11__intro h2 {
    max-width: 700px;
  }

  .tis-faq11__intro > p {
    max-width: 600px;
  }

  .tis-faq11__ghost {
    right: -15%;
    opacity: 0.7;
  }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 600px) {
  .tis-faq11 {
    padding: 65px 0 50px;
  }

  .tis-faq11__wrap {
    width: calc(100% - 28px);
  }

  /* TOP */

  .tis-faq11__top {
    margin-bottom: 38px;
  }

  .tis-faq11__marker {
    gap: 11px;
  }

  .tis-faq11__marker span {
    font-size: 25px;
  }

  .tis-faq11__marker i {
    width: 30px;
  }

  .tis-faq11__marker small {
    font-size: 8px;
    letter-spacing: 0.16em;
  }

  /* INTRO */

  .tis-faq11__intro {
    gap: 20px;
    margin-bottom: 34px;
  }

  .tis-faq11__intro h2 {
    font-size: clamp(42px, 45px, 58px);
    line-height: 0.95;
    letter-spacing: -0.06em;
  }

  .tis-faq11__intro h2 em {
    margin-top: 3px;
  }

  .tis-faq11__intro > p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* FAQ */

  .tis-faq11__list {
    gap: 8px;
  }

  .tis-faq11__item {
    border-radius: 13px;
  }

  .tis-faq11__question {
    min-height: 68px;
    padding: 0 14px;

    grid-template-columns: 35px 1fr 34px;
    gap: 10px;
  }

  .tis-faq11__number {
    width: 30px;
    height: 30px;
    font-size: 9px;
  }

  .tis-faq11__question-text {
    font-size: 16px;
    line-height: 1.3;
  }

  .tis-faq11__icon {
    width: 30px;
    height: 30px;
  }

  .tis-faq11__icon i {
    width: 10px;
  }

  /* ANSWER */

  .tis-faq11__answer > div {
    margin-left: 59px;
    padding-right: 18px;

    font-size: 13.5px;
    line-height: 1.75;
  }

  .tis-faq11__item.is-open .tis-faq11__answer > div {
    padding-bottom: 20px;
  }

  /* VIEW MORE */

  .tis-faq11__more {
    padding-top: 27px;
  }

  .tis-faq11__more-btn {
    font-size: 8px;
    letter-spacing: 0.14em;
  }

  .tis-faq11__more-btn b {
    width: 32px;
    height: 32px;
  }

  /* GHOST */

  .tis-faq11__ghost {
    font-size: 130px;
    right: -25%;
    top: 48%;
  }
}

/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 380px) {
  .tis-faq11__wrap {
    width: calc(100% - 22px);
  }

  .tis-faq11__marker small {
    font-size: 7px;
  }

  .tis-faq11__intro h2 {
    font-size: 40px;
  }

  .tis-faq11__question {
    grid-template-columns: 32px 1fr 30px;
    gap: 8px;
    padding: 0 11px;
  }

  .tis-faq11__question-text {
    font-size: 15px;
  }

  .tis-faq11__number {
    width: 28px;
    height: 28px;
  }

  .tis-faq11__icon {
    width: 28px;
    height: 28px;
  }

  .tis-faq11__answer > div {
    margin-left: 50px;
    padding-right: 12px;
    font-size: 13px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .tis-faq11__item,
  .tis-faq11__question-text,
  .tis-faq11__number,
  .tis-faq11__icon,
  .tis-faq11__icon i,
  .tis-faq11__answer,
  .tis-faq11__answer > div,
  .tis-faq11__more-btn b {
    transition: none !important;
  }

  .tis-faq11__extra {
    animation: none !important;
  }
}
/* ========================================================= SECTION 12 — FINAL CTA ========================================================= */
.shift12__cta {
  position: relative;
  overflow: hidden;
  padding: 15px 0 40px;
  background: #10100f;
  color: #f7f5f1;
}
/* INNER */
.shift12__inner {
  position: relative;
  z-index: 5;
  width: min(1100px, calc(100% - 70px));
  min-height: 470px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* GOLD GLOW */
.shift12__glow {
  position: absolute;
  width: 650px;
  height: 650px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(194, 138, 43, 0.16),
    transparent 67%
  );
  pointer-events: none;
}
/* RINGS */
.shift12__rings {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 620px;
  height: 620px;
  transform: translate(-50%, -50%) rotate(-15deg);
  border: 1px solid rgba(194, 138, 43, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(194, 138, 43, 0.025),
    0 0 0 140px rgba(194, 138, 43, 0.018);
  pointer-events: none;
  animation: shift12Orbit 14s linear infinite;
}
@keyframes shift12Orbit {
  from {
    transform: translate(-50%, -50%) rotate(-15deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(345deg);
  }
}
/* TOP */
.shift12__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shift12__marker {
  display: flex;
  align-items: center;
  gap: 15px;
}
.shift12__marker span {
  color: #c28a2b;
  font-size: 34px;
  font-weight: 300;
}
.shift12__marker i {
  width: 65px;
  height: 1px;
  background: #c28a2b;
}
.shift12__marker small {
  color: rgba(247, 245, 241, 0.5);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
}
.shift12__top > span {
  color: rgba(247, 245, 241, 0.25);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
/* CENTER */
.shift12__center {
  position: relative;
  z-index: 5;
  max-width: 850px;
  margin: 100px auto 90px;
  text-align: center;
}
.shift12__eyebrow {
  margin: 0 0 25px;
  color: #c28a2b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.25em;
}
.shift12__center h2 {
  margin: 0;
  font-size: clamp(45px, 9vw, 70px);
  line-height: 0.83;
  font-weight: 500;
  letter-spacing: -0.08em;
}
.shift12__center h2 em {
  color: #c28a2b;
  font-family: Georgia, serif;
  font-weight: 400;
}
.shift12__description {
  max-width: 520px;
  margin: 35px auto 0;
  color: rgba(247, 245, 241, 0.52);
  font-size: 18px;
  line-height: 1.8;
}
/* ACTIONS */
.btnherohome .shift12__actions {
  display: flex;
  align-items: center;
  justify-content: left;
}
.shift12__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
/* PRIMARY */
.shift12__primary {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 6px 8px 6px 24px;
  border-radius: 50px;
  background: #f7f5f1;
  color: #10100f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}
.shift12__primary b {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #c28a2b;
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.35s ease;
}
.shift12__primary:hover {
  background: #c28a2b;
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(194, 138, 43, 0.2);
}
.shift12__primary:hover b {
  transform: rotate(45deg);
}
/* =========================================================
   THE INNER SHIFT — FOOTER 26
   Premium 4-Column Footer
   ========================================================= */

.tis-footer26 {
  position: relative;
  overflow: hidden;
  width: 100%;
  background:
    radial-gradient(circle at 88% 8%, rgba(194, 138, 43, 0.1), transparent 24%),
    radial-gradient(
      circle at 28% 100%,
      rgba(194, 138, 43, 0.045),
      transparent 30%
    ),
    #11110f;
  color: #f5f1e9;
  padding: 78px 0 0;
  isolation: isolate;
}

/* =========================================================
   BACKGROUND GLOW
   ========================================================= */

.tis-footer26__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -260px;
  top: -260px;
  border-radius: 50%;
  background: rgba(194, 138, 43, 0.08);
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
}

/* =========================================================
   MAIN WRAPPER
   ========================================================= */

.tis-footer26__wrap {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 90px));
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(250px, 1.35fr)
    minmax(150px, 0.72fr)
    minmax(230px, 0.95fr)
    minmax(270px, 0.95fr);

  gap: 70px;
  align-items: start;
}

/* =========================================================
   COMMON HEADING
   ========================================================= */

.tis-footer26__heading {
  display: block;
  margin-bottom: 28px;
  margin-top: 13px;
  color: #c28a2b;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* =========================================================
   COLUMN 01 — BRAND
   ========================================================= */

.tis-footer26__brand {
  min-width: 0;
}

/* LOGO */

.tis-footer26__logo {
  display: inline-flex;
  align-items: center;
  gap: 17px;

  color: #fff;
  text-decoration: none;
}

.tis-footer26__logo-mark {
  width: 74px;
  height: 74px;
  flex: 0 0 74px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(194, 138, 43, 0.55);
  border-radius: 50%;

  background: #f5f1e9;
  overflow: hidden;

  box-shadow:
    0 0 0 5px rgba(194, 138, 43, 0.06),
    0 10px 35px rgba(0, 0, 0, 0.3);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.tis-footer26__logo:hover .tis-footer26__logo-mark {
  transform: rotate(-5deg) scale(1.04);

  box-shadow:
    0 0 0 7px rgba(194, 138, 43, 0.07),
    0 14px 40px rgba(0, 0, 0, 0.35);
}

.tis-footer26__logo-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* LOGO TEXT */

.tis-footer26__logo-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tis-footer26__logo-text strong {
  display: block;

  color: #f5f1e9;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.tis-footer26__logo-text strong em {
  color: #c28a2b;
  font-style: normal;
}

.tis-footer26__logo-text small {
  font-size: 10px;
  color: #ffffff;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* DESCRIPTION */

.tis-footer26__description {
  max-width: 400px;

  margin: 17px 0 20px;

  color: rgba(245, 241, 233, 0.68);
  font-size: 15px;
  line-height: 1.8;
}

/* LOCATION */

.tis-footer26__location {
  display: flex;
  align-items: center;
  gap: 15px;

  max-width: 440px;
  padding: 17px 19px;

  border: 1px solid rgba(245, 241, 233, 0.1);
  border-radius: 18px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.01)
  );

  transition:
    border-color 0.35s ease,
    transform 0.35s ease,
    background 0.35s ease;
}

.tis-footer26__location:hover {
  transform: translateY(-3px);
  border-color: rgba(194, 138, 43, 0.35);

  background: linear-gradient(
    135deg,
    rgba(194, 138, 43, 0.08),
    rgba(255, 255, 255, 0.015)
  );
}

.tis-footer26__location-icon {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: rgba(194, 138, 43, 0.13);

  color: #c28a2b;
  font-size: 16px;
}

.tis-footer26__location small {
  display: block;
  margin-bottom: 5px;

  color: #c28a2b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.tis-footer26__location p {
  margin: 0;

  color: rgba(245, 241, 233, 0.72);
  font-size: 17px;
  line-height: 1.55;
}

/* =========================================================
   COLUMN 02 — QUICK LINKS
   ========================================================= */

.tis-footer26__links {
  display: flex;
  flex-direction: column;
}

.tis-footer26__links > a {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  max-width: 190px;

  padding: 8px 0;

  color: rgba(245, 241, 233, 0.72);
  font-size: 15px;
  font-weight: 600;

  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.tis-footer26__links > a:first-of-type {
  padding-top: 0;
}

.tis-footer26__links > a:hover {
  color: #c28a2b;
  transform: translateX(5px);
}

.tis-footer26__links > a i {
  color: #c28a2b;
  font-size: 14px;
  font-style: normal;

  opacity: 0;
  transform: translateX(-5px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.tis-footer26__links > a:hover i {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================================
   COLUMN 03 — CONTACT
   ========================================================= */

.tis-footer26__contact {
  min-width: 0;
}

.tis-footer26__contact-item {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 19px;

  color: inherit;
  text-decoration: none;
}

.tis-footer26__contact-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(194, 138, 43, 0.25);
  border-radius: 50%;

  background: rgba(194, 138, 43, 0.08);

  color: #c28a2b;
  font-size: 14px;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.tis-footer26__contact-item:hover .tis-footer26__contact-icon {
  background: #c28a2b;
  color: #11110f;
  transform: scale(1.07);
}

.tis-footer26__contact-copy {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tis-footer26__contact-copy small {
  color: var(--tis-gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.tis-footer26__contact-copy strong {
  color: rgba(245, 241, 233, 0.82);

  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;

  overflow-wrap: anywhere;

  transition: color 0.3s ease;
}

.tis-footer26__contact-item:hover .tis-footer26__contact-copy strong {
  color: #c28a2b;
}

/* =========================================================
   SOCIAL
   ========================================================= */

.tis-footer26__social-wrap {
  margin-top: 25px;
  padding-top: 22px;

  border-top: 1px solid rgba(245, 241, 233, 0.09);
}

.tis-footer26__social-wrap > span {
  display: block;
  margin-bottom: 14px;

  color: rgba(245, 241, 233, 0.38);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.tis-footer26__social {
  display: flex;
  align-items: center;
  gap: 9px;
}

.tis-footer26__social a {
  width: 37px;
  height: 37px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(194, 138, 43, 0.23);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.035);

  color: rgba(245, 241, 233, 0.75);
  font-size: 13px;

  text-decoration: none;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}

.tis-footer26__social a:hover {
  background: #c28a2b;
  border-color: #c28a2b;
  color: #11110f;
  transform: translateY(-4px);
}

/* =========================================================
   COLUMN 04 — CTA
   ========================================================= */

.tis-footer26__cta {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 35px 18px;
}

/* CTA TEXT */

.tis-footer26__cta p {
  position: relative;

  max-width: 250px;
  margin: 0;

  color: rgba(245, 241, 233, 0.88);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.35;
}

/* CTA BUTTON */

.tis-footer26__cta-button {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  width: 100%;
  min-height: 51px;

  padding: 6px 8px 6px 19px;

  border-radius: 50px;

  background: var(--tis-gold);
  color: #ffffff;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;

  text-decoration: none;

  box-shadow: 0 10px 30px rgba(194, 138, 43, 0.14);

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.tis-footer26__cta-button span {
  white-space: nowrap;
}

.tis-footer26__cta-button i {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #ffffff;
  color: #c28a2b;

  font-size: 15px;
  font-style: normal;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.tis-footer26__cta-button:hover {
  transform: translateY(-3px);

  background: #d39a36;

  box-shadow: 0 15px 40px rgba(194, 138, 43, 0.24);
}

.tis-footer26__cta-button:hover i {
  transform: rotate(45deg);
  background: #fff;
  color: #11110f;
}

/* =========================================================
   BOTTOM BAR
   ========================================================= */

.tis-footer26__bottom {
  position: relative;
  z-index: 2;

  width: min(1320px, calc(100% - 90px));

  margin: 35px auto 0;
  padding: 24px 0 28px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;

  border-top: 1px solid rgba(194, 138, 43, 0.25);
}
.inr {
  color: var(--tis-gold);
}

/* COPYRIGHT */

.tis-footer26__copyright {
  color: rgba(245, 241, 233, 0.48);
  font-size: 13px;
  line-height: 1.5;
}

/* LEGAL */

.tis-footer26__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.tis-footer26__legal a {
  color: rgba(245, 241, 233, 0.48);

  font-size: 13px;
  text-decoration: none;

  transition: color 0.3s ease;
}

.tis-footer26__legal a:hover {
  color: #c28a2b;
}

.tis-footer26__legal span {
  width: 3px;
  height: 3px;

  border-radius: 50%;
  background: #c28a2b;
}

/* DEVELOPER */

.tis-footer26__developer {
  justify-self: end;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: rgba(245, 241, 233, 0.48);

  font-size: 13px;
  text-decoration: none;

  transition: color 0.3s ease;
}

.tis-footer26__developer span {
  white-space: nowrap;
}

.tis-footer26__developer strong {
  color: #c28a2b;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;

  white-space: nowrap;
}

.tis-footer26__developer i {
  color: #c28a2b;
  font-size: 13px;
  font-style: normal;

  transition: transform 0.35s ease;
}

.tis-footer26__developer:hover {
  color: #fff;
}

.tis-footer26__developer:hover i {
  transform: translate(3px, -3px);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1150px) {
  .tis-footer26 {
    padding-top: 65px;
  }

  .tis-footer26__wrap {
    width: min(1050px, calc(100% - 60px));

    grid-template-columns:
      1.25fr
      0.75fr
      1fr;

    gap: 55px;
  }

  .tis-footer26__cta {
    grid-column: 1 / -1;

    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;

    text-align: left;
    padding: 28px 35px;
  }

  .tis-footer26__cta p {
    max-width: 480px;
  }
  .tis-footer26__cta-button {
    width: auto;
    min-width: 235px;
  }

  .tis-footer26__bottom {
    width: min(1050px, calc(100% - 60px));
  }
}

/* =========================================================
   SMALL TABLET
   ========================================================= */

@media (max-width: 800px) {
  .tis-footer26__wrap {
    grid-template-columns: 1fr 1fr;
    gap: 48px 45px;
  }

  .tis-footer26__brand {
    grid-column: 1 / -1;
  }

  .tis-footer26__links,
  .tis-footer26__contact {
    grid-column: span 1;
  }

  .tis-footer26__cta {
    grid-column: 1 / -1;
    display: flex;
    text-align: center;
  }

  .tis-footer26__cta-button {
    width: min(100%, 280px);
  }

  .tis-footer26__bottom {
    grid-template-columns: 1fr;
    justify-items: center;

    text-align: center;

    gap: 15px;
  }

  .tis-footer26__developer {
    justify-self: center;
  }
  .shift12__primary {
    font-size: 10px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .tis-footer26 {
    padding-top: 55px;
  }

  .tis-footer26__wrap {
    width: calc(100% - 34px);

    display: flex;
    flex-direction: column;

    gap: 42px;
  }

  /* BRAND */

  .tis-footer26__logo {
    gap: 13px;
  }

  .tis-footer26__logo-mark {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .tis-footer26__logo-text strong {
    font-size: 18px;
  }

  .tis-footer26__logo-text small {
    font-size: 11px;
  }

  .tis-footer26__description {
    margin: 22px 0 25px;

    font-size: 13px;
    line-height: 1.75;
  }

  /* LOCATION */

  .tis-footer26__location {
    padding: 15px;
    border-radius: 16px;
  }

  .tis-footer26__location-icon {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }

  .tis-footer26__location p {
    font-size: 11px;
  }

  /* HEADINGS */

  .tis-footer26__heading {
    margin-bottom: 20px;
    font-size: 9px;
  }

  /* LINKS */

  .tis-footer26__links > a {
    max-width: 100%;

    padding: 7px 0;

    font-size: 14px;
  }

  .tis-footer26__links > a i {
    opacity: 1;
    transform: none;
    padding-left: 12px;
  }

  /* CONTACT */

  .tis-footer26__contact-item {
    margin-bottom: 16px;
  }

  .tis-footer26__contact-icon {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }

  .tis-footer26__contact-copy strong {
    font-size: 12px;
  }

  /* SOCIAL */

  .tis-footer26__social-wrap {
    margin-top: 22px;
  }

  .tis-footer26__social a {
    width: 38px;
    height: 38px;
  }

  /* CTA */

  .tis-footer26__cta {
    padding: 10px 10px;

    border-radius: 21px;
  }

  .tis-footer26__cta p {
    font-size: 19px;
  }

  .tis-footer26__cta-button {
    min-height: 52px;
  }

  /* BOTTOM */

  .tis-footer26__bottom {
    width: calc(100% - 34px);

    margin-top: 45px;
    padding: 22px 0 25px;

    gap: 14px;
  }

  .tis-footer26__copyright {
    font-size: 10px;
  }

  .tis-footer26__legal {
    gap: 10px;
  }

  .tis-footer26__legal a {
    font-size: 9px;
  }

  .tis-footer26__developer {
    font-size: 8px;
  }

  .tis-footer26__developer strong {
    font-size: 9px;
  }
}

/* =========================================================
   VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 380px) {
  .tis-footer26__logo-text strong {
    font-size: 16px;
  }

  .tis-footer26__logo-mark {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .tis-footer26__cta p {
    font-size: 17px;
  }

  .tis-footer26__cta-button {
    font-size: 11px;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .tis-footer26 *,
  .tis-footer26 *::before,
  .tis-footer26 *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* contact us css */

/* =========================================================
   02 — CONTACT REACH
========================================================= */

.contact-reach {
  position: relative;

  width: 100%;

  padding: 115px 0 125px;

  background: #ffffff;

  color: #1d1a17;

  overflow: hidden;
}

.contact-reach-bg-number {
  position: absolute;

  right: -35px;
  top: 25px;

  color: rgba(185, 131, 45, 0.035);

  font-family: Georgia, serif;

  font-size: 430px;
  font-weight: 400;

  line-height: 0.75;

  pointer-events: none;
  user-select: none;
}

.contact-reach-container {
  position: relative;
  z-index: 2;

  width: min(1180px, calc(100% - 90px));

  margin: 0 auto;

  display: grid;

  grid-template-columns: 0.84fr 1.16fr;

  gap: 85px;

  align-items: center;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.contact-reach-intro {
  width: 100%;
}

.contact-section-label {
  display: block;

  margin-bottom: 29px;

  color: #a97829;

  font-family: "DM Sans", sans-serif;

  font-size: 13px;

  font-weight: 700;

  line-height: 1.2;

  letter-spacing: 0.24em;

  text-transform: uppercase;
}

.contact-reach-intro h2 {
  margin: 0;

  color: #1d1a17;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(58px, 6vw, 70px);
  font-weight: 400;
  line-height: 1.3;

  letter-spacing: -0.065em;
}

.contact-reach-intro h2 em {
  display: block;

  color: #b9832d;

  font-style: italic;

  font-weight: 400;
}

.contact-reach-text {
  max-width: 410px;

  margin: 34px 0 0;

  color: #655e56;

  font-family: "DM Sans", sans-serif;

  font-size: 20px;

  line-height: 1.82;
}

/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-details {
  width: 100%;

  margin-top: 48px;

  border-top: 1px solid rgba(35, 30, 25, 0.13);
}

/* EMAIL ITEM */
.contact-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 105px;
  padding: 22px 4px;
  box-sizing: border-box;
  gap: 25px;
  border-bottom: 1px solid rgba(35, 30, 25, 0.13);
  color: #292520;
  text-decoration: none;
  transition:
    padding 0.35s ease,
    background 0.35s ease;
}
.contact-detail-content {
  min-width: 0;
}
.contact-detail:hover {
  padding-left: 9px;

  background: rgba(185, 131, 45, 0.035);
}

.contact-detail small {
  display: block;

  margin-bottom: 9px;

  color: #a97829;

  font-family: "DM Sans", sans-serif;

  font-size: 12px;

  font-weight: 700;

  line-height: 1.2;

  letter-spacing: 0.18em;
}
/* EMAIL ADDRESS */
.contact-detail strong {
  display: block;
  color: #292520;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 400;
  line-height: 1.3;
  word-break: break-word;
  transition: color 0.3s ease;
} /* ARROW */
.contact-detail > b {
  flex-shrink: 0;
  color: #b9832d;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s ease;
} /* HOVER */
.contact-detail:hover {
  padding-left: 12px;
  padding-right: 12px;
  background: rgba(185, 131, 45, 0.035);
}
.contact-detail:hover strong {
  color: #b9832d;
}
.contact-detail:hover > b {
  transform: translate(5px, -5px);
} /* ========================================================= TABLET ========================================================= */
@media (max-width: 900px) {
  .contact-detail {
    min-height: 95px;
  }
  .contact-detail strong {
    font-size: 22px;
  }
} /* ========================================================= MOBILE ========================================================= */
@media (max-width: 600px) {
  .contact-details {
    margin-top: 35px;
  }
  .contact-detail {
    min-height: auto;
    padding: 20px 2px;
    gap: 15px;
  }
  .contact-detail small {
    font-size: 9px;
    margin-bottom: 7px;
  }
  .contact-detail strong {
    font-size: 18px;
    line-height: 1.4;
  }
  .contact-detail > b {
    font-size: 20px;
  }
  .contact-detail:hover {
    padding-left: 7px;
    padding-right: 7px;
  }
} /* ========================================================= SMALL MOBILE ========================================================= */
@media (max-width: 380px) {
  .contact-detail strong {
    font-size: 16px;
  }
  .contact-detail {
    gap: 10px;
  }
}

/* =========================================================
   FORM CARD
========================================================= */

.contact-form-card {
  position: relative;

  width: 100%;

  box-sizing: border-box;

  padding: 45px 45px 42px;

  background: linear-gradient(145deg, #2a251f 0%, #211d18 50%, #1b1814 100%);

  border: 1px solid rgba(185, 131, 45, 0.48);

  border-radius: 5px;

  color: #f5efe6;

  box-shadow: 0 28px 75px rgba(38, 30, 21, 0.16);

  overflow: hidden;

  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.contact-form-card:hover {
  border-color: rgba(202, 157, 88, 0.7);

  box-shadow: 0 35px 85px rgba(38, 30, 21, 0.2);
}

/* INNER FRAME */

.contact-form-card::before {
  content: "";

  position: absolute;

  inset: 10px;

  border: 1px solid rgba(255, 255, 255, 0.075);

  border-radius: 3px;

  pointer-events: none;
}

/* GOLD CORNER */

.contact-form-card::after {
  content: "";

  position: absolute;

  top: 0;
  right: 0;

  width: 105px;
  height: 105px;

  border-top: 1px solid rgba(204, 158, 87, 0.9);

  border-right: 1px solid rgba(204, 158, 87, 0.9);

  pointer-events: none;
}

/* =========================================================
   FORM HEADER
========================================================= */

/* =========================================================
   FORM
========================================================= */

.contact-form {
  position: relative;
  z-index: 3;

  display: flex;

  flex-direction: column;

  gap: 14px;

  width: 100%;
}

.contact-form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;

  width: 100%;
}

/* =========================================================
   FIELD
========================================================= */

.contact-field {
  display: flex;

  flex-direction: column;

  gap: 9px;

  width: 100%;
}

.contact-field label {
  color: #c49a5b;

  font-family: "DM Sans", sans-serif;

  font-size: 12px;

  font-weight: 700;

  line-height: 1.25;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}

/* =========================================================
   INPUTS
========================================================= */

.contact-field input,
.contact-field select,
.contact-field textarea {
  display: block;

  width: 100%;

  box-sizing: border-box;

  padding: 9px 12px;

  border: 1px solid rgba(255, 255, 255, 0.16);

  border-radius: 3px;

  outline: none;

  background: rgba(255, 255, 255, 0.045);

  color: #f5efe7;

  font-family: "DM Sans", sans-serif;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.5;

  appearance: none;

  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

/* PLACEHOLDER */

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #7e766d;

  opacity: 1;
}

/* HOVER */

.contact-field input:hover,
.contact-field select:hover,
.contact-field textarea:hover {
  border-color: rgba(198, 154, 88, 0.55);

  background: rgba(255, 255, 255, 0.06);
}

/* FOCUS */

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #c39750;

  background: rgba(185, 131, 45, 0.065);

  box-shadow:
    0 0 0 3px rgba(185, 131, 45, 0.11),
    0 8px 25px rgba(0, 0, 0, 0.1);

  transform: translateY(-1px);
}

/* SELECT */

.contact-field select {
  color: #a49b91;

  cursor: pointer;

  background-color: rgba(255, 255, 255, 0.045);

  background-image:
    linear-gradient(45deg, transparent 50%, #b9832d 50%),
    linear-gradient(135deg, #b9832d 50%, transparent 50%);

  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;

  background-size:
    5px 5px,
    5px 5px;

  background-repeat: no-repeat;

  padding-right: 40px;
}

.contact-field select:focus {
  color: #f5efe7;
}

.contact-field select option {
  background: #27221c;

  color: #f5efe7;

  font-size: 14px;
}

/* TEXTAREA */

.contact-field textarea {
  min-height: 95px;
  padding: 10px 12px;
  resize: vertical;

  line-height: 1.7;
}

/* =========================================================
   SUBMIT
========================================================= */

.contact-submit {
  position: relative;
  z-index: 4;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 100%;

  min-height: 46px;

  margin-top: 2px;

  padding: 12px 18px;

  box-sizing: border-box;

  border: 1px solid #c3954f;

  border-radius: 3px;

  background: #b9832d;

  color: #ffffff;

  cursor: pointer;

  font-family: "DM Sans", sans-serif;

  font-size: 16px;

  font-weight: 700;

  line-height: 1;

  letter-spacing: 0.2em;

  text-transform: uppercase;

  overflow: hidden;

  transition:
    background 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* HIDE OLD ARROW */

.contact-submit b {
  display: none;
}

/* SHINE */

.contact-submit::before {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );

  transition: left 0.6s ease;
}

/* TEXT */

.contact-submit span {
  position: relative;

  z-index: 2;
}

/* HOVER */

.contact-submit:hover {
  background: transparent;

  color: #e0b36b;

  border-color: #c3954f;

  transform: translateY(-3px);

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.contact-submit:hover::before {
  left: 120%;
}

.contact-submit:active {
  transform: translateY(-1px);
}

/* =========================================================
   FORM SPACING
========================================================= */

.contact-form {
  gap: 21px;
}

/* QUESTION INPUTS */

.contact-field input {
  min-height: 42px;
}

/* QUESTION LABELS */

.contact-field label {
  line-height: 1.45;
}

/* SUBMIT */

.contact-submit {
  margin-top: 4px;
}

/* =========================================================
   03 — CLOSING
========================================================= */

.contact-closing {
  position: relative;

  width: 100%;

  min-height: 520px;

  display: flex;

  align-items: center;

  justify-content: center;

  box-sizing: border-box;

  background: #f1ece2;

  color: #1c1916;

  overflow: hidden;

  isolation: isolate;
}

.contact-closing-content {
  position: relative;
  z-index: 3;

  width: min(850px, calc(100% - 40px));

  text-align: center;
}

.contact-closing-content h2 {
  margin: 0;

  color: #1d1a17;

  font-size: clamp(50px, 8vw, 90px);

  font-weight: 500;

  line-height: 0.9;

  letter-spacing: -0.07em;
}

.contact-closing-content h2 em {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  color: #b9832d;

  font-style: italic;

  font-weight: 400;
}

.contact-closing-content p {
  margin: 31px auto 0;

  color: #756e64;

  font-family: "DM Sans", sans-serif;

  font-size: 18px;

  line-height: 1.7;
}

/* CLOSING DECORATION */

.contact-closing-ring {
  position: absolute;

  border: 1px solid rgba(185, 131, 45, 0.17);

  border-radius: 50%;

  pointer-events: none;

  z-index: -1;
}

.contact-closing-ring.ring-one {
  width: 570px;
  height: 570px;

  right: -250px;
  top: 50%;

  transform: translateY(-50%);
}

.contact-closing-ring.ring-two {
  width: 390px;
  height: 390px;

  left: -190px;
  top: 50%;

  transform: translateY(-50%);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {
  .contact-reach {
    padding: 90px 0 100px;
  }

  .contact-reach-container {
    width: calc(100% - 60px);

    grid-template-columns: 1fr;

    gap: 65px;
  }

  .contact-reach-intro {
    max-width: 700px;
  }

  .contact-details {
    max-width: 650px;
  }

  .contact-form-card {
    max-width: 760px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
  /* REACH */

  .contact-reach {
    padding: 78px 0 75px;
  }

  .contact-reach-container {
    width: calc(100% - 34px);

    gap: 52px;
  }

  .contact-reach-bg-number {
    right: -20px;

    top: 25px;

    font-size: 250px;
  }
  .contact-reach-intro h2 {
    font-size: 55px;
  }

  .contact-reach-text {
    margin-top: 27px;

    font-size: 13px;

    line-height: 1.75;
  }

  .contact-details {
    margin-top: 37px;
  }

  .contact-detail {
    grid-template-columns: 29px minmax(0, 1fr) 22px;

    min-height: 78px;

    gap: 10px;
  }

  .contact-detail strong {
    font-size: 15px;
  }

  /* FORM */

  .contact-form-card {
    padding: 34px 21px 32px;

    border-radius: 4px;
  }

  .contact-form-card::before {
    inset: 7px;
  }

  .contact-form-card::after {
    width: 68px;
    height: 68px;
  }

  .contact-form {
    gap: 14px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;

    gap: 23px;
  }

  .contact-field {
    gap: 8px;
  }

  .contact-field label {
    font-size: 8px;
  }

  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    padding: 8px;

    font-size: 12px;
  }

  .contact-field textarea {
    min-height: 110px;
  }

  .contact-submit {
    min-height: 54px;

    font-size: 9px;
  }

  /* CLOSING */

  .contact-closing {
    min-height: 470px;
  }

  .contact-closing-content {
    width: calc(100% - 30px);
  }

  .contact-closing-content h2 {
    font-size: clamp(51px, 14vw, 72px);
  }

  .contact-closing-content p {
    margin-top: 25px;

    font-size: 12px;
  }

  .contact-closing-ring.ring-one {
    width: 370px;
    height: 370px;

    right: -250px;
  }

  .contact-closing-ring.ring-two {
    width: 280px;
    height: 280px;

    left: -190px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
  .contact-reach-intro h2 {
    font-size: 49px;
  }

  .contact-form-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-closing-content h2 {
    font-size: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-reach *,
  .contact-closing * {
    transition: none !important;
    animation: none !important;
  }
}

/* =========================================================
   NEW HERO — DANNY-MORAL STYLE (Full-bleed BG + Lady PNG)
   ========================================================= */

.tis-hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  background: #0c0a08;
  color: #f7f5f1;
  display: flex;
  align-items: stretch;
}

.tis-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tis-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
  display: block;
}

.tis-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 6, 4, 0.92) 0%,
    rgba(12, 9, 6, 0.75) 35%,
    rgba(18, 12, 8, 0.45) 60%,
    rgba(20, 14, 8, 0.25) 100%
  );
  pointer-events: none;
}

.tis-hero-blur-layer {
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 6, 0.25);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  pointer-events: none;
}

.tis-hero-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  min-height: 100%;
  display: flex;
  align-items: stretch;
  padding: 0 40px;
}

.tis-hero-content {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  align-items: stretch;
  column-gap: 20px;
  min-height: 100%;
  padding: calc(var(--header-height, 92px) + 50px) 0 0;
}

.tis-hero-copy {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 40px;
  align-items: right;
  padding-bottom: 60px;
}

.tis-hero-copy h1 {
  margin: 0;
  color: #f7f5f1;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 650;
}

.tis-hero-copy h1 em {
  display: block;
  margin-top: 6px;
  padding-left: 0;
  color: var(--tis-gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95em;
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
}

.tis-heading-line {
  width: min(340px, 80%);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
}

.tis-heading-line span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 166, 77, 0.5));
}

.tis-heading-line span:last-child {
  background: linear-gradient(90deg, rgba(214, 166, 77, 0.5), transparent);
}

.tis-heading-line i {
  color: var(--tis-gold-light);
  font-size: 12px;
  font-style: normal;
}

.tis-hero-description {
  margin: 22px 0 0;
  color: rgba(247, 245, 241, 0.82);
  font-size: clamp(15px, 1.15vw, 20.5px);
  line-height: 1.65;
  max-width: 480px;
}

.tis-hero-description strong {
  color: #e8d5b5;
  font-weight: 600;
}

/* RIGHT VISUAL — full height, bottom-aligned */
.tis-hero-visual {
  position: relative;
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.tis-hero-lady {
  height: 100%;
  max-height: 100svh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom right;
  display: block;
  /* Ensure it reaches the very bottom of the section */
  margin-bottom: 0;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.45));
}

/* Transparent header over dark hero */
.site-header:not(.is-scrolled) .brand-inner {
  color: #f7f5f1;
}
.site-header:not(.is-scrolled) .brand-shift {
  color: var(--tis-gold-light);
}
.site-header:not(.is-scrolled) .nav-link {
  color: rgba(247, 245, 241, 0.87);
}
.site-header:not(.is-scrolled) .nav-link:hover,
.site-header:not(.is-scrolled) .nav-link.is-active {
  color: #ffffff;
}
.site-header:not(.is-scrolled) .nav-toggle {
  background: rgba(26, 21, 16, 0.72); /* deep warm dark */
  border-color: rgba(214, 166, 77, 0.35); /* soft gold border */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
}

.site-header:not(.is-scrolled) .nav-toggle span {
  background: #f7f5f1; /* cream lines */
}

/* Scrolled = white / cream */
.site-header.is-scrolled .brand-inner {
  color: var(--tis-black);
}
.site-header.is-scrolled .brand-shift {
  color: var(--tis-gold);
}
.site-header.is-scrolled .nav-link {
  color: rgba(16, 16, 15, 0.72);
}
.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link.is-active {
  color: var(--tis-black);
}

/* Responsive */
@media (max-width: 1100px) {
  .tis-hero-content {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-height, 92px) + 30px);
  }
  .tis-hero-visual {
    position: absolute;
    right: 0;
    bottom: 0;
    top: auto;
    height: 70%;
    width: 55%;
    opacity: 0.9;
  }
}

@media (max-width: 700px) {
  .tis-hero {
    height: auto;
    min-height: 100svh;
  }
  .tis-hero-inner {
    padding: 0 22px;
  }

  .tis-hero-content {
    grid-template-columns: 1fr;
    /* padding-bottom: 20px; */
  }
  .tis-hero-visual {
    position: relative;
    width: 100%;
    height: 550px;
    margin-top: 10px;
    opacity: 1;
  }
  .tis-hero-lady {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .tis-hero-copy h1 {
    font-size: clamp(36px, 10vw, 52px);
  }
  .tis-hero-copy {
    margin-top: 90px;
    max-width: 100%;
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
