﻿@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
figure,
ol,
ul,
dl,
fieldset,
pre {
    margin: 0;
}

ul,
ol {
    padding: 0;
    list-style: none;
}

a:hover {
    text-decoration: none;
}

/* ============================================================
   COMMON CSS STARTS HERE
   Tilly's Marine — dark theme. Epilogue (Black Italic) headings,
   DM Sans body. All custom classes are prefixed tl-.
   ============================================================ */

:root {
    --ink: #0E0E0E;
    --ink-14: #141414;
    --ink-1a: #1A1A1A;
    --ink-deep: #060c18;
    --red: #CB2123;
    --offwhite: #F5F5F3;
    --line: rgba(255, 255, 255, 0.07);
    --gutter: clamp(20px, 2.9vw, 56px);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--ink);
    color: #fff;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* page shell — design is authored at 1920px wide */
.tl-page {
    max-width: 1920px;
    margin: 0 auto;
    background: var(--ink);
    overflow: hidden;
}

.field-error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    text-align: left;
}
.error_field {
    border: 1px solid red !important;
}
.iti{
    /* border: none; */
    width: 100%;
}

.tl-container {
    max-width: 1920px;
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

/* ---- shared type helpers ---- */
.tl-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.6;
    line-height: 1;
}

.tl-h1 {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    font-size: 120px;
    line-height: 0.92;
    letter-spacing: -2.32px;
}

.tl-h2 {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    font-size: clamp(34px, 3.33vw, 64px);
    line-height: 0.94;
    letter-spacing: -2px;
}

.tl-h3 {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: var(--offwhite);
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0;
}

.tl-muted {
    color: rgba(255, 255, 255, 0.4);
}

.tl-para {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}

/* ---- buttons ---- */
.tl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 47px;
    padding: 0 26px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    width: fit-content;
}

.tl-btn-outline {
    border: 1.5px solid rgba(245, 245, 243, 0.3);
    background: transparent;
}

.tl-btn-outline:hover {
    background: #b01b1d;
    color: #fff;
    border-color: #b01b1d;
}

.tl-btn-red {
    background: var(--red);
    border: none;
    color: #fff;
}

.tl-btn-red:hover {
    background: #b01b1d;
    color: #fff;
}

/* small text link with arrow */
.tl-textlink {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.96px;
    color: #fff;
    line-height: 1;
}

.tl-textlink .tl-arrow {
    font-size: 13px;
    transition: transform 0.25s ease;
}

.tl-textlink:hover .tl-arrow {
    transform: translateX(4px);
}

/* underlined brand link */
.tl-underlink {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.96px;
    color: #fff;
    opacity: 0.6;
    transition: opacity 0.25s ease;
}

.tl-underlink:hover {
    opacity: 1;
}

/* 28px square arrow button */
.tl-arrowbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1.5px solid #fff;
    opacity: 0.4;
    font-size: 13px;
    color: #fff;
    transition: opacity 0.25s ease;
}

.tl-arrowbtn:hover {
    opacity: 1;
}

/* fixed-aspect media wrapper (padding-top technique) */
.tl-media {
    position: relative;
    overflow: hidden;
}

.tl-media>img,
.tl-media>video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tl-media img,
.tl-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   DESKTOP NAV CSS STARTS HERE
   ============================================================ */
.tl-nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 64px;
    background: rgba(14, 14, 14, 0.96);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    width: 100%;
}

.tl-nav-inner {
    max-width: 1920px;
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.tl-nav-logo img {
    height: 26px;
    width: auto;
}

.tl-nav-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.tl-nav-menu a {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    transition: opacity 0.2s ease;
    opacity: 0.92;
}

.tl-nav-menu a:hover {
    opacity: 0.6;
}

.tl-nav-pill {
    border: 1.5px solid rgba(203, 33, 35, 0.6);
    padding: 9px 22px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.tl-nav-pill:hover {
    background: var(--red);
    border-color: var(--red);
    opacity: 1 !important;
}

.tl-nav-right {
    display: flex;
    align-items: center;
    gap: 26px;
}

.tl-nav-search {
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    opacity: 0.85;
}

.tl-nav-search img {
    width: 16px;
    height: 16px;
}

.tl-nav-world {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
}

.tl-nav-world img {
    width: 20px;
    height: 13px;
}

.tl-nav-toggle {
    display: none;
}

/* trigger looks clickable */
.tl-nav-world {
    user-select: none;
}

/* ---- desktop mega menu ---- */
body.tl-mega-open {
    overflow: hidden;
}

.tl-mega {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(20, 20, 20, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.tl-mega.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.tl-mega-inner {
    position: relative;
    max-width: 1920px;
    min-height: 100%;
    margin: 0 auto;
    padding: 120px var(--gutter) 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* center vertical divider */
.tl-mega-inner::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.tl-mega-close {
    position: absolute;
    top: 22px;
    right: var(--gutter);
    z-index: 2;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.tl-mega-close::before,
.tl-mega-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 1.5px;
    background: #fff;
}

.tl-mega-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.tl-mega-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.tl-mega-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.tl-mega-col--right {
    padding-top: 232px;
    padding-left: 80px;
}

.tl-mega-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 44px;
}

.tl-mega-link {
    display: block;
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.tl-mega-link--lg {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 16px;
}

.tl-mega-link--md {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 16px;
}

.tl-mega-link:hover {
    color: var(--red);
}

.tl-mega-group--md {
    margin-top: 48px;
}

.tl-mega-locations {
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    max-width: 420px;
}

.tl-mega-loc {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 12px;
    transition: opacity 0.2s ease;
    opacity: 0.85;
}

.tl-mega-loc:hover {
    opacity: 1;
    color: var(--red);
}

/* ---- mobile menu  ---- */
.tl-mnav {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    flex-direction: column;
    background: rgba(20, 20, 20, 0.98);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.tl-mnav.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.tl-mnav-bar {
    flex: 0 0 auto;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--gutter);
    border-bottom: 1px solid var(--line);
}

.tl-mnav-logo img {
    height: 24px;
    width: auto;
}

.tl-mnav-close {
    position: relative;
    width: 40px;
    height: 40px;
    margin-right: -9px;
    background: none;
    border: none;
    cursor: pointer;
}

.tl-mnav-close::before,
.tl-mnav-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 1.5px;
    background: #fff;
}

.tl-mnav-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.tl-mnav-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.tl-mnav-scroll {
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 28px var(--gutter) 48px;
}

.tl-mnav-primary {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tl-mnav-main {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    font-size: 30px;
    line-height: 1.32;
    transition: color 0.2s ease;
}

.tl-mnav-main:hover {
    color: var(--red);
}

.tl-mnav-cta {
    display: block;
    margin-top: 24px;
    text-align: center;
    background: var(--red);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 15px 20px;
    border-radius: 2px;
    transition: opacity 0.2s ease;
}

.tl-mnav-cta:hover {
    opacity: 0.9;
}

.tl-mnav-group {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tl-mnav-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 16px;
}

.tl-mnav-sub {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.5;
    color: #fff;
    opacity: 0.9;
    padding: 7px 0;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.tl-mnav-sub:hover {
    color: var(--red);
    opacity: 1;
}

.tl-mnav-foot {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tl-mnav-phone {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: #fff;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.tl-mnav-phone:hover {
    opacity: 1;
}

.tl-mnav-phone span {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.45;
}

/* ============================================================
   HOME PAGE CSS STARTS HERE
   ============================================================ */

/* ---- hero ---- */
.tl-hero {
    position: relative;
    min-height: 100vh;
    background: var(--ink-deep);
    overflow: hidden;
    display: flex;
}

.tl-hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.tl-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top,
            #0e0e0e 0%,
            rgba(14, 14, 14, 0.5) 25%,
            rgba(14, 14, 14, 0) 55%);
}

.tl-hero-rule {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 32%;
    height: 1px;
    z-index: 2;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0) 100%);
}

.tl-hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 20px var(--gutter) 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tl-hero-eyebrow {
    margin-bottom: 28px;
}

.tl-hero h1 {
    margin-bottom: 40px;
}

.tl-hero-para {
    max-width: 480px;
    margin-bottom: 36px;
}

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

.tl-hero-actions .tl-textlink {
    opacity: 0.5;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.tl-hero-actions .tl-textlink:hover {
    opacity: 1;
}

.tl-hero-scroll {
    position: absolute;
    right: 62px;
    bottom: 92px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.tl-hero-scroll span {
    writing-mode: vertical-rl;
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.4;
}

.tl-hero-scroll i {
    width: 1px;
    height: 52px;
    background: #fff;
    opacity: 0.4;
}

.brandHeaderLogoWrapper{
    max-width: 300px;
}

.brandHeaderLogoWrapper img{
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ---- brands split ---- */
.tl-brands {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.tl-brand {
    position: relative;
    min-height: 900px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate;
}

.tl-brand-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: -2;
}

.tl-brand:hover .tl-brand-bg {
    transform: scale(1.04);
}

.tl-brand-scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to top,
            rgba(14, 14, 14, 0.92) 0%,
            rgba(14, 14, 14, 0.1) 55%,
            rgba(14, 14, 14, 0) 100%);
}

.tl-brand-content {
    padding: 0 56px 61px;
    width: 100%;
}

.tl-brand-logo {
    max-width: 302px;
    margin: 24px 0 32px;
}

.tl-brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tl-brand-content .tl-eyebrow {
    margin-bottom: 0;
}

.tl-brand-text {
    max-width: 400px;
    margin-bottom: 36px;
}

/* ---- inventory ---- */
.tl-inventory {
    padding-top: 100px;
    padding-bottom: 100px;
}

.tl-inv-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
}

.tl-inv-head .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.tl-filter {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-left: none;
    background: transparent;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.5px;
    padding: 9px 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tl-filter:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.tl-filter.is-active,
.tl-filter:hover {
    background: #fff;
    color: var(--ink);
}

.tl-inv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tl-inv-card {
    background: var(--ink-14);
    display: flex;
    flex-direction: column;
}

.tl-inv-img {
    padding-top: 75%;
}

.tl-inv-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(146deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 38%);
}

.tl-inv-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #fff;
}

.tl-inv-body {
    padding: 22px 24px 24px;
    position: relative;
}

.tl-inv-body .tl-eyebrow {
    margin-bottom: 8px;
}

.tl-inv-title {
    margin-bottom: 11px;
}

.tl-inv-spec {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    opacity: 0.4;
    margin-bottom: 9px;
}

.tl-inv-price {
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: var(--offwhite);
}

.tl-inv-body .tl-arrowbtn {
    position: absolute;
    right: 24px;
    bottom: 24px;
}

.tl-inv-foot {
    text-align: center;
    margin-top: 56px;
}

/* ---- service locations bar ---- */
.tl-locations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--ink-14);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.tl-loc {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 56px 30px 40px;
    min-height: 120px;
}

.tl-loc+.tl-loc {
    border-left: 1px solid var(--line);
}

.tl-loc-city {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: 24px;
    color: #fff;
    margin-bottom: 6px;
}

.tl-loc-phone {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.55;
}

.tl-loc-phone:hover {
    color: #fff;
}

.tl-loc-arrow {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    opacity: 0.5;
}

/* ---- fullbleed break (shared) ---- */
.tl-break {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.tl-break-inner {
    position: relative;
    z-index: 2;
    max-width: 1920px;
    margin: 0 auto;
    padding: var(--gutter);
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

/* break 1 — "life on the water" carousel */
.tl-life {
    position: relative;
}

.tl-life-carousel,
.tl-life-carousel .owl-stage-outer,
.tl-life-carousel .owl-stage,
.tl-life-carousel .owl-item {
    height: 100%;
}

.tl-life-slide {
    position: relative;
    height: 800px;
    background-size: cover;
    background-position: center;
}

/* top-to-bottom darkening so badge/text stay legible */
.tl-life-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(14, 14, 14, 0.7), rgba(14, 14, 14, 0) 50%);
}

.tl-life-inner {
    position: relative;
    z-index: 2;
    max-width: 1920px;
    height: 100%;
    margin: 0 auto;
    padding: var(--gutter);
}

/* override owl's `.owl-item img { width:100% }` for the badge */
.tl-life-badge,
.tl-life-carousel .owl-item img.tl-life-badge {
    position: absolute;
    left: var(--gutter);
    top: 295px;
    width: 300px;
    height: auto;
}

.tl-life-text {
    position: absolute;
    left: var(--gutter);
    bottom: 80px;
    padding: 0 15px;
}

.tl-life-eyebrow {
    opacity: 0.6;
    margin-bottom: 22px;
}

.tl-life-h2 {
    max-width: 600px;
    line-height: 0.94;
}

.tl-life-muted {
    color: rgba(255, 255, 255, 0.4);
}

/* ---- owl dots (dashes) ---- */
.tl-life-carousel .owl-dots {
    position: absolute;
    right: 168px;
    bottom: 48px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 16px;
}

.tl-life-carousel .owl-dots .owl-dot {
    display: block;
}

.tl-life-carousel .owl-dots .owl-dot span {
    display: block;
    width: 40px;
    height: 2px;
    margin: 0;
    border-radius: 2px;
    background: #fff;
    opacity: 0.4;
    transition: opacity 0.25s ease;
}

.tl-life-carousel .owl-dots .owl-dot.active span,
.tl-life-carousel .owl-dots .owl-dot:hover span {
    opacity: 1;
    background: #fff;
}

/* ---- owl nav (square arrow buttons) ---- */
.tl-life-carousel .owl-nav {
    position: absolute;
    right: var(--gutter);
    bottom: 48px;
    z-index: 3;
    display: flex;
    gap: 16px;
    margin: 0;
}

.tl-life-carousel .owl-nav button.owl-prev,
.tl-life-carousel .owl-nav button.owl-next {
    width: 28px;
    height: 28px;
    margin: 0;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 0;
    background: transparent;
    color: #fff;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.tl-life-carousel .owl-nav button.owl-prev:hover,
.tl-life-carousel .owl-nav button.owl-next:hover {
    background: transparent;
    border-color: #fff;
}

.tl-life-carousel .owl-nav button.owl-prev.disabled,
.tl-life-carousel .owl-nav button.owl-next.disabled {
    opacity: 0.4;
    cursor: default;
}

.tl-life-arrow {
    display: block;
    font-size: 13px;
    line-height: 1;
}

.tl-life-carousel .owl-nav .owl-prev .tl-life-arrow {
    transform: rotate(180deg);
}

/* break 2 — trade-in */
.tl-break--trade::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(14, 14, 14, 0.85) 0%, rgba(14, 14, 14, 0.35) 45%, rgba(14, 14, 14, 0) 75%);
}

