.elementor-190 .elementor-element.elementor-element-29581c03{--display:flex;--margin-top:-21px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-190 .elementor-element.elementor-element-38bb83c4{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-690f2444 */@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Manrope:wght@400;500;600;700&display=swap");

.tau-hero,
.tau-hero * {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.tau-hero {
    --tau-black: #0C0C0D;
    --tau-surface: #171719;
    --tau-card: #222225;
    --tau-gold: #C6A15B;
    --tau-red: #6E1F2A;
    --tau-ivory: #F2EDE3;
    --tau-grey: #AAA6A0;
    --tau-border: #554731;

    position: relative;
    width: 100vw;
    min-height: 820px;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 80px 25px 105px;
    color: var(--tau-ivory);
    background:
        radial-gradient(
            circle at 12% 45%,
            rgba(110, 31, 42, 0.16),
            transparent 34%
        ),
        var(--tau-black);
    font-family: "Manrope", sans-serif;
}

.tau-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.025;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(
            135deg,
            #ffffff 0,
            #ffffff 1px,
            transparent 1px,
            transparent 7px
        );
}

.tau-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.91fr) minmax(0, 1.09fr);
    gap: 85px;
    align-items: center;
    width: 100%;
    max-width: 1320px;
    min-height: 650px;
    margin: 0 auto;
}

/* CONTENT */

.tau-content {
    max-width: 625px;
}

.tau-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 23px;
    color: var(--tau-gold);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tau-eyebrow span {
    flex: 0 0 44px;
    width: 44px;
    height: 1px;
    background: var(--tau-gold);
}

.tau-content h1 {
    margin: 0 0 29px;
    color: var(--tau-ivory);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(65px, 7vw, 96px);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -2px;
}

.tau-content h1 em {
    display: block;
    margin-top: 11px;
    color: var(--tau-gold);
    font-weight: 500;
}

.tau-content > p {
    max-width: 585px;
    margin: 0;
    color: var(--tau-grey);
    font-size: 18px;
    line-height: 1.85;
}

.tau-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 36px;
}

.tau-primary-button,
.tau-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 62px;
    padding: 17px 23px;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.tau-primary-button {
    color: var(--tau-black) !important;
    border: 1px solid var(--tau-gold);
    background: var(--tau-gold);
}

.tau-primary-button:hover {
    color: var(--tau-ivory) !important;
    border-color: var(--tau-red);
    background: var(--tau-red);
}

.tau-secondary-button {
    color: var(--tau-ivory) !important;
    border: 1px solid var(--tau-gold);
    background: transparent;
}

.tau-secondary-button:hover {
    color: var(--tau-black) !important;
    background: var(--tau-gold);
}

/* FEATURES */

.tau-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 48px;
    padding-top: 26px;
    border-top: 1px solid var(--tau-border);
}

.tau-features > div {
    min-width: 0;
    padding: 0 17px;
    border-right: 1px solid var(--tau-border);
}

.tau-features > div:first-child {
    padding-left: 0;
}

.tau-features > div:last-child {
    padding-right: 0;
    border-right: none;
}

.tau-features span {
    display: block;
    margin-bottom: 8px;
    color: var(--tau-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.tau-features p {
    margin: 0;
    color: var(--tau-ivory);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
}

/* IMAGE */

.tau-visual {
    position: relative;
    min-height: 660px;
    padding: 0 55px 55px 0;
}

.tau-main-image {
    position: relative;
    width: 100%;
    height: 660px;
    overflow: hidden;
    border: 1px solid var(--tau-border);
    background: var(--tau-surface);
}

.tau-main-image::before {
    content: "";
    position: absolute;
    z-index: 3;
    inset: 18px;
    border: 1px solid rgba(198, 161, 91, 0.45);
    pointer-events: none;
}

.tau-main-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.75) contrast(1.07);
    transition:
        transform 0.7s ease,
        filter 0.4s ease;
}

.tau-main-image:hover img {
    transform: scale(1.035);
    filter: saturate(0.92) contrast(1.08);
}

.tau-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 40%,
            rgba(12, 12, 13, 0.9) 100%
        );
}

.tau-image-caption {
    position: absolute;
    z-index: 4;
    right: 35px;
    bottom: 33px;
    left: 35px;
}