.tl-break--trade .tl-break-inner {
    justify-content: center;
}

.tl-break--trade .tl-eyebrow {
    margin-bottom: 28px;
}

.tl-break--trade h2 {
    margin-bottom: 28px;
}

.tl-break--trade .tl-para {
    max-width: 600px;
    margin-bottom: 36px;
}

/* ---- full-service partner ---- */
.tl-partner {
    padding-top: 100px;
    padding-bottom: 100px;
}

.tl-partner-head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 56px;
}

.tl-partner-head .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-partner-head h2 {
    margin-bottom: 24px;
}

.tl-partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 24px;
    max-width: 1488px;
    margin: 0 auto;
}

.tl-pcard-img {
    padding-top: 55.56%;
    margin-bottom: 24px;
}

.tl-pcard h3 {
    margin-bottom: 14px;
}

.tl-pcard-text {
    max-width: 600px;
    margin-bottom: 22px;
    opacity: 0.85;
}

/* ---- test drive ---- */
.tl-testdrive {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.tl-testdrive-media {
    position: relative;
    min-height: 700px;
    overflow: hidden;
}

.tl-testdrive-panel {
    background: var(--ink);
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tl-testdrive-panel .tl-eyebrow {
    margin-bottom: 28px;
}

.tl-testdrive-panel h2 {
    margin-bottom: 32px;
}

.tl-red {
    color: var(--red);
}

.tl-testdrive-panel .tl-para {
    max-width: 480px;
    margin-bottom: 40px;
    opacity: 0.85;
}

.tl-testdrive-avail {
    margin-bottom: 32px;
}

.tl-testdrive-panel .tl-btn-red {
    width: 100%;
}

/* ---- who we are ---- */
.tl-whoweare {
    padding-top: 100px;
    padding-bottom: 100px;
}

.tl-whoweare-grid {
    display: grid;
    grid-template-columns: 680fr 480fr;
    gap: 120px;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
}

.tl-whoweare-media {
    width: 100%;
    max-width: 680px;
}

.tl-whoweare-square {
    padding-top: 100%;
}

.tl-whoweare-media .tl-btn-outline {
    margin-top: 24px;
    float: right;
}

.tl-whoweare-text {
    max-width: 100%;
}

.tl-whoweare-text .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-whoweare-text h2 {
    margin-bottom: 28px;
}

.tl-whoweare-divider {
    width: 240px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 40px 0;
}

.tl-whoweare-block {
    margin-bottom: 40px;
}

.tl-whoweare-block:last-child {
    margin-bottom: 0;
}

.tl-whoweare-block h3 {
    margin-bottom: 16px;
}

.tl-whoweare-block .tl-para {
    opacity: 0.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.tl-footer {
    background: var(--ink-14);
}

.tl-newsletter {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 64px var(--gutter);
}

.tl-newsletter-inner {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.tl-newsletter .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-newsletter h2 {
    margin-bottom: 20px;
}

.tl-newsletter-copy {
    font-size: 14px;
    line-height: 23.8px;
    color: rgba(245, 245, 243, 0.55);
    max-width: 540px;
}

.tl-newsletter-form {
    display: flex;
    flex-shrink: 0;
}

.tl-newsletter-form input {
    width: 327px;
    max-width: 60vw;
    height: 47px;
    background: var(--ink);
    border: 1.5px solid rgba(255, 255, 255, 0.16);
    color: var(--offwhite);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    letter-spacing: 0.78px;
    padding: 0 20px;
}

.tl-newsletter-form input::placeholder {
    color: rgba(245, 245, 243, 0.6);
}

.tl-newsletter-form button {
    height: 47px;
    padding: 0 32px;
    background: transparent;
    border: 1.5px solid rgba(245, 245, 243, 0.3);
    border-left: none;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tl-newsletter-form button:hover {
    background: #fff;
    color: var(--ink);
}

.tl-foot-main {
    padding: 80px var(--gutter) 0;
}

.tl-foot-inner {
    max-width: 1920px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px;
}

.tl-foot-logo {
    height: 24px;
    width: auto;
    margin-bottom: 24px;
}

.tl-foot-about {
    max-width: 320px;
    margin-bottom: 24px;
}

.tl-foot-badge {
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    opacity: 0.6;
    line-height: 2;
}

.tl-foot-col h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 28px;
}

.tl-foot-col a {
    display: block;
    font-size: 12px;
    letter-spacing: 0.96px;
    color: #fff;
    margin-bottom: 20px;
    transition: opacity 0.2s ease;
}

.tl-foot-col a:hover {
    opacity: 0.6;
}

.tl-foot-bottom {
    max-width: 1920px;
    margin: 0 auto;
    padding: 24px var(--gutter);
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.tl-foot-copy {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.4;
}

.tl-foot-social {
    display: flex;
    gap: 32px;
}

.tl-foot-social a {
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    opacity: 0.4;
    transition: opacity 0.2s ease;
}

.tl-foot-social a:hover {
    opacity: 1;
}






/* ============================================================
   SERVICE PAGE CSS STARTS HERE
   Boat Service & Repair. All custom classes prefixed tl-svc-.
   ============================================================ */

/* ---- hero ---- */
.tl-svc-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    overflow: hidden;
    background: var(--ink-deep);
}

.tl-svc-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.tl-svc-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top,
            #0e0e0e 0%,
            rgba(14, 14, 14, 0.55) 28%,
            rgba(14, 14, 14, 0.1) 60%,
            rgba(14, 14, 14, 0) 100%);
}

.tl-svc-hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 var(--gutter) 149px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tl-svc-hero-eyebrow {
    margin-bottom: 28px;
}

.tl-svc-hero-title {
    margin-bottom: 36px;
}

.tl-svc-hero-para {
    max-width: 538px;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.tl-svc-hero-actions .tl-btn {
    min-width: 180px;
}

/* ---- intro ---- */
.tl-svc-intro {
    padding-top: 100px;
    padding-bottom: 100px;
}

.tl-svc-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.tl-svc-intro-left .tl-eyebrow {
    margin-bottom: 28px;
}

.tl-svc-intro-title {
    margin-bottom: 44px;
}

.tl-svc-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    min-height: 88px;
}

.tl-svc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 16px 12px;
}

.tl-svc-stat+.tl-svc-stat {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.tl-svc-stat-label {
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    opacity: 0.6;
    line-height: 1;
}

.tl-svc-stat-value {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 24px;
    line-height: 1;
    color: #fff;
}

.tl-svc-intro-para {
    margin-bottom: 16px;
    opacity: 0.9;
}

.tl-svc-intro-btn {
    margin-top: 24px;
    min-width: 180px;
}

/* ---- photo grid break ---- */
.tl-svc-photogrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
}

.tl-svc-photo {
    position: relative;
    min-height: 340px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.tl-svc-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 20, 20, 0.95) 0%, rgba(20, 20, 20, 0) 55%);
}

.tl-svc-photo-label {
    position: relative;
    z-index: 1;
    padding: 0 56px 47px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: #fff;
}

/* ---- services offered ---- */
.tl-svc-offer {
    background: var(--ink-14);
    padding: 100px 0;
}

.tl-svc-offer-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 56px;
}

.tl-svc-offer-headline .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-svc-offer-intro {
    opacity: 0.6;
    max-width: 840px;
}

.tl-svc-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
}

.tl-svc-offer-card {
    background: var(--ink-14);
    padding: 40px 36px;
    border-top: 2px solid transparent;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.tl-svc-offer-card:hover {
    border-top-color: var(--red);
    background: #181818;
}

.tl-svc-offer-num {
    font-family: 'Epilogue', sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 14px;
    letter-spacing: 1.3px;
    opacity: 0.4;
    margin-bottom: 28px;
}

.tl-svc-offer-title {
    color: #fff;
    line-height: 24px;
    margin-bottom: 20px;
}

.tl-svc-offer-text {
    opacity: 0.6;
    margin-bottom: 28px;
    flex: 1;
}

.tl-svc-offer-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #fff;
}

.tl-svc-offer-link:hover {
    color: #fff;
}

.tl-svc-offer-link .tl-arrow {
    transition: transform 0.25s ease;
}

.tl-svc-offer-link:hover .tl-arrow {
    transform: translateX(4px);
}

/* ---- why tilly's ---- */
.tl-svc-why {
    border-top: 1px solid var(--line);
    padding-top: 94px;
    padding-bottom: 106px;
}

.tl-svc-why-head {
    margin-bottom: 48px;
}

.tl-svc-why-head .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-svc-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
}

.tl-svc-why-card {
    background: var(--ink);
    padding: 44px 36px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.tl-svc-why-num {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 40px;
    line-height: 48px;
    text-transform: uppercase;
    opacity: 0.16;
    margin-bottom: 24px;
}

.tl-svc-why-title {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 24px;
    line-height: 24px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
}

.tl-svc-why-text {
    opacity: 0.6;
}

/* ---- schedule service form ---- */
.tl-svc-form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
}

.tl-svc-form-media {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.tl-svc-form-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(20, 20, 20, 0.95) 0%,
            rgba(20, 20, 20, 0.55) 45%,
            rgba(20, 20, 20, 0.3) 100%);
}

.tl-svc-form-media-inner {
    position: relative;
    z-index: 1;
    flex: 1;
    width: 100%;
    padding: 80px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tl-svc-form-media-title {
    margin: 24px 0 0;
}

.tl-svc-form-list {
    max-width: 360px;
    margin-top: 48px;
}

.tl-svc-form-list li {
    position: relative;
    padding: 11px 0 11px 19px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #fff;
}

.tl-svc-form-list li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tl-svc-form-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 2.5px;
    background: var(--red);
}

.tl-svc-form-panel {
    background: var(--ink-1a);
    padding: 72px 64px;
}

.tl-svc-form-panel .tl-eyebrow {
    margin-bottom: 16px;
}

.tl-svc-form-heading {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 40px;
    line-height: 48px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 32px;
}

.tl-svc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
    margin-bottom: 20px;
}

.tl-svc-form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.tl-svc-field {
    display: flex;
    flex-direction: column;
}

.tl-svc-field label {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

.tl-svc-field label span {
    color: var(--red);
}

.tl-svc-field input,
.tl-svc-field select,
.tl-svc-field textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    height: 42px;
    padding: 0 14px;
    transition: border-color 0.2s ease;
}

.tl-svc-field input[type="date"] {
    color-scheme: dark;
}

.tl-svc-field textarea {
    height: 100px;
    padding: 11px 14px;
    line-height: 20px;
    resize: vertical;
}

.tl-svc-field input::placeholder,
.tl-svc-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.tl-svc-field input:focus,
.tl-svc-field select:focus,
.tl-svc-field textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.32);
}

.tl-svc-field select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23ffffff' stroke-opacity='0.5' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.tl-svc-field select option {
    background: var(--ink-1a);
    color: #fff;
}

.tl-svc-form-divider {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 10px;
    margin: 12px 0 24px;
}

.tl-svc-form-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 12px;
}

.tl-svc-form-note {
    font-size: 11px;
    line-height: 17.6px;
    color: rgba(255, 255, 255, 0.28);
    max-width: 340px;
}

.tl-svc-form-submit {
    flex-shrink: 0;
    background: var(--red);
    border: 1px solid var(--red);
    color: #fff;
    height: 44px;
    padding: 0 28px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease;
    white-space: nowrap;
}

.tl-svc-form-submit:hover {
    background: #b01b1d;
}

/* ---- faq ---- */
.tl-svc-faq {
    background: var(--ink);
    border-top: 1px solid var(--line);
    padding-top: 110px;
    padding-bottom: 110px;
}

.tl-svc-faq-grid {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 80px;
}

.tl-svc-faq-intro .tl-eyebrow {
    margin-bottom: 32px;
}

.tl-svc-faq-intro h2 {
    margin-bottom: 40px;
}

.tl-svc-faq-muted {
    color: rgba(244, 243, 240, 0.35);
}

.tl-svc-faq-copy {
    max-width: 400px;
    margin-bottom: 24px;
}

.tl-svc-faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: rgba(244, 243, 240, 0.55);
    transition: color 0.2s ease;
}

.tl-svc-faq-contact:hover {
    color: #fff;
}

.tl-svc-faq-contact .tl-arrow {
    transition: transform 0.25s ease;
}

.tl-svc-faq-contact:hover .tl-arrow {
    transform: translateX(4px);
}

.tl-svc-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.tl-svc-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tl-svc-faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
    text-align: left;
}

.tl-svc-faq-q>span:first-child {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 15px;
    letter-spacing: -0.15px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.3;
}

.tl-svc-faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.tl-svc-faq-item.is-open .tl-svc-faq-icon {
    transform: rotate(45deg);
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.tl-svc-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.tl-svc-faq-item.is-open .tl-svc-faq-a {
    max-height: 260px;
}

.tl-svc-faq-a .tl-para {
    padding: 0 40px 24px 0;
    opacity: 0.6;
}


/* ============================================================
   STORAGE PAGE CSS STARTS HERE
   White Glove Seasonal Storage. Storage-specific classes
   prefixed tl-stg-; reuses tl-svc-why / tl-svc-form / tl-svc-faq
   / tl-break patterns for shared sections.
   ============================================================ */

/* ---- shared status pill ---- */
.tl-stg-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 30px;
    padding: 0 16px;
    border: 1px solid rgba(203, 33, 35, 0.4);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}

.tl-stg-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: var(--red);
    flex-shrink: 0;
}

/* ---- hero ---- */
.tl-stg-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    overflow: hidden;
    background: var(--ink-deep);
}

.tl-stg-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.tl-stg-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top,
            #0e0e0e 0%,
            rgba(14, 14, 14, 0.55) 30%,
            rgba(14, 14, 14, 0.15) 65%,
            rgba(14, 14, 14, 0.35) 100%);
}

.tl-stg-breadcrumb {
    position: absolute;
    z-index: 3;
    top: 24px;
    left: var(--gutter);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.tl-stg-breadcrumb a:hover {
    color: #fff;
}

.tl-stg-breadcrumb-current {
    color: #fff;
}

.tl-stg-hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 120px var(--gutter);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tl-stg-hero-eyebrow {
    margin-bottom: 20px;
}

.tl-stg-hero-pill {
    align-self: flex-start;
    margin-bottom: 32px;
}

.tl-stg-hero-title {
    margin-bottom: 36px;
}

.tl-stg-hero-para {
    max-width: 600px;
    margin-bottom: 36px;
    opacity: 0.9;
}

.tl-stg-hero-inner .tl-btn {
    align-self: flex-start;
    min-width: 180px;
}

/* ---- intro ---- */
.tl-stg-intro {
    padding-top: 100px;
    padding-bottom: 100px;
}

.tl-stg-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.tl-stg-badge {
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 32px;
}

.tl-stg-badge-num {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 40px;
    line-height: 1;
    color: #fff;
}

.tl-stg-badge-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
}

.tl-stg-intro-para {
    margin-bottom: 16px;
    opacity: 0.9;
}

.tl-stg-intro-btn {
    margin-top: 24px;
    min-width: 180px;
}

/* ---- storage features (icon row) ---- */
.tl-stg-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.tl-stg-feature {
    padding: 52px 50px;
    text-align: center;
}

.tl-stg-feature+.tl-stg-feature {
    border-left: 1px solid var(--line);
}

.tl-stg-feature-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 23px;
}

.tl-stg-feature-title {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
}

.tl-stg-feature-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    opacity: 0.6;
}

/* ---- photo grid (one tall + 2x2) ---- */
.tl-stg-photogrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 300px 280px;
    gap: 2px;
}

.tl-stg-photo {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    color: inherit;
}

.tl-stg-photo--tall {
    grid-row: 1 / span 2;
}

.tl-stg-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 20, 20, 0.95) 0%, rgba(20, 20, 20, 0) 55%);
}

.tl-stg-photo .tl-svc-photo-label {
    padding: 0 40px 40px;
}

/* ---- packages ---- */
.tl-stg-packages {
    padding-top: 78px;
    padding-bottom: 100px;
}

.tl-stg-pkg-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 64px;
}

.tl-stg-pkg-headline .tl-stg-pill {
    margin-bottom: 24px;
}

.tl-stg-pkg-intro {
    opacity: 0.6;
    max-width: 860px;
}

.tl-stg-pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
}

.tl-stg-pkg {
    background: var(--ink-14);
    padding: 46px 36px 36px;
    border-top: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.tl-stg-pkg--featured {
    background: var(--ink-1a);
    border-top-color: var(--red);
}

.tl-stg-pkg-label {
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.4;
    margin-bottom: 24px;
}

.tl-stg-pkg-label--featured {
    color: var(--red);
    opacity: 1;
}

.tl-stg-pkg-title {
    color: #fff;
    line-height: 24px;
    margin-bottom: 22px;
}

.tl-stg-pkg-text {
    opacity: 0.6;
    margin-bottom: 36px;
}

.tl-stg-pkg-features {
    margin-top: auto;
}

.tl-stg-pkg-feat {
    position: relative;
    padding: 12px 0 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
}

.tl-stg-pkg-dot {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: var(--red);
}

.tl-stg-pkg-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.55;
    transition: opacity 0.25s ease;
}

.tl-stg-pkg-link:hover {
    opacity: 1;
    color: #fff;
}

.tl-stg-pkg-link--bright {
    opacity: 1;
}

.tl-stg-pkg-link .tl-arrow {
    transition: transform 0.25s ease;
}

.tl-stg-pkg-link:hover .tl-arrow {
    transform: translateX(4px);
}

/* ---- fullbleed break (storage tuning) ---- */
.tl-stg-break .tl-break-inner {
    min-height: 720px;
}

.tl-stg-break .tl-eyebrow {
    margin-bottom: 28px;
}

.tl-stg-break h2 {
    margin-bottom: 28px;
}

.tl-stg-break .tl-para {
    max-width: 465px;
    margin-bottom: 36px;
}

/* ============================================================
   PRO SHOP PAGE CSS STARTS HERE
   Pro-shop-specific classes prefixed tl-pro-.
   ============================================================ */

/* wide inset wrapper (~120px gutter) used by brands / expert sections */
.tl-pro-pad {
    max-width: 1920px;
    margin: 0 auto;
    padding-left: clamp(24px, 6.25vw, 120px);
    padding-right: clamp(24px, 6.25vw, 120px);
}

/* ---- hero ---- */
.tl-pro-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    overflow: hidden;
    background: var(--ink-deep);
}

.tl-pro-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.tl-pro-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top,
            #0e0e0e 0%,
            rgba(14, 14, 14, 0.5) 30%,
            rgba(14, 14, 14, 0) 70%);
}

.tl-pro-hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 120px clamp(24px, 6.09vw, 117px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tl-pro-hero-eyebrow {
    margin-bottom: 28px;
}

.tl-pro-hero-title {
    margin-bottom: 36px;
}

.tl-pro-hero-para {
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.tl-pro-hero-inner .tl-btn {
    align-self: flex-start;
    min-width: 160px;
}

/* ---- categories ---- */
.tl-pro-cats {
    padding-top: 48px;
    padding-bottom: 100px;
}

.tl-pro-cats-head {
    margin-bottom: 36px;
}

.tl-pro-cats-head .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-pro-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.tl-pro-cat-card {
    background: var(--ink-14);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.tl-pro-cat-img {
    padding-top: 66.89%;
}

.tl-pro-cat-info {
    padding: 24px;
}

.tl-pro-cat-label {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.5;
    margin-bottom: 14px;
}

.tl-pro-cat-title {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 24px;
    line-height: 24px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
}

.tl-pro-cat-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    opacity: 0.6;
}

/* ---- expert fitting split ---- */
.tl-pro-fit {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.tl-pro-fit-media {
    position: relative;
    min-height: 800px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.tl-pro-fit-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 14, 14, 0.8) 0%, rgba(14, 14, 14, 0) 45%);
}

.tl-pro-fit-overlay {
    position: relative;
    z-index: 1;
    padding: 0 clamp(24px, 4vw, 60px) 56px;
}

.tl-pro-fit-overlay .tl-eyebrow {
    margin-bottom: 8px;
}

.tl-pro-fit-overlay-title {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
}

.tl-pro-fit-panel {
    background: var(--ink-1a);
    padding: clamp(48px, 5vw, 82px) clamp(28px, 4.2vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tl-pro-fit-panel .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-pro-fit-title {
    margin-bottom: 24px;
}

.tl-pro-fit-para {
    max-width: 640px;
    margin-bottom: 40px;
    opacity: 0.7;
}

.tl-pro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    margin-bottom: 40px;
}

.tl-pro-stat {
    border-left: 1px solid var(--red);
    padding-left: 17px;
}

.tl-pro-stat-value {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 6px;
}

.tl-pro-stat-sub {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    opacity: 0.55;
}

.tl-pro-fit-btn {
    align-self: flex-start;
    min-width: 160px;
}

/* ---- brands ---- */
.tl-pro-brands {
    padding-top: 96px;
    padding-bottom: 96px;
}

.tl-pro-brands-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.tl-pro-brands-head .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-pro-brands-copy {
    opacity: 0.7;
    margin-bottom: 40px;
    max-width: 600px;
}

.tl-pro-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tl-pro-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 68px;
    padding: 0 27px;
    background: var(--ink-1a);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    white-space: nowrap;
}

/* ---- expert / difference ---- */
.tl-pro-expert {
    padding-top: 112px;
    padding-bottom: 88px;
}

.tl-pro-expert>.tl-eyebrow {
    margin-bottom: 24px;
}

.tl-pro-expert-title {
    margin-bottom: 28px;
}

.tl-pro-expert-intro {
    max-width: 961px;
    opacity: 0.7;
    margin-bottom: 72px;
}

.tl-pro-expert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.tl-pro-expert-num {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 60px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.16;
    margin-bottom: 16px;
}

.tl-pro-expert-h {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 24px;
    line-height: 24px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
}

.tl-pro-expert-text {
    opacity: 0.6;
}

/* ---- cta bar ---- */
.tl-pro-cta {
    padding: 0 var(--gutter);
}

.tl-pro-cta-bar {
    max-width: 1504px;
    margin: 0 auto;
    background: var(--red);
    min-height: 119px;
    padding: 24px clamp(28px, 4vw, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.tl-pro-cta-title {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: clamp(24px, 2.4vw, 40px);
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.tl-pro-cta-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    background: #fff;
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: opacity 0.25s ease;
}

.tl-pro-cta-btn:hover {
    color: var(--ink);
    opacity: 0.85;
}

/* ---- locations ---- */
.tl-pro-loc {
    padding: 80px var(--gutter);
}

.tl-pro-loc-inner {
    max-width: 1504px;
    margin: 0 auto;
}

.tl-pro-loc-head {
    margin-bottom: 48px;
}

.tl-pro-loc-head .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-pro-loc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tl-pro-loc-card {
    background: var(--ink-1a);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px 33px;
}

.tl-pro-loc-city {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 36px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 22px;
}

.tl-pro-loc-phone {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: #fff;
    opacity: 0.85;
    margin-bottom: 16px;
}

.tl-pro-loc-phone:hover {
    color: #fff;
}


.tl-pro-loc-dir {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--red);
    transition: opacity 0.2s ease;
}

.tl-pro-loc-dir:hover {
    color: var(--red);
    opacity: 0.75;
}



/* ============================================================
   MASTERCRAFT BRAND PAGE CSS STARTS HERE
   Brand-page-specific classes prefixed tl-mc-; reuses
   tl-inv-* (inventory) and tl-svc-faq-* (accordion).
   ============================================================ */

/* centered 1280 content column used across most sections */
.tl-mc-inner {
    max-width: 1280px;
    margin: 0 auto;
}

/* ---- hero ---- */
.tl-mc-hero {
    position: relative;
    min-height: 960px;
    display: flex;
    overflow: hidden;
    background: var(--ink-deep);
}

.tl-mc-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.tl-mc-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top,
            #0e0e0e 0%,
            rgba(14, 14, 14, 0.45) 35%,
            rgba(14, 14, 14, 0) 75%);
}

.tl-mc-hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 20px var(--gutter) 96px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tl-mc-hero-eyebrow {
    margin-bottom: 28px;
}

.tl-mc-hero-title {
    max-width: 1280px;
    margin-bottom: 32px;
}

.tl-mc-hero-para {
    max-width: 600px;
    margin-bottom: 36px;
    opacity: 0.9;
}

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

.tl-mc-hero-actions .tl-btn {
    min-width: 160px;
}

/* ---- shared dim paragraph ---- */
.tl-mc-dim {
    color: rgba(255, 255, 255, 0.6);
}

/* ---- partnership overview ---- */
.tl-mc-partner {
    padding-top: 80px;
    padding-bottom: 80px;
}