.tau-image-caption span {
    display: block;
    margin-bottom: 6px;
    color: var(--tau-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.tau-image-caption strong {
    display: block;
    color: var(--tau-ivory);
    font-family: "Cormorant Garamond", serif;
    font-size: 29px;
    font-weight: 600;
    line-height: 1.15;
}

/* LOCATION CARD */

.tau-location-card {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 0;
    width: 285px;
    padding: 27px 28px;
    border: 1px solid var(--tau-border);
    background: var(--tau-surface);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
}

.tau-location-card > span {
    display: block;
    margin-bottom: 8px;
    color: var(--tau-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.tau-location-card strong {
    display: block;
    margin-bottom: 9px;
    color: var(--tau-ivory);
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    font-weight: 600;
}

.tau-location-card p {
    margin: 0;
    color: var(--tau-grey);
    font-size: 13px;
    line-height: 1.65;
}

.tau-year {
    position: absolute;
    z-index: 5;
    top: 28px;
    left: -38px;
    min-width: 135px;
    padding: 17px 20px;
    color: var(--tau-ivory);
    border: 1px solid var(--tau-gold);
    background: var(--tau-black);
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
}

.tau-year span {
    display: block;
    margin-bottom: 4px;
    color: var(--tau-gold);
    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

/* SCROLL */

.tau-scroll {
    position: absolute;
    z-index: 5;
    bottom: 25px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--tau-grey) !important;
    text-decoration: none !important;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.tau-scroll i {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    color: var(--tau-gold);
    border: 1px solid var(--tau-border);
    font-size: 14px;
    font-style: normal;
}

/* TABLET */

@media (max-width: 1100px) {
    .tau-container {
        gap: 45px;
    }

    .tau-content h1 {
        font-size: 68px;
    }

    .tau-visual,
    .tau-main-image {
        height: 590px;
        min-height: 590px;
    }
}

/* MOBILE */

@media (max-width: 767px) {
    .tau-hero {
        min-height: 0;
        padding: 55px 15px 70px;
    }

    .tau-container {
        display: flex;
        flex-direction: column-reverse;
        gap: 47px;
        min-height: 0;
    }

    .tau-content,
    .tau-visual {
        width: 100%;
    }

    .tau-visual {
        min-height: 475px;
        height: auto;
        padding: 0 20px 45px 0;
    }

    .tau-main-image {
        width: 100%;
        height: 455px;
        min-height: 455px;
    }

    .tau-main-image::before {
        inset: 11px;
    }

    .tau-image-caption {
        right: 22px;
        bottom: 22px;
        left: 22px;
    }

    .tau-image-caption strong {
        font-size: 25px;
    }

    .tau-location-card {
        width: 245px;
        padding: 21px 20px;
    }

    .tau-location-card strong {
        font-size: 24px;
    }

    .tau-year {
        top: 17px;
        left: -5px;
        min-width: 115px;
        padding: 13px 15px;
        font-size: 20px;
    }

    .tau-eyebrow {
        align-items: flex-start;
        font-size: 11px;
        line-height: 1.5;
        letter-spacing: 1.3px;
    }

    .tau-eyebrow span {
        flex-basis: 27px;
        width: 27px;
        margin-top: 8px;
    }

    .tau-content h1 {
        margin-bottom: 24px;
        font-size: 53px;
        line-height: 0.93;
        letter-spacing: -1px;
    }

    .tau-content h1 em {
        margin-top: 8px;
    }

    .tau-content > p {
        font-size: 17px;
        line-height: 1.8;
    }

    .tau-buttons {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .tau-primary-button,
    .tau-secondary-button {
        width: 100%;
        min-height: 61px;
    }

    .tau-features {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 39px;
        padding-top: 0;
    }

    .tau-features > div,
    .tau-features > div:first-child,
    .tau-features > div:last-child {
        display: grid;
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 12px;
        align-items: center;
        min-height: 57px;
        padding: 12px 0;
        border-right: none;
        border-bottom: 1px solid var(--tau-border);
    }

    .tau-features > div:last-child {
        border-bottom: none;
    }

    .tau-features span {
        margin: 0;
    }

    .tau-features p {
        font-size: 13px;
    }

    .tau-scroll {
        display: none;
    }
}

@media (max-width: 390px) {
    .tau-content h1 {
        font-size: 48px;
    }

    .tau-visual {
        min-height: 435px;
    }

    .tau-main-image {
        height: 415px;
        min-height: 415px;
    }

    .tau-location-card {
        width: 225px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-38bb83c4 */@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Manrope:wght@400;500;600;700&display=swap");

.tos-section,
.tos-section * {
    box-sizing: border-box;
}

.tos-section {
    --tos-black: #0C0C0D;
    --tos-surface: #171719;
    --tos-card: #222225;
    --tos-gold: #C6A15B;
    --tos-red: #6E1F2A;
    --tos-ivory: #F2EDE3;
    --tos-grey: #AAA6A0;
    --tos-border: #554731;

    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 110px 24px 0;
    color: var(--tos-ivory);
    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(110, 31, 42, 0.13),
            transparent 30%
        ),
        var(--tos-black);
    font-family: "Manrope", sans-serif;
}

.tos-container {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
    gap: 90px;
    align-items: center;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

/* IMAGE AREA */

.tos-visual {
    position: relative;
    min-height: 720px;
    padding: 0 105px 80px 0;
}

.tos-main-image {
    position: relative;
    width: 100%;
    height: 680px;
    overflow: hidden;
    border: 1px solid var(--tos-border);
    background: var(--tos-surface);
}

.tos-main-image::before {
    content: "";
    position: absolute;
    z-index: 3;
    inset: 18px;
    border: 1px solid rgba(198, 161, 91, 0.42);
    pointer-events: none;
}

.tos-main-image img,
.tos-secondary-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.76) contrast(1.07);
    transition:
        transform 0.7s ease,
        filter 0.4s ease;
}

.tos-main-image:hover img,
.tos-secondary-image:hover img {
    transform: scale(1.035);
    filter: saturate(0.95) contrast(1.08);
}

.tos-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(12, 12, 13, 0.92) 100%
        );
}

.tos-image-caption {
    position: absolute;
    z-index: 4;
    right: 35px;
    bottom: 34px;
    left: 35px;
}

.tos-image-caption span {
    display: block;
    margin-bottom: 6px;
    color: var(--tos-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.tos-image-caption strong {
    display: block;
    color: var(--tos-ivory);
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.1;
}

.tos-secondary-image {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 0;
    width: 245px;
    height: 300px;
    overflow: hidden;
    border: 8px solid var(--tos-black);
    background: var(--tos-surface);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
}

.tos-image-detail {
    position: absolute;
    z-index: 6;
    top: 40px;
    right: 58px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 17px;
    color: var(--tos-ivory);
    border: 1px solid var(--tos-gold);
    background: var(--tos-black);
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-weight: 500;
}

.tos-image-detail span {
    color: var(--tos-gold);
    font-size: 12px;
}

/* CONTENT */

.tos-content {
    max-width: 590px;
}

.tos-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    color: var(--tos-gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tos-eyebrow span {
    flex: 0 0 42px;
    width: 42px;
    height: 1px;
    background: var(--tos-gold);
}

.tos-content h2 {
    margin: 0 0 12px;
    color: var(--tos-ivory);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(57px, 6vw, 78px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -1px;
}

.tos-content h3 {
    margin: 0 0 30px;
    color: var(--tos-ivory);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(29px, 3vw, 39px);
    font-weight: 500;
    line-height: 1.2;
}

.tos-content > p {
    margin: 0 0 19px;
    color: var(--tos-grey);
    font-size: 18px;
    line-height: 1.85;
}

/* QUOTE */

.tos-quote {
    display: grid;
    grid-template-columns: 47px minmax(0, 1fr);
    gap: 12px;
    margin: 32px 0 0;
    padding: 27px 0 0;
    border-top: 1px solid var(--tos-border);
}

.tos-quote > span {
    color: var(--tos-gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 67px;
    line-height: 0.75;
}

.tos-quote p {
    margin: 0;
    color: var(--tos-ivory);
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.45;
}

/* SERVICES */

.tos-services {
    margin-top: 95px;
    border-top: 1px solid var(--tos-border);
    border-bottom: 1px solid var(--tos-border);
    background: var(--tos-surface);
}

.tos-services-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.tos-service {
    display: grid;
    grid-template-columns: 35px minmax(0, 1fr);
    gap: 13px;
    min-height: 175px;
    padding: 34px 26px;
    border-right: 1px solid var(--tos-border);
    transition: background 0.3s ease;
}

.tos-service:first-child {
    border-left: 1px solid var(--tos-border);
}

.tos-service:hover {
    background: var(--tos-card);
}

.tos-service > span {
    color: var(--tos-gold);
    font-size: 11px;
    font-weight: 700;
}

.tos-service strong {
    display: block;
    margin-bottom: 9px;
    color: var(--tos-ivory);
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.15;
}

.tos-service p {
    margin: 0;
    color: var(--tos-grey);
    font-size: 14px;
    line-height: 1.65;
}

/* TABLET */

@media (max-width: 1024px) {
    .tos-section {
        padding-top: 90px;
    }

    .tos-container {
        gap: 50px;
    }

    .tos-visual {
        min-height: 640px;
        padding-right: 70px;
    }

    .tos-main-image {
        height: 600px;
    }

    .tos-secondary-image {
        width: 205px;
        height: 250px;
    }

    .tos-image-detail {
        right: 30px;
    }

    .tos-services-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tos-service {
        border-bottom: 1px solid var(--tos-border);
    }
}

/* MOBILE */

@media (max-width: 767px) {
    .tos-section {
        padding: 65px 15px 0;
    }

    .tos-container {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .tos-visual,
    .tos-content {
        width: 100%;
    }

    .tos-visual {
        min-height: 510px;
        padding: 0 53px 58px 0;
    }

    .tos-main-image {
        height: 480px;
    }

    .tos-main-image::before {
        inset: 11px;
    }

    .tos-image-caption {
        right: 21px;
        bottom: 21px;
        left: 21px;
    }

    .tos-image-caption strong {
        font-size: 25px;
    }

    .tos-secondary-image {
        width: 150px;
        height: 190px;
        border-width: 5px;
    }

    .tos-image-detail {
        top: 18px;
        right: 10px;
        padding: 11px 13px;
        font-size: 15px;
    }

    .tos-eyebrow {
        align-items: flex-start;
        font-size: 12px;
        line-height: 1.5;
        letter-spacing: 1.4px;
    }

    .tos-eyebrow span {
        flex-basis: 27px;
        width: 27px;
        margin-top: 8px;
    }

    .tos-content h2 {
        font-size: 51px;
    }

    .tos-content h3 {
        font-size: 29px;
    }

    .tos-content > p {
        font-size: 17px;
        line-height: 1.8;
    }

    .tos-quote {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .tos-quote > span {
        font-size: 55px;
    }

    .tos-quote p {
        font-size: 22px;
    }

    .tos-services {
        margin-top: 65px;
    }

    .tos-services-container {
        grid-template-columns: 1fr;
    }

    .tos-service,
    .tos-service:first-child {
        min-height: 0;
        padding: 26px 20px;
        border-right: 1px solid var(--tos-border);
        border-bottom: 1px solid var(--tos-border);
        border-left: 1px solid var(--tos-border);
    }

    .tos-service:last-child {
        border-bottom: none;
    }

    .tos-service strong {
        font-size: 24px;
    }

    .tos-service p {
        font-size: 15px;
    }
}

@media (max-width: 390px) {
    .tos-visual {
        min-height: 460px;
        padding-right: 35px;
    }

    .tos-main-image {
        height: 435px;
    }

    .tos-secondary-image {
        width: 135px;
        height: 170px;
    }

    .tos-content h2 {
        font-size: 47px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6b9d4787 */@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Manrope:wght@400;500;600;700&display=swap");

.tmv-section,
.tmv-section * {
    box-sizing: border-box;
}

.tmv-section {
    --tmv-black: #0C0C0D;
    --tmv-surface: #171719;
    --tmv-card: #222225;
    --tmv-gold: #C6A15B;
    --tmv-red: #6E1F2A;
    --tmv-ivory: #F2EDE3;
    --tmv-grey: #AAA6A0;
    --tmv-border: #554731;

    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 105px 24px;
    color: var(--tmv-ivory);
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(110, 31, 42, 0.13),
            transparent 28%
        ),
        var(--tmv-black);
    font-family: "Manrope", sans-serif;
}

.tmv-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

/* HEADER */

.tmv-header {
    max-width: 820px;
    margin: 0 auto 58px;
    text-align: center;
}

.tmv-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-bottom: 18px;
    color: var(--tmv-gold);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tmv-eyebrow span {
    width: 42px;
    height: 1px;
    background: var(--tmv-gold);
}

.tmv-header h2 {
    margin: 0;
    color: var(--tmv-ivory);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(54px, 6vw, 76px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1px;
}

.tmv-header > p {
    margin: 17px 0 0;
    color: var(--tmv-grey);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(27px, 3vw, 36px);
    font-weight: 500;
    line-height: 1.25;
}

/* VALUES */

.tmv-values {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--tmv-border);
    border-left: 1px solid var(--tmv-border);
}

.tmv-value {
    position: relative;
    min-height: 345px;
    padding: 33px 29px;
    overflow: hidden;
    border-right: 1px solid var(--tmv-border);
    border-bottom: 1px solid var(--tmv-border);
    background: var(--tmv-surface);
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.tmv-value:hover {
    z-index: 2;
    background: var(--tmv-card);
    transform: translateY(-4px);
}

.tmv-value::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--tmv-gold);
    transition: width 0.4s ease;
}

.tmv-value:hover::after {
    left: 0;
    width: 100%;
}

.tmv-value-featured {
    background:
        linear-gradient(
            145deg,
            rgba(110, 31, 42, 0.3),
            var(--tmv-surface) 70%
        );
}

.tmv-value-wide {
    grid-column: span 4;
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    min-height: 190px;
    padding: 38px 45px;
}

.tmv-value-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.tmv-number {
    color: var(--tmv-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.tmv-icon {
    display: grid;
    width: 57px;
    height: 57px;
    place-items: center;
    color: var(--tmv-gold);
    border: 1px solid var(--tmv-border);
}

.tmv-icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tmv-value h3 {
    margin: 0 0 15px;
    color: var(--tmv-ivory);
    font-family: "Cormorant Garamond", serif;
    font-size: 29px;
    font-weight: 600;
    line-height: 1.13;
}

.tmv-value > p,
.tmv-wide-content p {
    margin: 0;
    color: var(--tmv-grey);
    font-size: 16px;
    line-height: 1.75;
}

.tmv-value-wide .tmv-value-top {
    align-items: center;
    margin: 0;
}

.tmv-value-wide .tmv-icon {
    width: 62px;
    height: 62px;
}

.tmv-wide-content {
    max-width: 800px;
}

.tmv-wide-content h3 {
    font-size: 34px;
}

/* PHILOSOPHY */

.tmv-philosophy {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
    gap: 80px;
    align-items: center;
    margin-top: 120px;
    padding-top: 105px;
    border-top: 1px solid var(--tmv-border);
}

.tmv-philosophy-image {
    position: relative;
    height: 680px;
    overflow: hidden;
    border: 1px solid var(--tmv-border);
    background: var(--tmv-surface);
}

.tmv-philosophy-image::before {
    content: "";
    position: absolute;
    z-index: 3;
    inset: 18px;
    border: 1px solid rgba(198, 161, 91, 0.43);
    pointer-events: none;
}

.tmv-philosophy-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.76) contrast(1.07);
    transition:
        transform 0.7s ease,
        filter 0.4s ease;
}

.tmv-philosophy-image:hover img {
    transform: scale(1.035);
    filter: saturate(0.95) contrast(1.08);
}

.tmv-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 48%,
            rgba(12, 12, 13, 0.91) 100%
        );
}

.tmv-image-text {
    position: absolute;
    z-index: 4;
    right: 35px;
    bottom: 34px;
    left: 35px;
    color: var(--tmv-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.tmv-philosophy-content {
    max-width: 575px;
}

.tmv-philosophy-content .tmv-eyebrow {
    justify-content: flex-start;
}

.tmv-philosophy-content h2 {
    margin: 0 0 12px;
    color: var(--tmv-ivory);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 5.5vw, 72px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1px;
}

.tmv-philosophy-content h3 {
    margin: 0 0 28px;
    color: var(--tmv-ivory);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(29px, 3vw, 38px);
    font-weight: 500;
    line-height: 1.2;
}

.tmv-philosophy-content > p {
    margin: 0 0 19px;
    color: var(--tmv-grey);
    font-size: 18px;
    line-height: 1.85;
}

.tmv-philosophy-content blockquote {
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 13px;
    margin: 33px 0 0;
    padding: 28px 0 0;
    border-top: 1px solid var(--tmv-border);
}

.tmv-philosophy-content blockquote > span {
    color: var(--tmv-gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 65px;
    line-height: 0.75;
}

.tmv-philosophy-content blockquote p {
    margin: 0;
    color: var(--tmv-ivory);
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.45;
}

/* TABLET */

@media (max-width: 1024px) {
    .tmv-section {
        padding: 90px 22px;
    }

    .tmv-values {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tmv-value-wide {
        grid-column: span 2;
    }

    .tmv-philosophy {
        gap: 50px;
    }

    .tmv-philosophy-image {
        height: 610px;
    }
}

/* MOBILE */

@media (max-width: 767px) {
    .tmv-section {
        padding: 68px 15px;
    }

    .tmv-header {
        margin-bottom: 42px;
        text-align: left;
    }

    .tmv-eyebrow {
        justify-content: flex-start;
        align-items: flex-start;
        font-size: 12px;
        line-height: 1.5;
        letter-spacing: 1.4px;
    }

    .tmv-eyebrow span {
        flex: 0 0 27px;
        width: 27px;
        margin-top: 8px;
    }

    .tmv-header h2 {
        font-size: 49px;
    }

    .tmv-header > p {
        margin-top: 13px;
        font-size: 28px;
    }

    .tmv-values {
        grid-template-columns: 1fr;
    }

    .tmv-value,
    .tmv-value-wide {
        grid-column: auto;
        display: block;
        min-height: 0;
        padding: 29px 23px 31px;
    }

    .tmv-value-wide .tmv-value-top {
        justify-content: space-between;
        margin-bottom: 26px;
    }

    .tmv-value-top {
        margin-bottom: 24px;
    }

    .tmv-value h3,
    .tmv-wide-content h3 {
        font-size: 28px;
    }

    .tmv-value > p,
    .tmv-wide-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .tmv-philosophy {
        display: flex;
        flex-direction: column;
        gap: 48px;
        margin-top: 80px;
        padding-top: 70px;
    }

    .tmv-philosophy-image,
    .tmv-philosophy-content {
        width: 100%;
    }

    .tmv-philosophy-image {
        height: 470px;
    }

    .tmv-philosophy-image::before {
        inset: 11px;
    }

    .tmv-image-text {
        right: 22px;
        bottom: 22px;
        left: 22px;
        line-height: 1.5;
    }

    .tmv-philosophy-content h2 {
        font-size: 49px;
    }

    .tmv-philosophy-content h3 {
        font-size: 29px;
    }

    .tmv-philosophy-content > p {
        font-size: 17px;
        line-height: 1.8;
    }

    .tmv-philosophy-content blockquote {
        grid-template-columns: 37px minmax(0, 1fr);
    }

    .tmv-philosophy-content blockquote > span {
        font-size: 54px;
    }

    .tmv-philosophy-content blockquote p {
        font-size: 21px;
    }
}

@media (max-width: 390px) {
    .tmv-header h2,
    .tmv-philosophy-content h2 {
        font-size: 45px;
    }

    .tmv-philosophy-image {
        height: 420px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-52dfcf18 *//* =====================================================
   TIGER TATTOO — VISIT OUR STUDIO
===================================================== */

:root {
    --tvs-black: #0C0C0D;
    --tvs-surface: #171719;
    --tvs-card: #222225;
    --tvs-gold: #C6A15B;
    --tvs-oxblood: #6E1F2A;
    --tvs-ivory: #F2EDE3;
    --tvs-grey: #AAA6A0;
    --tvs-border: #554731;
}

.tvs-section,
.tvs-section * {
    box-sizing: border-box;
}

.tvs-section {
    position: relative;

    width: 100%;
    overflow: hidden;

    padding: 110px 30px;

    background:
        radial-gradient(
            circle at 10% 80%,
            rgba(198, 161, 91, 0.06),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 10%,
            rgba(110, 31, 42, 0.07),
            transparent 28%
        ),
        var(--tvs-black);

    color: var(--tvs-ivory);
    font-family: "Manrope", sans-serif;
}

/* Background texture */

.tvs-section::before {
    position: absolute;
    inset: 0;

    opacity: 0.025;
    pointer-events: none;

    background-image:
        repeating-linear-gradient(
            45deg,
            transparent 0,
            transparent 3px,
            rgba(255, 255, 255, 0.75) 4px
        );

    content: "";
}

.tvs-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1280px;

    margin: 0 auto;
}

/* =====================================================
   HEADER
===================================================== */

.tvs-header {
    max-width: 780px;

    margin: 0 auto 60px;

    text-align: center;
}

.tvs-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    margin-bottom: 20px;

    color: var(--tvs-gold);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.5;
    text-transform: uppercase;
}

.tvs-eyebrow span {
    width: 35px;
    height: 1px;

    background: var(--tvs-gold);
}

.tvs-header h2 {
    margin: 0;

    color: var(--tvs-ivory);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(56px, 5.5vw, 80px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 0.96;
    text-transform: none;
}

.tvs-header h2 em {
    display: block;

    color: var(--tvs-gold);

    font-weight: 500;
}

.tvs-header > p {
    max-width: 620px;

    margin: 21px auto 0;

    color: var(--tvs-grey);

    font-size: 14px;
    line-height: 1.75;
}

/* =====================================================
   MAIN LAYOUT
===================================================== */

.tvs-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    min-height: 610px;

    border: 1px solid rgba(85, 71, 49, 0.85);

    background: var(--tvs-surface);
}

/* =====================================================
   GOOGLE MAP
===================================================== */

.tvs-map-wrap {
    position: relative;

    width: 100%;
    min-height: 610px;
    overflow: hidden;

    border-right: 1px solid rgba(85, 71, 49, 0.85);

    background: var(--tvs-card);
}

.tvs-map {
    display: block;

    width: 100%;
    height: 100%;
    min-height: 610px;

    border: 0;

    filter:
        grayscale(0.88)
        invert(0.91)
        contrast(0.86)
        brightness(0.70);

    transition: filter 500ms ease;
}

.tvs-map-wrap:hover .tvs-map {
    filter:
        grayscale(0.55)
        invert(0.91)
        contrast(0.90)
        brightness(0.78);
}

/* Map label */

.tvs-map-label {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 3;

    display: grid;
    gap: 5px;

    padding: 17px 20px;

    border: 1px solid rgba(198, 161, 91, 0.65);

    background: rgba(12, 12, 13, 0.92);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);

    backdrop-filter: blur(10px);
}

.tvs-map-label span {
    color: var(--tvs-gold);

    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.tvs-map-label strong {
    color: var(--tvs-ivory);

    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.05;
}

/* Map decorative corners */

.tvs-map-corner {
    position: absolute;
    z-index: 2;

    width: 50px;
    height: 50px;

    pointer-events: none;
}

.tvs-map-corner-top {
    top: 18px;
    left: 18px;

    border-top: 1px solid var(--tvs-gold);
    border-left: 1px solid var(--tvs-gold);
}

.tvs-map-corner-bottom {
    right: 18px;
    bottom: 18px;

    border-right: 1px solid var(--tvs-gold);
    border-bottom: 1px solid var(--tvs-gold);
}

/* =====================================================
   DETAILS
===================================================== */

.tvs-details {
    display: flex;
    flex-direction: column;

    padding: 45px 40px;

    background:
        linear-gradient(
            145deg,
            rgba(34, 34, 37, 0.96),
            rgba(12, 12, 13, 0.98)
        );
}

.tvs-details-heading {
    margin-bottom: 25px;
}

.tvs-details-heading > span {
    display: block;

    margin-bottom: 10px;

    color: var(--tvs-gold);

    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.tvs-details-heading h3 {
    margin: 0;

    color: var(--tvs-ivory);

    font-family: "Cormorant Garamond", serif;
    font-size: 45px;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 0.95;
    text-transform: none;
}

.tvs-details-heading h3 em {
    display: block;

    color: var(--tvs-gold);

    font-weight: 500;
}

/* =====================================================
   INFORMATION ITEMS
===================================================== */

.tvs-info-item {
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 15px;

    padding: 20px 0;

    border-top: 1px solid rgba(85, 71, 49, 0.75);
}

.tvs-info-number {
    color: var(--tvs-gold);

    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 500;
}

.tvs-info-content {
    display: grid;
    gap: 7px;
}

.tvs-info-content > span {
    color: var(--tvs-gold);

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.tvs-info-content address,
.tvs-info-content p {
    margin: 0;

    color: var(--tvs-grey);

    font-size: 14px;
    font-style: normal;
    line-height: 1.7;
}

.tvs-info-content p strong {
    color: var(--tvs-ivory);

    font-weight: 500;
}

.tvs-info-content > a {
    width: fit-content;

    color: var(--tvs-ivory) !important;

    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none !important;

    transition: color 200ms ease;
}

.tvs-info-content > a:hover {
    color: var(--tvs-gold) !important;
}

/* =====================================================
   BUTTONS
===================================================== */

.tvs-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;

    margin-top: auto;
    padding-top: 25px;

    border-top: 1px solid rgba(85, 71, 49, 0.75);
}

.tvs-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 13px 11px;

    border: 1px solid var(--tvs-gold);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1.35;
    text-align: center;
    text-decoration: none !important;
    text-transform: uppercase;

    transition:
        background-color 220ms ease,
        border-color 220ms ease,
        color 220ms ease,
        transform 220ms ease;
}

.tvs-button span {
    font-size: 14px;
    font-weight: 500;
}

.tvs-button:hover {
    transform: translateY(-2px);
}

.tvs-directions {
    background: var(--tvs-gold);
    color: var(--tvs-black) !important;
}

.tvs-directions:hover {
    border-color: var(--tvs-oxblood);

    background: var(--tvs-oxblood);
    color: var(--tvs-ivory) !important;
}

.tvs-appointment {
    background: transparent;
    color: var(--tvs-ivory) !important;
}

.tvs-appointment:hover {
    border-color: var(--tvs-oxblood);

    background: var(--tvs-oxblood);
    color: var(--tvs-ivory) !important;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1024px) {

    .tvs-section {
        padding: 90px 25px;
    }

    .tvs-layout {
        grid-template-columns: minmax(0, 1fr) 390px;
    }

    .tvs-details {
        padding: 38px 30px;
    }
}

/* =====================================================
   SMALL TABLET
===================================================== */

@media (max-width: 850px) {

    .tvs-layout {
        display: flex;
        min-height: 0;
        flex-direction: column;
    }

    .tvs-map-wrap {
        min-height: 500px;

        border-right: 0;
        border-bottom: 1px solid rgba(85, 71, 49, 0.85);
    }

    .tvs-map {
        min-height: 500px;
    }

    .tvs-details {
        min-height: 560px;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .tvs-section {
        padding: 65px 16px;
    }

    .tvs-header {
        margin-bottom: 38px;
    }

    .tvs-eyebrow {
        gap: 10px;

        margin-bottom: 15px;

        font-size: 9px;
        letter-spacing: 0.13em;
    }

    .tvs-eyebrow span {
        width: 24px;
    }

    .tvs-header h2 {
        font-size: clamp(45px, 13vw, 60px);
        line-height: 0.97;
    }

    .tvs-header > p {
        margin-top: 17px;

        font-size: 14px;
        line-height: 1.7;
    }

    .tvs-map-wrap,
    .tvs-map {
        min-height: 390px;
    }

    .tvs-map-label {
        bottom: 16px;
        left: 16px;

        padding: 14px 16px;
    }

    .tvs-map-label strong {
        font-size: 20px;
    }

    .tvs-map-corner {
        width: 36px;
        height: 36px;
    }

    .tvs-map-corner-top {
        top: 12px;
        left: 12px;
    }

    .tvs-map-corner-bottom {
        right: 12px;
        bottom: 12px;
    }

    .tvs-details {
        min-height: 0;

        padding: 31px 20px 24px;
    }

    .tvs-details-heading h3 {
        font-size: 40px;
    }

    .tvs-info-item {
        grid-template-columns: 37px minmax(0, 1fr);
        gap: 11px;

        padding: 17px 0;
    }

    .tvs-info-content address,
    .tvs-info-content p {
        font-size: 13px;
    }

    .tvs-info-content > a {
        font-size: 23px;
    }

    .tvs-actions {
        margin-top: 5px;
        padding-top: 21px;
    }

    .tvs-button {
        min-height: 50px;

        padding: 12px 9px;

        font-size: 8px;
    }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 390px) {

    .tvs-map-wrap,
    .tvs-map {
        min-height: 340px;
    }

    .tvs-details {
        padding-right: 16px;
        padding-left: 16px;
    }

    .tvs-actions {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4a9079be *//* =====================================================
   TIGER TATTOO — APPOINTMENT CTA
===================================================== */

:root {
    --tac-black: #0C0C0D;
    --tac-surface: #171719;
    --tac-gold: #C6A15B;
    --tac-oxblood: #6E1F2A;
    --tac-ivory: #F2EDE3;
    --tac-grey: #AAA6A0;
    --tac-border: #554731;
}

/* Elementor full-width support */

.elementor-element:has(#appointment-cta),
.elementor-widget-html:has(#appointment-cta),
.elementor-widget-container:has(#appointment-cta),
.e-con:has(#appointment-cta) {
    max-width: none !important;
    overflow: visible !important;
}

.tac-section,
.tac-section * {
    box-sizing: border-box;
}

.tac-section {
    position: relative;

    width: 100vw;
    max-width: 100vw;
    min-height: 410px;
    overflow: hidden;

    margin-left: calc(50% - 50vw);

    background: var(--tac-black);
    border-top: 1px solid rgba(198, 161, 91, 0.35);
    border-bottom: 1px solid rgba(198, 161, 91, 0.35);

    color: var(--tac-ivory);
    font-family: "Manrope", sans-serif;
}

/* =====================================================
   IMAGE
===================================================== */

.tac-image-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;

    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tac-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center 45%;

    filter:
        grayscale(0.78)
        contrast(1.10)
        brightness(0.55);

    transform: scale(1.015);

    transition:
        transform 900ms ease,
        filter 900ms ease;
}

.tac-section:hover .tac-image {
    filter:
        grayscale(0.55)
        contrast(1.06)
        brightness(0.62);

    transform: scale(1.035);
}

/* Image overlay */

.tac-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(12, 12, 13, 0.97) 0%,
            rgba(12, 12, 13, 0.88) 40%,
            rgba(12, 12, 13, 0.57) 68%,
            rgba(12, 12, 13, 0.75) 100%
        ),
        linear-gradient(
            180deg,
            rgba(12, 12, 13, 0.18),
            rgba(12, 12, 13, 0.68)
        );
}

/* =====================================================
   CONTENT CONTAINER
===================================================== */

.tac-container {
    position: relative;
    z-index: 3;

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 55px;
    align-items: center;

    width: min(90%, 1280px);
    min-height: 410px;

    margin: 0 auto;
    padding: 55px 0;
}

.tac-content {
    max-width: 780px;
}

.tac-eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 15px;

    color: var(--tac-gold);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.5;
    text-transform: uppercase;
}

.tac-eyebrow span {
    width: 35px;
    height: 1px;
    flex: 0 0 auto;

    background: var(--tac-gold);
}

.tac-content h2 {
    max-width: 780px;
    margin: 0;

    color: var(--tac-ivory);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(46px, 4.5vw, 70px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 0.96;
    text-transform: none;
}

.tac-content h2 em {
    display: block;

    color: var(--tac-gold);

    font-weight: 500;
}

.tac-content > p {
    max-width: 700px;

    margin: 20px 0 0;

    color: var(--tac-grey);

    font-size: 14px;
    line-height: 1.75;
}

/* =====================================================
   BUTTONS
===================================================== */

.tac-actions {
    display: grid;
    width: 255px;
    flex: 0 0 255px;
    gap: 11px;
}

.tac-button {
    display: inline-flex;
    width: 100%;
    min-height: 55px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    padding: 15px 20px;

    border: 1px solid var(--tac-gold);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.10em;
    line-height: 1.35;
    text-decoration: none !important;
    text-transform: uppercase;

    transition:
        background-color 220ms ease,
        border-color 220ms ease,
        color 220ms ease,
        transform 220ms ease;
}

.tac-button span {
    font-size: 15px;
    font-weight: 500;
}

.tac-button:hover {
    transform: translateY(-2px);
}

.tac-whatsapp {
    background: var(--tac-gold);
    color: var(--tac-black) !important;
}

.tac-whatsapp:hover {
    border-color: var(--tac-oxblood);

    background: var(--tac-oxblood);
    color: var(--tac-ivory) !important;
}

.tac-call {
    background: rgba(12, 12, 13, 0.40);
    color: var(--tac-ivory) !important;

    backdrop-filter: blur(8px);
}

.tac-call:hover {
    border-color: var(--tac-oxblood);

    background: var(--tac-oxblood);
    color: var(--tac-ivory) !important;
}

/* =====================================================
   DECORATIVE CORNERS
===================================================== */

.tac-decoration {
    position: absolute;
    z-index: 2;

    width: 65px;
    height: 65px;

    pointer-events: none;
}

.tac-decoration-left {
    top: 24px;
    left: 24px;

    border-top: 1px solid rgba(198, 161, 91, 0.65);
    border-left: 1px solid rgba(198, 161, 91, 0.65);
}

.tac-decoration-right {
    right: 24px;
    bottom: 24px;

    border-right: 1px solid rgba(198, 161, 91, 0.65);
    border-bottom: 1px solid rgba(198, 161, 91, 0.65);
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1024px) {

    .tac-section,
    .tac-container {
        min-height: 390px;
    }

    .tac-container {
        grid-template-columns: minmax(0, 1fr) 230px;
        gap: 35px;

        width: calc(100% - 50px);
    }

    .tac-actions {
        width: 230px;
    }

    .tac-content h2 {
        font-size: clamp(43px, 5.5vw, 62px);
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .tac-section {
        min-height: 0;
    }

    .tac-container {
        display: block;
        width: 100%;
        min-height: 0;

        padding: 60px 18px 56px;
    }

    .tac-image {
        object-position: 62% center;
    }

    .tac-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(12, 12, 13, 0.70) 0%,
                rgba(12, 12, 13, 0.89) 48%,
                rgba(12, 12, 13, 0.98) 100%
            );
    }

    .tac-eyebrow {
        gap: 10px;

        margin-bottom: 14px;

        font-size: 9px;
        letter-spacing: 0.14em;
    }

    .tac-eyebrow span {
        width: 25px;
    }

    .tac-content h2 {
        font-size: clamp(42px, 12vw, 56px);
        line-height: 0.97;
    }

    .tac-content > p {
        margin-top: 17px;

        font-size: 14px;
        line-height: 1.7;
    }

    .tac-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;

        width: 100%;

        margin-top: 28px;
    }

    .tac-button {
        min-height: 52px;

        padding: 13px 12px;

        font-size: 8px;
    }

    .tac-decoration {
        width: 42px;
        height: 42px;
    }

    .tac-decoration-left {
        top: 14px;
        left: 14px;
    }

    .tac-decoration-right {
        right: 14px;
        bottom: 14px;
    }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 390px) {

    .tac-container {
        padding: 55px 15px 50px;
    }

    .tac-content h2 {
        font-size: 40px;
    }

    .tac-content > p {
        font-size: 13.5px;
    }

    .tac-actions {
        grid-template-columns: 1fr;
    }

    .tac-button {
        justify-content: center;
    }
}/* End custom CSS */