.tl-mc-partner-grid {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 80px;
    align-items: start;
}

.tl-mc-partner-head .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-mc-partner-body .tl-para {
    margin-bottom: 16px;
}

.tl-mc-partner-body .tl-para:last-child {
    margin-bottom: 0;
}

.tl-mc-divider-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 56px;
}

.tl-mc-divider-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.tl-mc-divider-text {
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

/* ---- series guide ---- */
.tl-mc-series {
    padding-top: 81px;
    padding-bottom: 88px;
}

.tl-mc-series-head .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-mc-series-head h2 {
    margin-bottom: 64px;
}

.tl-mc-tabs {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 64px;
}

.tl-mc-tab {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 22px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}

.tl-mc-tab:first-child {
    padding-left: 0;
}

.tl-mc-tab:hover {
    color: #fff;
}

.tl-mc-tab.is-active {
    color: #fff;
}

.tl-mc-tab.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1.5px;
    background: var(--red);
}

.tl-mc-tab:first-child.is-active::after {
    width: calc(100% - 22px);
}

.tl-mc-series-img {
    padding-top: 40.625%;
    margin-bottom: 64px;
}

.tl-mc-series-detail {
    display: grid;
    grid-template-columns: 608px 1fr;
    gap: 64px;
}

.tl-mc-flagship {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    margin-bottom: 24px;
}

.tl-mc-series-title {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 48px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
}

.tl-mc-series-tagline {
    font-size: 16px;
    letter-spacing: 0.5px;
    color: var(--red);
    margin-bottom: 24px;
}

.tl-mc-series-body {
    opacity: 0.7;
    margin-bottom: 32px;
}

.tl-mc-series-modlabel {
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.6;
    margin-bottom: 16px;
}

.tl-mc-models {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
}

.tl-mc-model {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 42px;
    padding: 0 22px;
    background: var(--ink-1a);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 18px;
    color: #fff;
    white-space: nowrap;
}

.tl-mc-series-btn {
    min-width: 228px;
}

.tl-mc-series-right {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tl-mc-feature {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tl-mc-feature-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    margin-bottom: 8px;
}

.tl-mc-feature-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    opacity: 0.6;
}

/* ---- tech section ---- */
.tl-mc-tech-band {
    position: relative;
    min-height: 640px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.tl-mc-tech-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(14, 14, 14, 0.92) 0%, rgba(14, 14, 14, 0.5) 45%, rgba(14, 14, 14, 0) 80%);
}

.tl-mc-tech-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.tl-mc-tech-overlay .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-mc-tech-title {
    margin-bottom: 24px;
}

.tl-mc-tech-body {
    max-width: 560px;
    margin-bottom: 36px;
    opacity: 0.8;
}

.tl-mc-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px var(--gutter);
}

.tl-mc-stat {
    text-align: center;
    padding: 0 16px;
}

.tl-mc-stat-num {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 48px;
    line-height: 1;
    color: var(--red);
    margin-bottom: 8px;
}

.tl-mc-stat-label {
    font-size: 16px;
    color: #fff;
    opacity: 0.6;
}

/* ---- featured inventory ---- */
.tl-mc-inv {
    padding-top: 88px;
    padding-bottom: 88px;
}

.tl-mc-inv-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px;
}

.tl-mc-inv-head .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-mc-inv-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* ---- test drive cta ---- */
.tl-mc-testdrive {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.tl-mc-testdrive::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(14, 14, 14, 0.92) 0%, rgba(14, 14, 14, 0.5) 45%, rgba(14, 14, 14, 0) 80%);
}

.tl-mc-testdrive-inner {
    position: relative;
    z-index: 1;
    max-width: 1920px;
    margin: 0 auto;
    min-height: 660px;
    padding: 80px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.tl-mc-testdrive-content {
    max-width: 560px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.tl-mc-testdrive-content .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-mc-testdrive-title {
    margin-bottom: 24px;
}

.tl-mc-testdrive-para {
    margin-bottom: 36px;
    opacity: 0.85;
}

/* ---- faq overrides (480 / 720 split) ---- */
.tl-mc-faq-grid {
    grid-template-columns: 480px 1fr;
}

/* ---- locations strip ---- */
.tl-mc-loc {
    padding-top: 81px;
    padding-bottom: 88px;
}

.tl-mc-loc-head {
    text-align: center;
    margin-bottom: 48px;
}

.tl-mc-loc-head .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-mc-loc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tl-mc-loc-card {
    background: var(--ink-14);
    padding: 32px;
}

.tl-mc-loc-label {
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 24px;
}

.tl-mc-loc-city {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
}

.tl-mc-loc-addr {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    opacity: 0.6;
    margin-bottom: 12px;
}

.tl-mc-loc-phone {
    display: block;
    font-size: 16px;
    color: #fff;
    opacity: 0.85;
    margin-bottom: 16px;
}

.tl-mc-loc-dir {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--red);
    transition: opacity 0.2s ease;
}

.tl-mc-loc-dir:hover {
    color: var(--red);
    opacity: 0.75;
}


/* ============================================================
   SELL / TRADE PAGE CSS STARTS HERE
   Sell-trade-specific classes prefixed tl-st-; reuses
   tl-mc-hero*, tl-mc-stat*, tl-svc-form-*, tl-svc-faq-*.
   ============================================================ */

/* ---- hero (wider left inset than brand hero) ---- */
.tl-st-hero .tl-mc-hero-inner {
    padding-left: clamp(24px, 8.33vw, 160px);
    padding-right: clamp(24px, 8.33vw, 160px);
}

/* ---- stats bar (white numbers) ---- */
.tl-st-stats {
    padding-top: 40px;
    padding-bottom: 40px;
}

.tl-st-statnum {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 48px;
    line-height: 1;
    color: #fff;
    margin-bottom: 8px;
}

/* ---- how the process works ---- */
.tl-st-how {
    padding-top: 96px;
    padding-bottom: 96px;
}

.tl-st-how>.tl-eyebrow {
    margin-bottom: 24px;
}

.tl-st-how-title {
    margin-bottom: 48px;
}

.tl-st-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.tl-st-how-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 36px;
}

.tl-st-how-num {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 48px;
    line-height: 1;
    color: var(--red);
    opacity: 0.55;
    margin-bottom: 24px;
}

.tl-st-how-h {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 24px;
    line-height: 24px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
}

.tl-st-how-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    opacity: 0.6;
}

.tl-st-how-btn {
    min-width: 200px;
}

/* ---- valuation form additions ---- */
.tl-st-form-media-body {
    margin-top: 24px;
    opacity: 0.8;
    max-width: 360px;
}

.tl-st-checklist {
    margin-top: 40px;
    max-width: 360px;
}

.tl-st-checklist li {
    position: relative;
    padding: 9px 0 9px 28px;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #fff;
}

.tl-st-checklist li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 9px;
    color: var(--red);
    font-size: 14px;
    font-weight: 700;
}

.tl-st-form-submit {
    width: 100%;
    height: 51px;
    margin-top: 8px;
    font-size: 14px;
}

.tl-st-form-note {
    margin-top: 12px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ---- the smarter way to sell (content + image split) ---- */
.tl-st-why {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.tl-st-why-content {
    padding: clamp(48px, 5vw, 96px) clamp(28px, 4.2vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tl-st-why-content .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-st-why-title {
    margin-bottom: 24px;
}

.tl-st-why-intro {
    max-width: 640px;
    opacity: 0.7;
    margin-bottom: 40px;
}

.tl-st-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.tl-st-why-item {
    border-left: 1px solid var(--red);
    padding-left: 17px;
}

.tl-st-why-h {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.tl-st-why-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    opacity: 0.6;
}

.tl-st-why-btn {
    align-self: flex-start;
    min-width: 200px;
}

.tl-st-why-media {
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

/* ---- boats we buy ---- */
.tl-st-brands {
    padding-top: 97px;
    padding-bottom: 97px;
}

.tl-st-brands-head {
    margin-bottom: 40px;
}

.tl-st-brands-head .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-st-brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tl-st-brand {
    display: flex;
    align-items: center;
    gap: 23px;
    background: var(--ink);
    padding: 20px 24px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

.tl-st-brand i {
    font-style: normal;
    color: var(--red);
    font-size: 18px;
}

/* ---- bottom cta ---- */
.tl-st-cta {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.tl-st-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 14, 14, 0.82) 0%, rgba(40, 12, 14, 0.78) 60%, rgba(14, 14, 14, 0.88) 100%);
}

.tl-st-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    min-height: 540px;
    padding: 96px var(--gutter);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tl-st-cta-inner .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-st-cta-title {
    margin-bottom: 28px;
}

.tl-st-cta-para {
    max-width: 560px;
    margin-bottom: 36px;
    opacity: 0.85;
}

.tl-st-cta-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.tl-st-cta-actions .tl-btn {
    min-width: 180px;
}



/* ============================================================
   FINANCING PAGE — CSS
   Hero · payment calculator · stats · pre-approved split ·
   trade-in · FAQ. All prefixed tl-fin-.
   ============================================================ */

/* ---- hero ---- */
.tl-fin-hero {
    position: relative;
    min-height: 880px;
    display: flex;
    overflow: hidden;
    background: var(--ink-deep);
}

.tl-fin-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center right;
}

.tl-fin-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top,
            #0e0e0e 0%,
            rgba(14, 14, 14, 0.55) 45%,
            rgba(14, 14, 14, 0) 75%);
}

.tl-fin-crumb {
    position: absolute;
    z-index: 3;
    top: 24px;
    left: var(--gutter);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.tl-fin-crumb a:hover {
    color: #fff;
}

.tl-fin-crumb-current {
    color: #fff;
}

.tl-fin-hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 120px var(--gutter);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tl-fin-hero-eyebrow {
    margin-bottom: 28px;
}

.tl-fin-hero-title {
    margin-bottom: 32px;
}

.tl-fin-hero-para {
    max-width: 600px;
    margin-bottom: 36px;
    opacity: 0.9;
}

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

.tl-fin-hero-actions .tl-btn {
    min-width: 188px;
}

/* ---- payment calculator ---- */
.tl-fin-calc {
    padding-top: 100px;
    padding-bottom: 100px;
}

.tl-fin-calc-title {
    margin-top: 24px;
}

.tl-fin-calc-intro {
    margin-top: 24px;
    max-width: 640px;
    opacity: 0.85;
}

.tl-fin-calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
    align-items: stretch;
}

.tl-fin-calc-inputs {
    background: var(--ink-1a);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.tl-fin-field label {
    display: block;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.tl-fin-input {
    display: flex;
    align-items: center;
    height: 46px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 0 16px;
    transition: border-color 0.2s ease;
}

.tl-fin-input:focus-within {
    border-color: rgba(255, 255, 255, 0.4);
}

.tl-fin-prefix,
.tl-fin-suffix {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.tl-fin-prefix {
    margin-right: 8px;
}

.tl-fin-suffix {
    margin-left: 8px;
}

.tl-fin-input input,
.tl-fin-input select {
    flex: 1;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
}

.tl-fin-input select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' fill-opacity='0.5' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
}

.tl-fin-input select option {
    background: var(--ink-1a);
    color: #fff;
}

/* result card (light) */
.tl-fin-calc-result {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 40px;
    display: flex;
    flex-direction: column;
    color: var(--ink);
}

.tl-fin-result-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--ink);
    opacity: 0.6;
}

.tl-fin-result-amount {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 84px;
    line-height: 0.9;
    color: var(--ink);
    margin-top: 22px;
}

.tl-fin-result-rows {
    margin-top: 34px;
}

.tl-fin-result-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 15px;
    font-weight: 300;
    color: var(--ink);
}

.tl-fin-result-row>span:first-child {
    opacity: 0.6;
}

.tl-fin-result-btn {
    width: 100%;
    margin-top: auto;
}

.tl-fin-calc-result .tl-fin-result-rows+.tl-fin-result-btn {
    margin-top: 30px;
}

/* ---- stats strip ---- */
.tl-fin-stats-wrap {
    padding-bottom: 100px;
}

.tl-fin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tl-fin-stat {
    padding: 44px 0 44px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.tl-fin-stat:first-child {
    padding-left: 0;
}

.tl-fin-stat:last-child {
    border-right: none;
}

.tl-fin-stat-num {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 48px;
    line-height: 1;
    color: #fff;
}

.tl-fin-stat-label {
    margin-top: 16px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

/* ---- get pre-approved (split) ---- */
.tl-fin-apply {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 720px;
}

.tl-fin-apply-text {
    background: linear-gradient(158deg, rgb(44, 0, 6) 0%, rgba(20, 20, 20, 0.98) 84%);
    display: flex;
    align-items: center;
    padding: 80px var(--gutter);
}

.tl-fin-apply-inner {
    max-width: 580px;
    margin-left: auto;
    width: 100%;
}

.tl-fin-apply-title {
    margin-top: 24px;
    margin-bottom: 28px;
}

.tl-fin-apply-para {
    max-width: 580px;
}

.tl-fin-apply-note {
    margin-top: 22px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.55);
}

.tl-fin-apply-text .tl-btn {
    min-width: 188px;
}

.tl-fin-apply-media {
    position: relative;
    overflow: hidden;
}

.tl-fin-apply-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- trade-in ---- */
.tl-fin-trade {
    position: relative;
    min-height: 800px;
    display: flex;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.tl-fin-trade-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right,
            rgba(14, 14, 14, 0) 20%,
            rgba(14, 14, 14, 0.6) 60%,
            rgba(14, 14, 14, 0.8) 100%);
}

.tl-fin-trade-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.tl-fin-trade-content {
    max-width: 580px;
}

.tl-fin-trade-title {
    margin-top: 24px;
    margin-bottom: 28px;
}

.tl-fin-trade-para {
    margin-bottom: 36px;
    opacity: 0.92;
}

.tl-fin-trade-content .tl-btn {
    min-width: 236px;
}

/* ---- faq ---- */
.tl-fin-faq {
    padding-top: 100px;
    padding-bottom: 100px;
}

.tl-fin-faq-title {
    margin-top: 24px;
}

.tl-fin-faq-list {
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* reuse the shared accordion (.tl-svc-faq-item) markup & JS */
.tl-fin-faq-list .tl-svc-faq-item:first-child {
    border-top: none;
}


/* ============================================================
   ABOUT PAGE — CSS
   Hero · stats · our story + image · culture split ·
   community cards · FAQ · CTA. All prefixed tl-ab-.
   ============================================================ */

/* ---- hero ---- */
.tl-ab-hero {
    position: relative;
    min-height: 800px;
    display: flex;
    overflow: hidden;
    background: var(--ink-deep);
}

.tl-ab-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.tl-ab-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top,
            #0e0e0e 0%,
            rgba(14, 14, 14, 0.55) 45%,
            rgba(14, 14, 14, 0) 75%);
}

.tl-ab-crumb {
    position: absolute;
    z-index: 3;
    top: 24px;
    left: var(--gutter);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.tl-ab-crumb a:hover {
    color: #fff;
}

.tl-ab-crumb-current {
    color: #fff;
}

.tl-ab-hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 var(--gutter) 110px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tl-ab-hero-eyebrow {
    margin-bottom: 28px;
}

.tl-ab-hero-title {
    margin-bottom: 32px;
}

.tl-ab-hero-para {
    max-width: 640px;
    opacity: 0.9;
}

/* ---- stats strip ---- */
.tl-ab-stats-wrap {
    padding-top: 80px;
    padding-bottom: 80px;
}

.tl-ab-stats-inner {
    max-width: 1600px;
    margin: 0 auto;
}

.tl-ab-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tl-ab-stat {
    padding: 44px 0 44px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.tl-ab-stat:first-child {
    padding-left: 0;
}

.tl-ab-stat:last-child {
    border-right: none;
}

.tl-ab-stat-num {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 48px;
    line-height: 1;
    color: #fff;
}

.tl-ab-stat-label {
    margin-top: 16px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

/* ---- our story + image ---- */
.tl-ab-story {
    padding-top: 40px;
    padding-bottom: 100px;
}

.tl-ab-story-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 720px;
    gap: 120px;
    align-items: stretch;
}

.tl-ab-story-eyebrow {
    opacity: 0.82;
    margin-bottom: 36px;
}

.tl-ab-story-title {
    margin-bottom: 36px;
}

.tl-ab-story-para {
    opacity: 0.82;
    margin-bottom: 40px;
}

.tl-ab-story-sub {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 16px;
}

.tl-ab-accent {
    color: var(--red);
}

.tl-ab-story-text .tl-ab-story-para:last-child {
    margin-bottom: 0;
}

.tl-ab-story-media {
    position: relative;
    overflow: hidden;
    min-height: 560px;
}

.tl-ab-story-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- culture split ---- */
.tl-ab-culture {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 720px;
}

.tl-ab-culture-media {
    position: relative;
    overflow: hidden;
}

.tl-ab-culture-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tl-ab-culture-text {
    background: var(--ink-1a);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px var(--gutter);
}

.tl-ab-culture-inner {
    width: 100%;
    max-width: 580px;
}

.tl-ab-culture-title {
    margin-top: 22px;
    margin-bottom: 28px;
}

.tl-ab-culture-para {
    opacity: 0.92;
}

/* ---- in the community ---- */
.tl-ab-community {
    padding-top: 100px;
    padding-bottom: 100px;
}

.tl-ab-community-title {
    margin-top: 24px;
    margin-bottom: 48px;
}

.tl-ab-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tl-ab-card {
    background: var(--ink-14);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tl-ab-card-img {
    padding-top: 75%;
    background: linear-gradient(160deg, #060c18 0%, #0d1d34 50%, #112440 100%);
}

.tl-ab-card-body {
    padding: 24px;
}

.tl-ab-card-title {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    margin-top: 18px;
    margin-bottom: 18px;
}

.tl-ab-card-text {
    opacity: 0.7;
}

/* ---- faq ---- */
.tl-ab-faq {
    padding-top: 100px;
    padding-bottom: 100px;
}

.tl-ab-faq-title {
    margin-top: 24px;
}

.tl-ab-faq-list {
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tl-ab-faq-list .tl-svc-faq-item:first-child {
    border-top: none;
}

/* ---- come see us cta ---- */
.tl-ab-cta {
    padding-top: 40px;
    padding-bottom: 120px;
    text-align: center;
}

.tl-ab-cta-title {
    margin-bottom: 32px;
}

.tl-ab-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.tl-ab-cta-actions .tl-btn {
    min-width: 188px;
}



/* ============================================================
   CONTACT PAGE — CSS
   Hero + message form · location cards w/ hours · test-drive
   CTA · FAQ. All prefixed tl-ct-.
   ============================================================ */

/* ---- hero + form ---- */
.tl-ct-hero {
    position: relative;
    min-height: 960px;
    display: flex;
    overflow: hidden;
    background: var(--ink-deep);
}

.tl-ct-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.tl-ct-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top,
            #0e0e0e 0%,
            rgba(14, 14, 14, 0.6) 75%);
}

.tl-ct-crumb {
    position: absolute;
    z-index: 3;
    top: 24px;
    left: var(--gutter);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.tl-ct-crumb a:hover {
    color: #fff;
}

.tl-ct-crumb-current {
    color: #fff;
}

.tl-ct-hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px var(--gutter) 96px;
    display: grid;
    grid-template-columns: 1fr 600px;
    gap: 100px;
    align-items: center;
}

.tl-ct-hero-eyebrow {
    margin-bottom: 28px;
}

.tl-ct-hero-title {
    margin-bottom: 32px;
}

.tl-ct-hero-para {
    max-width: 520px;
    opacity: 0.9;
}

/* message form card */
.tl-ct-form-card {
    background: #fff;
    color: var(--ink-1a);
    padding: 54px 80px;
}

.tl-ct-form-title {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: var(--ink-1a);
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.tl-ct-field {
    margin-bottom: 12px;
}

.tl-ct-field label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.45);
    margin-bottom: 6px;
}

.tl-ct-req {
    color: var(--red);
}

.tl-ct-field input,
.tl-ct-field textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 13px 17px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--ink-1a);
    outline: none;
    transition: border-color 0.2s ease;
}

.tl-ct-field input {
    height: 47px;
}

.tl-ct-field textarea {
    resize: vertical;
    min-height: 96px;
}

.tl-ct-field input::placeholder,
.tl-ct-field textarea::placeholder {
    color: rgba(0, 0, 0, 0.2);
}

.tl-ct-field input:focus,
.tl-ct-field textarea:focus {
    border-color: var(--red);
}

.tl-ct-form-actions {
    margin-top: 12px;
}

.tl-ct-form-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    min-width: 173px;
    padding: 0 22px;
    background: var(--red);
    border: none;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.25s ease;
}

.tl-ct-form-btn:hover {
    background: #b01b1d;
}

.tl-ct-form-note {
    margin-top: 12px;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.4);
}

/* ---- find your nearest store ---- */
.tl-ct-loc {
    padding-top: 100px;
    padding-bottom: 100px;
}

.tl-ct-loc-title {
    margin-top: 24px;
    margin-bottom: 48px;
}

.tl-ct-loc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tl-ct-loc-card {
    background: var(--ink-14);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px;
}

.tl-ct-loc-card .tl-eyebrow {
    margin-bottom: 14px;
}

.tl-ct-loc-city {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 16px;
}

.tl-ct-loc-addr1 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    opacity: 0.85;
}

.tl-ct-loc-addr2 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    opacity: 0.85;
}

.tl-ct-loc-phone {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    opacity: 0.85;
    margin-bottom: 16px;
}

.tl-ct-loc-phone:hover {
    opacity: 1;
}

.tl-ct-hours {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.tl-ct-hours td {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #fff;
}

.tl-ct-hours td:last-child {
    text-align: right;
    opacity: 0.7;
}

.tl-ct-loc-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.tl-ct-loc-actions .tl-btn {
    min-width: 0;
    padding: 0 22px;
}

.tl-ct-loc-dir {
    display: inline-flex;
    align-items: center;
    padding-bottom: 4px;
    border-bottom: 1px solid #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.96px;
    color: #fff;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.tl-ct-loc-dir:hover {
    opacity: 1;
}

/* ---- test drive cta ---- */
.tl-ct-testdrive {
    position: relative;
    min-height: 800px;
    display: flex;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.tl-ct-testdrive-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right,
            rgba(14, 14, 14, 0) 0%,
            rgba(14, 14, 14, 0.7) 50%,
            rgba(14, 14, 14, 0.9) 100%);
}

.tl-ct-testdrive-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.tl-ct-testdrive-content {
    max-width: 580px;
}

.tl-ct-testdrive-title {
    margin-top: 22px;
    margin-bottom: 24px;
}

.tl-ct-testdrive-para {
    margin-bottom: 36px;
    opacity: 0.92;
}

.tl-ct-testdrive-content .tl-btn {
    min-width: 210px;
}

/* ---- faq ---- */
.tl-ct-faq {
    padding-top: 100px;
    padding-bottom: 100px;
}

.tl-ct-faq-title {
    margin-top: 24px;
}

.tl-ct-faq-list {
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tl-ct-faq-list .tl-svc-faq-item:first-child {
    border-top: none;
}



/* ============================================================
   BLOG PAGE — CSS
   tl-bl-* — dark theme. Reuses the shared accordion
   (.tl-svc-faq-item) markup & JS for the FAQ.
   ============================================================ */

/* content column — matches the inset content width from the design */
.tl-bl-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

/* ---- hero ---- */
.tl-bl-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    overflow: hidden;
    background: var(--ink-deep);
}

.tl-bl-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.tl-bl-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right,
            #0e0e0e 0%,
            rgba(14, 14, 14, 0.55) 45%,
            rgba(14, 14, 14, 0) 75%);
}

.tl-bl-crumb {
    position: absolute;
    z-index: 3;
    top: 24px;
    left: var(--gutter);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.tl-bl-crumb a:hover {
    color: #fff;
}

.tl-bl-crumb-current {
    color: #fff;
}

.tl-bl-hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--gutter) 56px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tl-bl-hero-eyebrow {
    margin-bottom: 20px;
}

.tl-bl-hero-title {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    font-size: 64px;
    line-height: 60px;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.tl-bl-hero-para {
    max-width: 600px;
}

/* ---- shared section title (40px) ---- */
.tl-bl-section-title {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0;
}

/* ---- card category badge + meta + read link (shared by feature & cards) ---- */
.tl-bl-cat {
    position: absolute;
    top: 25px;
    left: 24px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #fff;
}

.tl-bl-meta {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.6;
    margin-bottom: 18px;
}

.tl-bl-excerpt {
    opacity: 0.7;
    margin-bottom: 28px;
}

.tl-bl-readlink {
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 1px solid #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.96px;
    line-height: 18px;
    color: #fff;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.tl-bl-readlink:hover {
    opacity: 1;
}

/* ---- featured ---- */
.tl-bl-featured {
    padding-top: 80px;
}

.tl-bl-featured .tl-bl-section-title {
    margin-bottom: 24px;
}

.tl-bl-feature {
    display: block;
    background: var(--ink-14);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.tl-bl-feature:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.tl-bl-feature-media {
    position: relative;
    height: 480px;
    background: linear-gradient(157deg, rgb(6, 12, 24) 0%, rgb(13, 29, 52) 50%, rgb(17, 36, 64) 100%);
}

.tl-bl-feature-body {
    padding: 32px 24px;
}

.tl-bl-feature-title {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 20px;
}

.tl-bl-feature .tl-bl-excerpt {
    max-width: 640px;
}

/* ---- latest articles grid ---- */
.tl-bl-latest {
    padding-top: 100px;
}

.tl-bl-latest .tl-bl-section-title {
    margin-bottom: 24px;
}

.tl-bl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tl-bl-card {
    display: flex;
    flex-direction: column;
    background: var(--ink-14);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.tl-bl-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.tl-bl-card-media {
    position: relative;
    height: 300px;
    background: linear-gradient(160deg, rgb(6, 12, 24) 0%, rgb(13, 29, 52) 50%, rgb(17, 36, 64) 100%);
}

.tl-bl-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 33px 24px 32px;
}

.tl-bl-card-title {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 22px;
}

.tl-bl-card .tl-bl-readlink {
    margin-top: auto;
    align-self: flex-start;
}

/* ---- faq ---- */
.tl-bl-faq {
    padding-top: 100px;
    padding-bottom: 120px;
}

.tl-bl-faq .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-bl-faq-title {
    margin-bottom: 40px;
}

.tl-bl-faq-list {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tl-bl-faq-list .tl-svc-faq-item:first-child {
    border-top: none;
}

.tl-bl-faq-list .tl-svc-faq-q>span:first-child {
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 1.3;
}

.tl-bl-faq-list .tl-svc-faq-q {
    padding: 28px 0;
}


/* ============================================================
   EVENTS PAGE — CSS
   tl-ev-* — dark theme. Reuses the shared accordion
   (.tl-svc-faq-item) markup & JS for the FAQ.
   ============================================================ */

/* content column — matches the inset content width from the design */
.tl-ev-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

/* ---- hero ---- */
.tl-ev-hero {
    position: relative;
    min-height: 800px;
    display: flex;
    overflow: hidden;
    background: var(--ink-deep);
}

.tl-ev-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.tl-ev-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top,
            #0e0e0e 0%,
            rgba(14, 14, 14, 0.55) 45%,
            rgba(14, 14, 14, 0) 75%);
}

.tl-ev-crumb {
    position: absolute;
    z-index: 3;
    top: 24px;
    left: var(--gutter);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.tl-ev-crumb a:hover {
    color: #fff;
}

.tl-ev-crumb-current {
    color: #fff;
}

.tl-ev-hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 clamp(20px, 8.33vw, 160px) 190px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tl-ev-hero-eyebrow {
    margin-bottom: 28px;
    opacity: 1;
}

.tl-ev-hero-title {
    margin-bottom: 36px;
}

.tl-ev-hero-para {
    max-width: 680px;
}

/* ---- upcoming events ---- */
.tl-ev-upcoming {
    padding-top: 80px;
}

.tl-ev-upcoming-eyebrow {
    margin-bottom: 24px;
}

.tl-ev-upcoming-title {
    margin-bottom: 32px;
}

.tl-ev-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.tl-ev-card {
    display: flex;
    flex-direction: column;
    background: var(--ink-14);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.tl-ev-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.tl-ev-card-media {
    position: relative;
    padding-top: 56.25%;
    background: linear-gradient(160deg, rgb(6, 12, 24) 0%, rgb(13, 29, 52) 50%, rgb(17, 36, 64) 100%);
}

.tl-ev-date {
    position: absolute;
    top: 21px;
    left: 24px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #fff;
}

.tl-ev-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 30px 24px 32px;
}

.tl-ev-loc {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.6;
    margin-bottom: 18px;
}

.tl-ev-card-title {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 8px;
}

.tl-ev-excerpt {
    opacity: 0.7;
    margin-bottom: 24px;
}

.tl-ev-readlink {
    display: inline-block;
    margin-top: auto;
    align-self: flex-start;
    padding-bottom: 5px;
    border-bottom: 1px solid #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.96px;
    line-height: 18px;
    color: #fff;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.tl-ev-readlink:hover {
    opacity: 1;
}

/* ---- faq ---- */
.tl-ev-faq {
    padding-top: 100px;
    padding-bottom: 120px;
}

.tl-ev-faq .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-ev-faq-title {
    margin-bottom: 40px;
}

.tl-ev-faq-list {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tl-ev-faq-list .tl-svc-faq-item:first-child {
    border-top: none;
}

.tl-ev-faq-list .tl-svc-faq-q>span:first-child {
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 1.3;
}

.tl-ev-faq-list .tl-svc-faq-q {
    padding: 28px 0;
}



/* ============================================================
   HOW-TO VIDEOS PAGE — CSS
   tl-htv-* — dark theme. Reuses the shared accordion
   (.tl-svc-faq-item) markup & JS for the FAQ.
   ============================================================ */

/* content column — matches the inset content width from the design */
.tl-htv-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

/* ---- hero ---- */
.tl-htv-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    overflow: hidden;
    background: var(--ink-deep);
}

.tl-htv-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.tl-htv-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right,
            #0e0e0e 0%,
            rgba(14, 14, 14, 0.55) 45%,
            rgba(14, 14, 14, 0) 75%);
}

.tl-htv-crumb {
    position: absolute;
    z-index: 3;
    top: 20px;
    left: var(--gutter);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.tl-htv-crumb a:hover {
    color: #fff;
}

.tl-htv-crumb-current {
    color: #fff;
}

.tl-htv-hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--gutter) 56px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tl-htv-hero-eyebrow {
    margin-bottom: 20px;
}

.tl-htv-hero-title {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    font-size: 64px;
    line-height: 60px;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.tl-htv-hero-para {
    max-width: 600px;
}

/* ---- shared section heading + meta ---- */
.tl-htv-section-title {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0;
}

.tl-htv-meta {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.6;
}

/* play button (shared) */
.tl-htv-play {
    width: 60px;
    height: 60px;
    transition: transform 0.25s ease;
}

/* ---- featured video ---- */
.tl-htv-featured {
    padding-top: 80px;
}

.tl-htv-featured .tl-htv-section-title {
    margin-bottom: 24px;
}

.tl-htv-feature {
    position: relative;
    display: block;
    height: 599px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    background: linear-gradient(157deg, rgb(6, 12, 24) 0%, rgb(13, 29, 52) 50%, rgb(17, 36, 64) 100%);
}

.tl-htv-feature-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    transition: transform 0.25s ease;
}

.tl-htv-feature:hover .tl-htv-feature-play {
    transform: translate(-50%, -50%) scale(1.08);
}

.tl-htv-feature-text {
    position: absolute;
    left: 44px;
    bottom: 40px;
    max-width: 520px;
}

.tl-htv-feature .tl-htv-meta {
    margin-bottom: 16px;
}

.tl-htv-feature-title {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    font-size: 34px;
    line-height: 34px;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.tl-htv-feature-desc {
    opacity: 0.8;
}

/* ---- video library ---- */
.tl-htv-library {
    padding-top: 100px;
}

.tl-htv-library-title {
    margin-bottom: 25px;
}

.tl-htv-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.tl-htv-filter {
    height: 38px;
    padding: 0 18px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.8;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.tl-htv-filter:hover {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.4);
}

.tl-htv-filter.is-active {
    background: var(--red);
    border-color: var(--red);
    opacity: 1;
}

.tl-htv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tl-htv-card {
    display: flex;
    flex-direction: column;
    background: var(--ink-14);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.tl-htv-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.tl-htv-card:hover .tl-htv-play {
    transform: scale(1.08);
}

.tl-htv-thumb {
    position: relative;
    padding-top: 56.25%;
    background: linear-gradient(160deg, rgb(6, 12, 24) 0%, rgb(13, 29, 52) 50%, rgb(17, 36, 64) 100%);
}

.tl-htv-thumb .tl-htv-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #fff;
}

.tl-htv-thumb .tl-htv-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tl-htv-card:hover .tl-htv-thumb .tl-htv-play {
    transform: translate(-50%, -50%) scale(1.08);
}

.tl-htv-dur {
    position: absolute;
    right: 12px;
    bottom: 12px;
    height: 26px;
    padding: 0 9px;
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 1px;
    color: #fff;
}

.tl-htv-card-body {
    padding: 22px 24px 26px;
}

.tl-htv-card-body .tl-htv-meta {
    margin-bottom: 12px;
}

.tl-htv-card-title {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.tl-htv-desc {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 22.5px;
    color: #fff;
    opacity: 0.72;
}

/* ---- still stuck cta ---- */
.tl-htv-cta {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(172deg, rgb(44, 0, 6) 7.7%, rgba(20, 20, 20, 0.98) 92.3%);
}

.tl-htv-cta-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, rgba(14, 14, 14, 0.78) 0%, rgba(14, 14, 14, 0) 60%);
}

.tl-htv-cta-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.tl-htv-cta-eyebrow {
    margin-bottom: 24px;
}

.tl-htv-cta-title {
    margin-bottom: 20px;
}

.tl-htv-cta-para {
    max-width: 430px;
    margin-bottom: 32px;
}

.tl-htv-cta-btn {
    min-width: 168px;
}

/* ---- faq ---- */
.tl-htv-faq {
    padding-top: 100px;
    padding-bottom: 120px;
}

.tl-htv-faq .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-htv-faq-title {
    margin-bottom: 40px;
}

.tl-htv-faq-list {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tl-htv-faq-list .tl-svc-faq-item:first-child {
    border-top: none;
}

.tl-htv-faq-list .tl-svc-faq-q>span:first-child {
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 1.3;
}

.tl-htv-faq-list .tl-svc-faq-q {
    padding: 28px 0;
}



/* ============================================================
   NORCO LOCATION PAGE — CSS
   tl-ln-* — dark theme. Reuses .tl-ct-hours (hours table) and
   the shared accordion (.tl-svc-faq-item) markup & JS.
   ============================================================ */

/* content column — 1208px centered (356px inset each side at 1920) */
.tl-ln-wrap {
    max-width: 1208px;
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

/* ---- hero ---- */
.tl-ln-hero {
    position: relative;
    min-height: 800px;
    display: flex;
    overflow: hidden;
    background: var(--ink-deep);
}

.tl-ln-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.tl-ln-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right,
            rgba(14, 14, 14, 0.9) 0%,
            rgba(14, 14, 14, 0.49) 45%,
            rgba(14, 14, 14, 0) 75%);
}

.tl-ln-crumb {
    position: absolute;
    z-index: 3;
    top: 20px;
    left: var(--gutter);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.tl-ln-crumb a:hover {
    color: #fff;
}

.tl-ln-crumb-current {
    color: #fff;
}

.tl-ln-hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 var(--gutter) 198px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tl-ln-hero-eyebrow {
    margin-bottom: 28px;
    opacity: 1;
}

.tl-ln-hero-title {
    margin-bottom: 26px;
}

.tl-ln-hero-para {
    max-width: 600px;
    margin-bottom: 34px;
}

.tl-ln-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.tl-ln-hero-actions .tl-btn {
    min-width: 160px;
}

/* ---- shared section sub-text ---- */
.tl-ln-find,
.tl-ln-services,
.tl-ln-lakes {
    padding-top: 110px;
}

/* ---- find the store ---- */
.tl-ln-find-grid {
    display: grid;
    grid-template-columns: 1fr 580px;
    gap: 48px;
    align-items: start;
}

.tl-ln-find .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-ln-find-title {
    margin-bottom: 40px;
}

.tl-ln-find-name {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}

.tl-ln-find-addr {
    opacity: 0.85;
    margin-bottom: 18px;
}

.tl-ln-find-phone {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 24px;
}

.tl-ln-find-desc {
    max-width: 480px;
    opacity: 0.85;
}

.tl-ln-hours-card {
    background: var(--ink-1a);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
}

.tl-ln-hours-card .tl-eyebrow {
    margin-bottom: 26px;
}

.tl-ln-hours {
    margin-bottom: 0;
}

/* ---- services at this location ---- */
.tl-ln-services .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-ln-services-title {
    margin-bottom: 20px;
}

.tl-ln-services-sub {
    opacity: 0.9;
    margin-bottom: 28px;
}

.tl-ln-svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tl-ln-svc-card {
    display: flex;
    flex-direction: column;
    min-height: 210px;
    background: var(--ink-14);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
}

.tl-ln-svc-icon {
    max-width: 48px;
    height: auto;
    margin-bottom: auto;
}

.tl-ln-svc-text {
    margin-top: 24px;
}

.tl-ln-svc-name {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: -0.5px;
    color: #fff;
    margin-bottom: 16px;
}

.tl-ln-svc-desc {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 22.5px;
    color: #fff;
    opacity: 0.72;
}

/* ---- why boaters choose norco (split) ---- */
.tl-ln-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
    margin-top: 110px;
}

.tl-ln-split-media {
    position: relative;
    overflow: hidden;
    background: var(--ink-14);
}

.tl-ln-split-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tl-ln-split-panel {
    display: flex;
    align-items: center;
    padding: 64px var(--gutter);
    background: linear-gradient(157deg, rgb(44, 0, 6) 7.7%, rgba(20, 20, 20, 0.98) 92.3%);
}

.tl-ln-split-content {
    max-width: 560px;
}

.tl-ln-split .tl-eyebrow {
    margin-bottom: 28px;
}

.tl-ln-split-title {
    margin-bottom: 28px;
}

.tl-ln-split-para {
    opacity: 0.9;
}

/* ---- why norco (3 stat cards) ---- */
.tl-ln-why {
    padding-top: 100px;
}

.tl-ln-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tl-ln-why-card {
    min-height: 173.5px;
    background: var(--ink-14);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
}

.tl-ln-why-card .tl-eyebrow {
    margin-bottom: 16px;
}

.tl-ln-why-name {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 14px;
}

.tl-ln-why-desc {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    opacity: 0.72;
}

/* ---- lakes close to norco ---- */
.tl-ln-lakes .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-ln-lakes-title {
    margin-bottom: 20px;
}

.tl-ln-lakes-sub {
    opacity: 0.9;
    margin-bottom: 28px;
}

.tl-ln-lakes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tl-ln-lake-card {
    display: flex;
    flex-direction: column;
}

.tl-ln-lake-img {
    position: relative;
    height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    background: var(--ink-14);
}

.tl-ln-lake-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tl-ln-lake-body {
    flex: 1;
    background: var(--ink-14);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    padding: 22px 24px 26px;
}

.tl-ln-lake-name {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: -0.5px;
    color: #fff;
    margin-bottom: 16px;
}

.tl-ln-lake-desc {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 22.5px;
    color: #fff;
    opacity: 0.72;
}

/* ---- test drive near you cta ---- */
.tl-ln-demo {
    position: relative;
    min-height: 680px;
    margin-top: 110px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.tl-ln-demo-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.85;
    background: linear-gradient(168deg, rgb(44, 0, 6) 7.7%, rgba(20, 20, 20, 0.98) 92.3%);
}

.tl-ln-demo-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1208px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.tl-ln-demo .tl-eyebrow {
    margin-bottom: 28px;
}

.tl-ln-demo-title {
    margin-bottom: 24px;
}

.tl-ln-demo-para {
    max-width: 430px;
    margin-bottom: 32px;
}

.tl-ln-demo-btn {
    min-width: 148px;
}

/* ---- faq ---- */
.tl-ln-faq {
    padding-top: 100px;
    padding-bottom: 120px;
}

.tl-ln-faq .tl-eyebrow {
    margin-bottom: 24px;
}

.tl-ln-faq-title {
    margin-bottom: 40px;
}

.tl-ln-faq-list {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tl-ln-faq-list .tl-svc-faq-item:first-child {
    border-top: none;
}

.tl-ln-faq-list .tl-svc-faq-q>span:first-child {
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 1.3;
}

.tl-ln-faq-list .tl-svc-faq-q {
    padding: 28px 0;
}



/* ============================================================
   PARTS PAGE — CSS
   tl-pt-* — dark theme. Reuses the shared form system
   (.tl-svc-form-*) for the two-column request form.
   ============================================================ */

/* the form is the first content with no hero, so clear the fixed nav (64px)
   and add the matching bottom gap from the design */
.tl-pt-form-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* media intro paragraph (sits above the feature list) */
.tl-pt-media-para {
    margin-top: 24px;
    max-width: 432px;
}

/* feature list with chevron + bold title + description */
.tl-pt-list {
    margin-top: 40px;
    max-width: 480px;
}

.tl-pt-list-item {
    position: relative;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 0 12px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tl-pt-list-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tl-pt-list-item::before {
    content: "";
    position: absolute;
    left: 1px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #fff;
    border-top: 1.5px solid #fff;
    transform: translateY(-50%) rotate(45deg);
}

.tl-pt-list-t {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
}

.tl-pt-list-d {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
}

/* stacked footer: full-width submit + centered note */
.tl-pt-form-foot {
    margin-top: 16px;
}

.tl-pt-submit {
    width: 100%;
}

.tl-pt-form-note {
    margin-top: 12px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}



/* ============================================================
   TEST DRIVE PAGE — CSS
   tl-td-* — reuses the parts/service form system; the media
   column here centers its intro (no feature list).
   ============================================================ */
.tl-td-media .tl-svc-form-media-inner {
    justify-content: center;
}

.tl-td-media-title {
    margin: 24px 0 0;
    max-width: 520px;
}

.tl-td-media-para {
    margin-top: 24px;
    max-width: 528px;
}

/* special banner css starts */
.specialBanner {
    background-color: #222222;
    padding: 22px 23px 8px 23px;
}

.specialTag{
    position: relative;
}

.specialTagText{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0 10%;
    z-index: 2;
    background-color: #222;
}

.specialWhiteLine {
    margin: 0;
    background-color: #FFFFFF33;
    height: 1px;
}

.specialTagText {
    color: #FFF;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.specialBoatTitle {
    color: #FFF;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    text-transform: capitalize;
}

.specailMoreDetailBtn {
    color: rgba(255, 255, 255, 0.60);
    text-align: center;
   font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.specailMoreDetailBtn:hover {
    color: rgba(255, 255, 255, 0.60);
}

.specialShortDescpWrap{
    display: none;
}

.specialShortDescpText {
    color: #FFF;
   font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
}

.specialBtnArrow{
    transition: all 0.4s;
    position: relative;
}

.rotate180Deg{
    transform: rotate(180deg);
}
/* special banner css ends */

/* 404 page start here */

.commonSection {
    margin-bottom: 80px;
}
.commonSectionInnerWrap {
    display: flex;
    gap: 120px;
    max-width: calc(100% - 15%);
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.commonSectionTextWrapper {
    width: 50%;
    max-width: 600px;
}
.commonSectionImageWrapper {
    width: 50%;
}
.commonSectionImageWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.commonSectionHeading {
    color: #222;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 125% */
    letter-spacing: 6.4px;
    text-transform: uppercase;
}
.commonPara {
    color: #1E1E1E;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 40px;
    margin-top: 40px;
}
.commonSectionLinkWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.featured-btn {
    color: #FFF;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    background: #222;
    display: inline-block;
}
.thank-you-content-box {
    width: 50%;
}
.thank-you-inner-box{
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}


@media (max-width: 1440px) {
    .tl-brand {
        min-height: 820px;
    }

    .tl-h1 {
        font-size: 100px;
    }
}

@media (max-width: 1350px) {
    .tl-nav-menu {
        gap: 24px;
    }

    .tl-nav-right {
        gap: 18px;
    }
}

@media (max-width: 1200px) {
    .tl-svc-intro-grid {
        gap: 64px;
    }

    .tl-svc-faq-grid {
        grid-template-columns: 340px 1fr;
        gap: 48px;
    }

    .tl-svc-faq-intro h2 {
        margin-bottom: 32px;
    }

    .tl-stg-intro-grid {
        gap: 64px;
    }

    .tl-stg-feature {
        padding: 48px 32px;
    }

    .tl-pro-expert-intro {
        margin-bottom: 56px;
    }

    .tl-pro-expert-grid {
        gap: 40px;
    }

    .tl-mc-partner-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tl-mc-series-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tl-mc-faq-grid {
        grid-template-columns: 360px 1fr;
    }

    .tl-fin-hero {
        min-height: 720px;
    }

    .tl-fin-result-amount {
        font-size: 72px;
    }

    .tl-ab-hero {
        min-height: 680px;
    }

    .tl-ab-story-inner {
        grid-template-columns: 1fr 520px;
        gap: 64px;
    }

    .tl-ct-hero-inner {
        grid-template-columns: 1fr 480px;
        gap: 56px;
    }

    .tl-ct-form-card {
        padding: 40px 48px;
    }

    .tl-bl-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tl-bl-feature-media {
        height: 400px;
    }

    .tl-ev-hero {
        min-height: 700px;
    }

    .tl-htv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tl-htv-feature {
        height: 520px;
    }

    .tl-ln-hero {
        min-height: 700px;
    }

    .tl-ln-find-grid {
        grid-template-columns: 1fr 460px;
        gap: 40px;
    }

    .tl-ln-lakes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tl-brand {
        min-height: 700px;
    }

    .tl-testdrive-media {
        min-height: 560px;
    }

    .tl-testdrive-panel {
        padding: 64px 48px;
    }

    .tl-foot-inner {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .tl-foot-brand {
        grid-column: 1 / -1;
        margin-bottom: 16px;
    }

    .tl-h1 {
        font-size: 80px;
    }

    a.tl-nav-logo {
        max-width: 160px;
    }
}

@media (max-width: 991px) {
    .tl-pro-cats {
        padding-bottom: 64px;
    }

    .tl-pro-brands,
    .tl-pro-expert {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .tl-pro-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tl-pro-fit {
        grid-template-columns: 1fr;
    }

    .tl-pro-fit-media {
        min-height: 460px;
    }

    .tl-pro-brands-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tl-pro-expert-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tl-pro-cta-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .tl-mc-partner,
    .tl-mc-series,
    .tl-mc-inv,
    .tl-mc-loc {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .tl-mc-series-img {
        padding-top: 50%;
    }

    .tl-mc-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 0;
    }

    .tl-mc-faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tl-mc-loc-grid {
        grid-template-columns: 1fr;
    }

    .tl-st-how {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .tl-st-brands {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .tl-st-how-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tl-st-why {
        grid-template-columns: 1fr;
    }

    .tl-st-why-media {
        min-height: 360px;
        order: -1;
    }

    .tl-st-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tl-fin-hero {
        min-height: 600px;
    }

    .tl-fin-calc {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .tl-fin-calc-grid {
        grid-template-columns: 1fr;
    }

    .tl-fin-stats-wrap {
        padding-bottom: 64px;
    }

    .tl-fin-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .tl-fin-stat:nth-child(2) {
        border-right: none;
    }

    .tl-fin-stat:nth-child(3),
    .tl-fin-stat:nth-child(4) {
        padding-top: 36px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .tl-fin-stat:nth-child(3) {
        padding-left: 0;
    }

    .tl-fin-apply {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .tl-fin-apply-inner {
        max-width: none;
        margin-left: 0;
    }

    .tl-fin-apply-media {
        min-height: 420px;
    }

    .tl-fin-trade {
        min-height: 620px;
    }

    .tl-fin-trade-inner {
        justify-content: flex-start;
    }

    .tl-fin-trade-scrim {
        background: linear-gradient(to top, #0e0e0e 0%, rgba(14, 14, 14, 0.55) 50%, rgba(14, 14, 14, 0.2) 100%);
    }

    .tl-fin-faq {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .tl-ab-hero {
        min-height: 560px;
    }

    .tl-ab-stats-wrap {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .tl-ab-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .tl-ab-stat:nth-child(2) {
        border-right: none;
    }

    .tl-ab-stat:nth-child(3),
    .tl-ab-stat:nth-child(4) {
        padding-top: 36px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .tl-ab-stat:nth-child(3) {
        padding-left: 0;
    }

    .tl-ab-story {
        padding-bottom: 64px;
    }

    .tl-ab-story-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tl-ab-story-media {
        min-height: 420px;
        order: -1;
    }

    .tl-ab-culture {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .tl-ab-culture-media {
        min-height: 420px;
    }

    .tl-ab-community {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .tl-ab-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tl-ab-faq {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .tl-ab-cta {
        padding-bottom: 80px;
    }

    .tl-ct-hero {
        min-height: 0;
    }

    .tl-ct-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-top: 140px;
        padding-bottom: 64px;
    }

    .tl-ct-hero-para {
        max-width: none;
    }

    .tl-ct-loc {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .tl-ct-loc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tl-ct-testdrive {
        min-height: 620px;
    }

    .tl-ct-testdrive-inner {
        justify-content: flex-start;
    }

    .tl-ct-testdrive-scrim {
        background: linear-gradient(to top, #0e0e0e 0%, rgba(14, 14, 14, 0.55) 50%, rgba(14, 14, 14, 0.2) 100%);
    }

    .tl-ct-faq {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .tl-bl-hero {
        min-height: 420px;
    }

    .tl-bl-hero-title {
        font-size: 52px;
        line-height: 50px;
    }

    .tl-bl-featured {
        padding-top: 56px;
    }

    .tl-bl-latest {
        padding-top: 72px;
    }

    .tl-bl-feature-media {
        height: 340px;
    }

    .tl-bl-card-media {
        height: 240px;
    }

    .tl-bl-faq {
        padding-top: 72px;
        padding-bottom: 80px;
    }

    .tl-ev-hero {
        min-height: 560px;
    }

    .tl-ev-hero-inner {
        padding-bottom: 96px;
    }

    .tl-ev-upcoming {
        padding-top: 64px;
    }

    .tl-ev-grid {
        grid-template-columns: 1fr;
    }

    .tl-ev-faq {
        padding-top: 72px;
        padding-bottom: 80px;
    }

    .tl-htv-hero {
        min-height: 420px;
    }

    .tl-htv-hero-title {
        font-size: 52px;
        line-height: 50px;
    }

    .tl-htv-featured {
        padding-top: 56px;
    }

    .tl-htv-library {
        padding-top: 72px;
    }

    .tl-htv-feature {
        height: 440px;
    }

    .tl-htv-cta {
        min-height: 0;
        padding: 72px 0;
    }

    .tl-htv-faq {
        padding-top: 72px;
        padding-bottom: 80px;
    }

    .tl-ln-hero {
        min-height: 600px;
    }

    .tl-ln-hero-inner {
        padding-bottom: 80px;
    }

    .tl-ln-find,
    .tl-ln-services,
    .tl-ln-lakes {
        padding-top: 64px;
    }

    .tl-ln-find-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tl-ln-svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tl-ln-split {
        grid-template-columns: 1fr;
        min-height: 0;
        margin-top: 64px;
    }

    .tl-ln-split-media {
        min-height: 360px;
    }

    .tl-ln-split-panel {
        padding: 56px var(--gutter);
    }

    .tl-ln-why {
        padding-top: 64px;
    }

    .tl-ln-why-grid {
        grid-template-columns: 1fr;
    }

    .tl-ln-demo {
        min-height: 0;
        padding: 80px 0;
        margin-top: 64px;
    }

    .tl-ln-faq {
        padding-top: 64px;
        padding-bottom: 80px;
    }



    .tl-inventory,
    .tl-partner,
    .tl-whoweare {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .tl-h1 {
        font-size: 64px;
    }

    /* ---- mobile header ---- */
    .tl-nav-menu,
    .tl-nav-world {
        display: none;
    }

    .tl-nav-logo img {
        height: 22px;
    }

    .tl-nav-right {
        gap: 8px;
    }

    .tl-nav-search {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        opacity: 1;
    }

    .tl-nav-search img {
        width: 18px;
        height: 18px;
    }

    .tl-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        margin-right: -9px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .tl-nav-toggle img {
        width: 22px;
        height: auto;
    }

    .tl-inv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tl-brands {
        grid-template-columns: 1fr;
    }

    .tl-brand {
        min-height: 560px;
    }

    .tl-life-slide {
        height: 600px;
    }

    .tl-life-badge,
    .tl-life-carousel .owl-item img.tl-life-badge {
        width: 220px;
        top: 200px;
    }

    .tl-testdrive {
        grid-template-columns: 1fr;
    }

    .tl-testdrive-media {
        min-height: 420px;
    }

    .tl-whoweare-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tl-whoweare-media {
        margin: 0 auto;
    }

    .tl-whoweare-text {
        max-width: 100%;
    }

    .tl-partner-grid {
        gap: 40px 24px;
    }

    .tl-svc-intro,
    .tl-svc-offer {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .tl-svc-why {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .tl-svc-faq {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .tl-svc-intro-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .tl-svc-offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tl-svc-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tl-svc-form-section {
        grid-template-columns: 1fr;
    }

    .tl-svc-form-media {
        min-height: 420px;
    }

    .tl-svc-faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tl-svc-faq-intro h2 {
        margin-bottom: 24px;
    }

    .tl-stg-intro,
    .tl-stg-packages {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .tl-stg-intro-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .tl-stg-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .tl-stg-feature:nth-child(3) {
        border-left: none;
    }

    .tl-stg-feature:nth-child(n+3) {
        border-top: 1px solid var(--line);
    }

    .tl-stg-photogrid {
        grid-template-rows: 260px 240px;
    }

    .tl-stg-pkg-grid {
        grid-template-columns: 1fr;
    }

    .tl-stg-pkg-features {
        margin-top: 32px;
    }
}

@media (max-width: 768px) {
    .tl-svc-hero-inner {
        padding-bottom: 96px;
    }

    .tl-svc-offer-head {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tl-svc-photogrid {
        grid-template-columns: 1fr;
    }

    .tl-svc-offer-grid {
        grid-template-columns: 1fr;
    }

    .tl-svc-why-grid {
        grid-template-columns: 1fr;
    }

    .tl-svc-why-card {
        min-height: 0;
    }

    .tl-svc-form-row,
    .tl-svc-form-row-3 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .tl-svc-form-row .tl-svc-field {
        margin-bottom: 20px;
    }

    .tl-svc-form-row .tl-svc-field:last-child {
        margin-bottom: 0;
    }

    .tl-svc-form-panel {
        padding: 56px 32px;
    }

    .tl-svc-form-media-inner {
        padding: 56px 32px;
    }

    .tl-svc-form-foot {
        flex-direction: column;
        align-items: flex-start;
    }

    .tl-svc-form-submit {
        width: 100%;
    }

    .tl-stg-pkg-head {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tl-stg-photogrid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .tl-stg-photo,
    .tl-stg-photo--tall {
        grid-row: auto;
        min-height: 280px;
    }

    .tl-pro-cat-grid {
        grid-template-columns: 1fr;
    }

    .tl-pro-stats {
        grid-template-columns: 1fr;
    }

    .tl-pro-loc-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tl-mc-hero {
        min-height: 100vh;
    }

    .tl-mc-inv-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .tl-mc-inv-grid {
        grid-template-columns: 1fr;
    }

    .tl-mc-testdrive-inner {
        justify-content: flex-start;
    }

    .tl-mc-testdrive-content {
        text-align: left;
        align-items: flex-start;
    }

    .tl-mc-stats.tl-st-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 0;
    }

    .tl-st-why-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .tl-fin-calc-inputs,
    .tl-fin-calc-result {
        padding: 28px;
    }

    .tl-fin-result-amount {
        font-size: 64px;
    }

    .tl-bl-grid {
        grid-template-columns: 1fr;
    }

    .tl-htv-grid {
        grid-template-columns: 1fr;
    }

    .tl-hero-inner {
        padding-bottom: 80px;
    }

    .tl-foot-bottom {
        text-align: center;
    }

    .tl-foot-social {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }

    .tl-hero-scroll {
        display: none;
    }

    .tl-inv-grid {
        grid-template-columns: 1fr;
    }

    .tl-inv-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .tl-locations {
        grid-template-columns: 1fr;
    }

    .tl-loc+.tl-loc {
        border-left: none;
        border-top: 1px solid var(--line);
    }

    .tl-partner-grid {
        grid-template-columns: 1fr;
    }

    .tl-break-inner {
        min-height: 460px;
    }

    .tl-life-slide {
        height: 520px;
    }

    .tl-life-badge,
    .tl-life-carousel .owl-item img.tl-life-badge {
        width: 150px;
        top: 120px;
    }

    .tl-life-text {
        bottom: 120px;
    }

    .tl-life-carousel .owl-dots {
        right: auto;
        left: var(--gutter);
        bottom: 24px;
    }

    .tl-life-carousel .owl-nav {
        bottom: 24px;
        right: 5%;
    }

    .tl-newsletter-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .tl-newsletter-form {
        width: 100%;
    }

    .tl-newsletter-form input {
        flex: 1;
        width: auto;
        max-width: none;
    }

    .tl-foot-inner {
        grid-template-columns: 1fr 1fr;
    }

    .tl-foot-brand {
        grid-column: 1 / -1;
    }

    .tl-foot-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {

    .tl-svc-intro,
    .tl-svc-offer,
    .tl-svc-why,
    .tl-svc-faq {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .tl-svc-hero-actions .tl-btn {
        min-width: 0;
        flex: 1;
    }

    .tl-svc-photo-label {
        padding-left: 24px;
        padding-right: 24px;
    }

    .tl-svc-form-panel {
        padding: 40px 20px;
    }

    .tl-svc-form-media-inner {
        padding: 40px 24px;
    }

    .tl-stg-intro,
    .tl-stg-packages {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .tl-stg-features {
        grid-template-columns: 1fr;
    }

    .tl-stg-feature:nth-child(2) {
        border-left: none;
    }

    .tl-stg-feature:nth-child(n+2) {
        border-top: 1px solid var(--line);
    }

    .tl-stg-photo .tl-svc-photo-label {
        padding-left: 24px;
        padding-right: 24px;
    }

    .tl-pro-cats {
        padding-bottom: 48px;
    }

    .tl-pro-brands,
    .tl-pro-expert {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .tl-pro-loc {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .tl-pro-hero-inner .tl-btn,
    .tl-pro-fit-btn {
        width: 100%;
    }

    .tl-mc-partner,
    .tl-mc-series,
    .tl-mc-inv,
    .tl-mc-loc {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .tl-mc-stats {
        grid-template-columns: 1fr;
        gap: 28px 0;
    }

    .tl-mc-hero-actions .tl-btn {
        width: 100%;
    }

    .tl-mc-models {
        flex-wrap: wrap;
    }

    .tl-st-how {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .tl-st-brands {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .tl-mc-stats.tl-st-stats {
        grid-template-columns: 1fr;
        gap: 28px 0;
    }

    .tl-st-brands-grid {
        grid-template-columns: 1fr;
    }

    .tl-st-cta-actions .tl-btn {
        width: 100%;
        min-width: 0;
    }

    .tl-fin-calc {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .tl-fin-stats-wrap {
        padding-bottom: 48px;
    }

    .tl-fin-stats {
        grid-template-columns: 1fr;
    }

    .tl-fin-stat {
        border-right: none;
        padding: 28px 0;
    }

    .tl-fin-stat:not(:first-child) {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .tl-fin-stat-num {
        font-size: 40px;
    }

    .tl-fin-hero-actions .tl-btn,
    .tl-fin-apply-text .tl-btn,
    .tl-fin-trade-content .tl-btn {
        width: 100%;
        min-width: 0;
    }

    .tl-fin-faq {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .tl-ab-stats {
        grid-template-columns: 1fr;
    }

    .tl-ab-stat {
        border-right: none;
        padding: 28px 0;
    }

    .tl-ab-stat:not(:first-child) {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .tl-ab-stat-num {
        font-size: 40px;
    }

    .tl-ab-community {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .tl-ab-faq {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .tl-ab-cta-actions .tl-btn {
        width: 100%;
        min-width: 0;
    }

    .tl-ct-hero-inner {
        padding-top: 120px;
    }

    .tl-ct-form-card {
        padding: 32px 24px;
    }

    .tl-ct-form-title {
        font-size: 32px;
    }

    .tl-ct-loc {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .tl-ct-loc-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .tl-ct-loc-actions .tl-btn {
        width: 100%;
    }

    .tl-ct-testdrive-content .tl-btn {
        width: 100%;
        min-width: 0;
    }

    .tl-ct-faq {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .tl-bl-hero {
        min-height: 380px;
    }

    .tl-bl-hero-title {
        font-size: 40px;
        line-height: 40px;
    }

    .tl-bl-section-title {
        font-size: 32px;
        line-height: 36px;
    }

    .tl-bl-featured {
        padding-top: 48px;
    }

    .tl-bl-latest {
        padding-top: 56px;
    }

    .tl-bl-feature-body,
    .tl-bl-card-body {
        padding: 28px 20px;
    }

    .tl-bl-faq {
        padding-top: 56px;
        padding-bottom: 64px;
    }

    .tl-bl-faq-list .tl-svc-faq-q>span:first-child {
        font-size: 16px;
    }

    .tl-ev-hero {
        min-height: 480px;
    }

    .tl-ev-hero-inner {
        padding-bottom: 64px;
    }

    .tl-ev-upcoming {
        padding-top: 48px;
    }

    .tl-ev-card-body {
        padding: 28px 20px;
    }

    .tl-ev-faq {
        padding-top: 56px;
        padding-bottom: 64px;
    }

    .tl-ev-faq-list .tl-svc-faq-q>span:first-child {
        font-size: 16px;
    }

    .tl-htv-hero {
        min-height: 380px;
    }

    .tl-htv-hero-title {
        font-size: 40px;
        line-height: 40px;
    }

    .tl-htv-section-title {
        font-size: 32px;
        line-height: 36px;
    }

    .tl-htv-featured {
        padding-top: 48px;
    }

    .tl-htv-library {
        padding-top: 56px;
    }

    .tl-htv-feature {
        height: 380px;
    }

    .tl-htv-feature-text {
        left: 24px;
        bottom: 28px;
    }

    .tl-htv-feature-title {
        font-size: 28px;
        line-height: 30px;
    }

    .tl-htv-cta {
        padding: 56px 0;
    }

    .tl-htv-faq {
        padding-top: 56px;
        padding-bottom: 64px;
    }

    .tl-htv-faq-list .tl-svc-faq-q>span:first-child {
        font-size: 16px;
    }

    .tl-ln-hero {
        min-height: 520px;
    }

    .tl-ln-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .tl-ln-find,
    .tl-ln-services,
    .tl-ln-lakes {
        padding-top: 48px;
    }

    .tl-ln-svc-grid {
        grid-template-columns: 1fr;
    }

    .tl-ln-hours-card {
        padding: 28px 24px;
    }

    .tl-ln-lakes-grid {
        grid-template-columns: 1fr;
    }

    .tl-ln-demo {
        padding: 56px 0;
    }

    .tl-ln-faq {
        padding-top: 48px;
        padding-bottom: 64px;
    }

    .tl-ln-faq-list .tl-svc-faq-q>span:first-child {
        font-size: 16px;
    }

    .tl-pt-media-para {
        max-width: none;
    }

    .tl-pt-list {
        max-width: none;
    }

    .tl-td-media-para {
        max-width: none;
    }

    .tl-svc-stats {
        grid-template-columns: repeat(1, 1fr);
    }

    .tl-h1 {
        font-size: 56px;
    }


    .tl-inventory,
    .tl-partner,
    .tl-whoweare {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .tl-brand-content,
    .tl-loc {
        padding-left: 24px;
        padding-right: 24px;
    }

    .tl-testdrive-panel {
        padding: 48px 24px;
    }

    .tl-foot-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tl-foot-logo {
        margin: 0 auto 24px;
    }

    .tl-foot-about {
        margin: 0 auto 24px;
    }

    .tl-foot-social {
        gap: 20px;
    }

    .tl-newsletter-form {
        flex-direction: column;
        gap: 16px;
    }

    .tl-newsletter-form button {
        border: 1.5px solid rgba(245, 245, 243, 0.3);
    }

    .tl-newsletter-form input {
        padding: 16px 15px;
    }
}


@media (max-width: 400px) {
    .tl-h1 {
        font-size: 40px;
    }

    .tl-mc-hero-inner {
        padding: 20px 15px 96px;
    }
}
