:root {
    --tep-black: #000000;
    --tep-dark: #0a0a0a;
    --tep-charcoal: #111111;
    --tep-grey: #1a1a1a;
    --tep-gold: #C9A84C;
    --tep-gold-hover: #b8963f;
    --tep-white: #ffffff;
    --tep-text-muted: rgba(255, 255, 255, 0.7);
    --tep-font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
    --tep-font-sans: 'Montserrat', 'Lato', Arial, sans-serif;
    --tep-header-height: 100px;
    --tep-hero-offset: 110px;
    --tep-site-max: 1400px;
    --tep-site-gutter: 40px;
    --tep-transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--tep-font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--tep-white);
    background-color: var(--tep-black);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--tep-transition);
}

ul {
    list-style: none;
}

.tep-container {
    max-width: var(--tep-site-max);
    margin: 0 auto;
    padding: 0 var(--tep-site-gutter);
}

/* Header */
.tep-site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10050;
    pointer-events: none;
}

.tep-site-header a,
.tep-site-header button,
.tep-site-header .tep-nav {
    pointer-events: auto;
}

.tep-header {
    position: relative;
    height: var(--tep-header-height);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    transition: background var(--tep-transition);
    pointer-events: none;
}

.tep-header-inner,
.tep-header a,
.tep-header button {
    pointer-events: auto;
}

.tep-logo-link,
.tep-lang-toggle,
.tep-nav {
    pointer-events: auto;
}

.tep-logo,
.tep-header-actions,
.tep-lang-switcher,
.tep-logo-link {
    position: relative;
    z-index: 2;
}

.tep-header.tep-header-scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
}

.tep-main {
    position: relative;
    z-index: 1;
}

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

.tep-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.tep-logo-img {
    display: block;
    width: auto;
    height: auto;
}

.tep-logo-img--header,
.tep-logo-svg.tep-logo-img--header {
    max-height: 56px;
}

.tep-logo-img--vertical {
    max-height: 72px;
    width: auto;
}

.tep-logo-img--footer,
.tep-logo-svg.tep-logo-img--footer {
    max-height: 58px;
}

.tep-logo-img--circular {
    max-height: 64px;
    width: auto;
}

.tep-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.tep-nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.tep-nav-menu li a {
    font-family: var(--tep-font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--tep-white);
    padding: 8px 0;
    position: relative;
}

.tep-nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--tep-gold);
    transition: width var(--tep-transition);
}

.tep-nav-menu li a:hover::after,
.tep-nav-menu li.current-menu-item > a::after,
.tep-nav-menu li.current_page_item > a::after {
    width: 100%;
}

.tep-nav-menu .menu-item-has-children > a::before {
    content: '▾';
    margin-left: 4px;
    font-size: 10px;
    vertical-align: middle;
}

.tep-nav-menu li {
    position: relative;
}

.tep-nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1100;
    min-width: 240px;
    margin: 0;
    padding: 8px 0;
    background: rgba(0, 0, 0, 0.97);
    border: 1px solid rgba(201, 168, 76, 0.25);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.tep-nav-menu li.menu-item-has-children::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 8px;
}

.tep-nav-menu li.menu-item-has-children:hover > .sub-menu,
.tep-nav-menu li.menu-item-has-children:focus-within > .sub-menu {
    display: block;
}

.tep-nav-menu .sub-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 12px;
    white-space: nowrap;
}

.tep-nav-menu .sub-menu li a::after {
    display: none;
}

.tep-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.tep-lang-switcher {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.tep-lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-family: var(--tep-font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tep-lang-toggle__sep {
    color: rgba(255, 255, 255, 0.35);
    padding: 0 2px;
    user-select: none;
}

.tep-lang-toggle__link {
    color: var(--tep-white);
    text-decoration: none;
    padding: 8px 10px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.tep-lang-toggle__link:hover {
    color: var(--tep-gold);
}

.tep-lang-toggle__link--active {
    color: var(--tep-gold);
}

.tep-lang-switcher:empty {
    display: none;
}

.tep-lang-switcher .trp-language-switcher {
    font-family: var(--tep-font-sans);
    font-size: 12px;
}

.tep-lang-switcher .trp-ls-shortcode-current-language,
.tep-lang-switcher .trp-ls-shortcode-language {
    color: var(--tep-white);
}

.tep-lang-switcher .trp-ls-shortcode-current-language {
    color: var(--tep-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tep-lang-switcher a {
    color: var(--tep-white);
    text-decoration: none;
    padding: 8px 10px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.tep-lang-switcher a:hover {
    color: var(--tep-gold);
}

.tep-lang-switcher select {
    background: rgba(0, 0, 0, 0.6);
    color: var(--tep-white);
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 0;
    padding: 8px 12px;
    min-height: 44px;
    font-family: var(--tep-font-sans);
    font-size: 12px;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.tep-phone {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
    color: var(--tep-white);
}

.tep-phone:hover {
    color: var(--tep-gold);
}

/* Buttons */
.tep-btn {
    display: inline-block;
    font-family: var(--tep-font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 28px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--tep-transition);
    text-align: center;
}

.tep-btn-gold {
    background: var(--tep-gold);
    color: var(--tep-black);
    border-color: var(--tep-gold);
}

.tep-btn-gold:hover {
    background: var(--tep-gold-hover);
    border-color: var(--tep-gold-hover);
    color: var(--tep-black);
}

.tep-btn-gold-outline {
    background: transparent;
    color: var(--tep-gold);
    border-color: var(--tep-gold);
}

.tep-btn-gold-outline:hover {
    background: var(--tep-gold);
    color: var(--tep-black);
}

.tep-btn-header {
    padding: 12px 22px;
    font-size: 10px;
}

/* Menu toggle */
.tep-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.tep-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--tep-white);
    transition: all var(--tep-transition);
}

.tep-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.tep-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.tep-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.tep-hero,
.tep-hero-row {
    position: relative;
    width: 100%;
    min-height: clamp(520px, 72vh, 800px);
    margin-top: calc(var(--tep-header-height) * -1);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: var(--tep-dark);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    pointer-events: none;
}

.tep-hero:not([style*="background-image"]) {
    background-image: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}

.tep-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.45) 35%,
        rgba(0, 0, 0, 0.25) 55%,
        rgba(0, 0, 0, 0.45) 80%,
        rgba(0, 0, 0, 0.65) 100%
    );
}

.tep-hero-row::before,
.tep-hero-row::after,
.tep-hero-row .wpb_column.vc_col-has-fill::after,
.tep-hero-row .vc_col-has-fill > .vc_column-inner::after,
.tep-wpbakery-content .tep-hero-row.vc_row-has-fill::after {
    display: none !important;
    content: none !important;
}

.tep-hero-row .wpb_column.vc_col-has-fill::before,
.tep-hero-row .vc_col-has-fill > .vc_column-inner::before,
.tep-wpbakery-content .tep-hero-row.vc_row-has-fill::before,
.tep-wpbakery-content .tep-hero-row.vc_row-has-fill > .vc_row::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.45) 35%,
        rgba(0, 0, 0, 0.25) 55%,
        rgba(0, 0, 0, 0.45) 80%,
        rgba(0, 0, 0, 0.65) 100%
    );
}

.tep-hero-row .wpb_column.vc_col-has-fill,
.tep-hero-row .vc_col-has-fill > .vc_column-inner,
.tep-wpbakery-content .tep-hero-row.vc_row-has-fill,
.tep-wpbakery-content .tep-hero-row.vc_row-has-fill > .vc_row {
    position: relative;
}

.tep-hero-row .tep-hero-content,
.tep-hero-content {
    position: relative;
    z-index: 2;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
    text-align: center;
    max-width: var(--tep-site-max);
    margin: 0 auto;
    padding: calc(var(--tep-header-height) + var(--tep-hero-offset)) var(--tep-site-gutter) 72px;
    width: 100%;
}

.tep-hero-row .wpb_column .wpb_wrapper,
.tep-hero-row .vc_column-inner > .wpb_wrapper,
.tep-hero-row .vc_column-inner > .vc_btn3-container,
.tep-hero-row .vc_column-inner > .wpb_content_element {
    position: relative;
    z-index: 2;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
}

.tep-hero-title {
    font-family: var(--tep-font-serif);
    font-size: clamp(28px, 4.2vw, 48px);
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 1.35;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: none;
}

.tep-hero-subtitle {
    font-family: var(--tep-font-sans);
    font-size: clamp(11px, 1.3vw, 13px);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.9;
    max-width: 680px;
    margin: 0 auto;
    text-shadow: none;
}

.tep-btn-hero {
    margin-top: 36px;
    padding: 14px 32px;
}

.tep-hero-eyebrow {
    font-family: var(--tep-font-sans);
    font-size: clamp(10px, 1.2vw, 12px);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tep-white);
    margin: 0;
    line-height: 1.6;
}

.tep-hero--split {
    align-items: stretch;
}

.tep-hero--split .tep-hero-inner {
    align-items: start;
    min-height: inherit;
    grid-template-columns: minmax(0, 1fr);
}

.tep-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: start;
    width: 100%;
    max-width: var(--tep-site-max);
    margin: 0 auto;
    padding: calc(var(--tep-header-height) + var(--tep-hero-offset)) var(--tep-site-gutter) 72px;
    pointer-events: auto;
}

.tep-hero-cta {
    margin: 0;
}

.tep-btn-hero-booking {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 18px 40px;
    font-size: 12px;
    letter-spacing: 2px;
    white-space: nowrap;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    width: auto;
}

.tep-booking-widget {
    background: #ffffff;
    border-radius: 4px;
    padding: 0 0 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.tep-booking-tabs {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tep-booking-tab {
    flex: 1;
    text-align: center;
    padding: 14px 12px;
    font-family: var(--tep-font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
    background: #f5f5f5;
    cursor: default;
}

.tep-booking-tab--active {
    color: var(--tep-gold);
    background: #ffffff;
    box-shadow: inset 0 -2px 0 var(--tep-gold);
}

.tep-booking-form {
    display: grid;
    gap: 14px;
    padding: 20px 22px 0;
}

.tep-booking-field {
    display: grid;
    gap: 6px;
}

.tep-booking-field span {
    font-family: var(--tep-font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #333;
}

.tep-booking-field input,
.tep-booking-field select {
    width: 100%;
    border: 1px solid #ddd;
    padding: 11px 12px;
    font-family: var(--tep-font-sans);
    font-size: 14px;
    color: #222;
    background: #fff;
}

.tep-booking-field input:focus,
.tep-booking-field select:focus {
    outline: none;
    border-color: var(--tep-gold);
}

.tep-booking-submit {
    width: 100%;
    margin-top: 6px;
    border-radius: 999px;
    padding: 14px 20px;
}

.tep-booking-widget--chbs {
    max-width: none;
    width: 100%;
    min-width: 0;
    flex-shrink: 0;
}

.tep-booking-widget--chbs .chbs-main-navigation-default,
.tep-booking-widget--chbs .chbs-main-navigation-responsive,
.tep-booking-widget--chbs .chbs-google-map,
.tep-booking-widget--chbs .chbs-main-content-navigation-button .chbs-button-step-next {
    display: none !important;
}

.tep-booking-widget--chbs .chbs-layout-50x50,
.tep-booking-widget--chbs .chbs-layout-33x33x33,
.tep-booking-widget--chbs .chbs-layout-100,
.tep-booking-widget--chbs .chbs-layout-column-left,
.tep-booking-widget--chbs .chbs-layout-column-right {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}

.tep-booking-widget--chbs .chbs-main,
.tep-booking-widget--chbs [class*="chbs-booking-form-id-"] {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    width: 100% !important;
}

.tep-booking-widget--chbs .chbs-main-content,
.tep-booking-widget--chbs .chbs-booking-form,
.tep-booking-widget--chbs .chbs-main-content-step-1 {
    background: #fff !important;
    border-radius: 4px;
    padding: 0 !important;
    width: 100% !important;
    max-height: none;
    overflow: visible;
}

.tep-booking-widget--chbs .chbs-tab.ui-tabs {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    width: 100% !important;
}

.tep-booking-widget--chbs .chbs-tab.ui-tabs .ui-tabs-nav {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    float: none !important;
    position: static !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    background: #f5f5f5 !important;
    order: 1;
}

.tep-booking-widget--chbs .chbs-tab.ui-tabs .ui-tabs-nav > li {
    flex: 1 1 50% !important;
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}

.tep-booking-widget--chbs .chbs-tab.ui-tabs .ui-tabs-nav > li > a {
    display: block !important;
    width: 100% !important;
    padding: 14px 10px !important;
    font-family: var(--tep-font-sans) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    text-align: center !important;
    color: #666 !important;
    background: #f5f5f5 !important;
    border: none !important;
    box-shadow: none !important;
}

.tep-booking-widget--chbs .chbs-tab.ui-tabs .ui-tabs-nav > li.ui-tabs-active > a {
    color: #000 !important;
    background: var(--tep-gold) !important;
    box-shadow: none !important;
}

.tep-booking-widget--chbs .chbs-tab > #panel-2:not(.ui-tabs-active) {
    display: none !important;
}

.tep-booking-widget--chbs .chbs-tab.ui-tabs .ui-tabs-panel {
    display: none !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    width: 100% !important;
    float: none !important;
    clear: both !important;
    order: 2;
    padding: 16px 18px 0 !important;
    border: none !important;
    position: static !important;
}

.tep-booking-widget--chbs .chbs-tab.ui-tabs .ui-tabs-panel.ui-tabs-active,
.tep-booking-widget--chbs .chbs-tab > div[id^="panel-"].ui-tabs-active {
    display: grid !important;
}

.tep-booking-widget--chbs .chbs-tab.ui-tabs .ui-tabs-panel > .chbs-form-field-pickup-date-time,
.tep-booking-widget--chbs .chbs-tab.ui-tabs .ui-tabs-panel > .chbs-form-field-return-date-time,
.tep-booking-widget--chbs .chbs-tab.ui-tabs .ui-tabs-panel > .chbs-form-field-location-switch,
.tep-booking-widget--chbs .chbs-tab.ui-tabs .ui-tabs-panel > div:last-child {
    grid-column: 1 / -1;
}

.tep-booking-widget--chbs .chbs-tab.ui-tabs .ui-tabs-panel > * {
    display: block !important;
    width: 100% !important;
    float: none !important;
    flex: none !important;
    flex-basis: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

.tep-booking-widget--chbs .chbs-form-field-pickup-date-time,
.tep-booking-widget--chbs .chbs-form-field-return-date-time {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px;
    margin: 0 0 14px !important;
    padding: 0 !important;
    border: none !important;
}

.tep-booking-widget--chbs .chbs-form-field-pickup-date-time .chbs-form-field,
.tep-booking-widget--chbs .chbs-form-field-return-date-time .chbs-form-field {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.tep-booking-widget--chbs .chbs-form-field {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin: 0 0 10px !important;
    padding: 0 !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 2px;
    box-sizing: border-box;
    position: static !important;
}

.tep-booking-widget--chbs .chbs-form-field > label {
    display: block !important;
    margin: 0 !important;
    padding: 8px 12px 2px !important;
    font-family: var(--tep-font-sans) !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 0.4px !important;
    line-height: 1.35 !important;
    text-transform: uppercase !important;
    color: #444 !important;
}

.tep-booking-widget--chbs .chbs-form-field .chbs-tooltip {
    font-size: 11px !important;
    opacity: 0.55;
    vertical-align: middle;
}

.tep-booking-widget--chbs .chbs-form-field .chbs-my-location-link {
    font-size: 10px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.tep-booking-widget--chbs .chbs-form-field input[type="text"],
.tep-booking-widget--chbs .chbs-form-field input[type="date"],
.tep-booking-widget--chbs .chbs-form-field input[type="time"],
.tep-booking-widget--chbs .chbs-form-field select,
.tep-booking-widget--chbs .chbs-form-field textarea,
.tep-booking-widget--chbs .chbs-form-field .ui-selectmenu-button {
    width: 100% !important;
    min-height: 40px !important;
    border: none !important;
    border-top: 1px solid #eee !important;
    padding: 10px 12px !important;
    font-family: var(--tep-font-sans) !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    color: #222 !important;
    background: #fff !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
}

.tep-booking-widget--chbs .chbs-form-field input:focus,
.tep-booking-widget--chbs .chbs-form-field select:focus,
.tep-booking-widget--chbs .chbs-form-field textarea:focus {
    outline: none !important;
    box-shadow: inset 0 0 0 1px var(--tep-gold) !important;
}

.tep-booking-widget--chbs .chbs-tab.ui-tabs .ui-tabs-panel > div:last-child {
    margin-top: 4px !important;
    padding: 0 0 20px !important;
    text-align: center;
}

.tep-booking-widget--chbs .chbs-button,
.tep-booking-widget--chbs button[type="submit"],
.tep-booking-widget--chbs .chbs-button-widget-submit {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    display: block !important;
    margin: 0 !important;
    background: var(--tep-gold) !important;
    color: #000 !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 14px 20px !important;
    font-family: var(--tep-font-sans) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
}

.tep-booking-widget--chbs .chbs-button:hover,
.tep-booking-widget--chbs button[type="submit"]:hover,
.tep-booking-widget--chbs .chbs-button-widget-submit:hover {
    background: var(--tep-gold-hover) !important;
}

.tep-booking-widget--chbs .chbs-step-list,
.tep-booking-widget--chbs .chbs-summary,
.tep-booking-widget--chbs .chbs-vehicle-list,
.tep-booking-widget--chbs .chbs-payment-form {
    display: none !important;
}

.tep-booking-widget--chbs [class*="chbs-width-"] .chbs-tab.ui-tabs .ui-tabs-nav > li {
    width: auto !important;
    flex: 1 1 50% !important;
    float: none !important;
}

.tep-booking-widget--chbs [class*="chbs-width-"] .chbs-tab.ui-tabs .ui-tabs-panel {
    display: none !important;
    width: 100% !important;
}

.tep-booking-widget--chbs [class*="chbs-width-"] .chbs-tab.ui-tabs .ui-tabs-panel.ui-tabs-active {
    display: grid !important;
}

.tep-booking-widget--chbs .tep-booking-wizard-step-hidden {
    display: none !important;
}

.tep-booking-widget--chbs .tep-booking-wizard__head {
    grid-column: 1 / -1;
    margin-bottom: 4px;
}

.tep-booking-widget--chbs .tep-booking-wizard__progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.tep-booking-widget--chbs .tep-booking-wizard__dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tep-booking-widget--chbs .tep-booking-wizard__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.tep-booking-widget--chbs .tep-booking-wizard__dot.is-active {
    background: var(--tep-gold);
}

.tep-booking-widget--chbs .tep-booking-wizard__label {
    font-family: var(--tep-font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #666;
}

.tep-booking-widget--chbs .tep-booking-wizard__nav {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 4px 0 16px;
}

.tep-booking-widget--chbs .tep-booking-wizard__back,
.tep-booking-widget--chbs .tep-booking-wizard__next {
    flex: 1 1 50%;
    min-height: 44px;
    border: 1px solid #ddd;
    border-radius: 999px;
    background: #fff;
    color: #222;
    font-family: var(--tep-font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
}

.tep-booking-widget--chbs .tep-booking-wizard__next {
    background: var(--tep-gold);
    border-color: var(--tep-gold);
    color: #000;
}

.tep-booking-widget--chbs .tep-booking-wizard__back:hover {
    border-color: #bbb;
}

.tep-booking-widget--chbs .tep-booking-wizard__next:hover {
    background: var(--tep-gold-hover);
    border-color: var(--tep-gold-hover);
}

.tep-booking-widget--chbs .chbs-main-content-step-1 > .chbs-clear-fix {
    padding: 0 18px 20px;
}

.tep-booking-widget--chbs .chbs-main-content-step-1 > .chbs-clear-fix[hidden] {
    display: none !important;
}

.tep-booking-fallback {
    background: #fff;
    padding: 32px 24px;
    text-align: center;
}

.tep-booking-fallback-text {
    color: #333;
    margin-bottom: 20px;
    font-size: 15px;
}

.tep-hero-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
    min-width: 0;
    max-width: 720px;
}

.tep-hero-headline {
    font-family: var(--tep-font-serif);
    font-size: clamp(32px, 4.8vw, 56px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tep-gold);
    margin: 0;
}

.tep-lang-en .tep-hero-headline {
    letter-spacing: 1px;
}

.tep-title-band {
    background: var(--tep-black);
    padding: 56px 0 64px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tep-title-band-heading {
    font-family: var(--tep-font-serif);
    font-size: clamp(22px, 3.2vw, 34px);
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 1.35;
    text-transform: uppercase;
    color: var(--tep-white);
    margin-bottom: 16px;
}

.tep-title-band-sub {
    font-family: var(--tep-font-sans);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--tep-gold);
}

.tep-why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(32px, 4vw, 56px);
    align-items: start;
}

.tep-why-heading {
    font-family: var(--tep-font-serif);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 1.35;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tep-gallery {
    background: var(--tep-black);
    padding: 0 0 64px;
}

.tep-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 2vw, 24px);
}

.tep-gallery-item {
    margin: 0;
    min-height: clamp(280px, 38vw, 480px);
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.tep-gallery-item img {
    width: 100%;
    height: 100%;
    min-height: clamp(280px, 38vw, 480px);
    object-fit: cover;
    display: block;
}

.tep-quote-section {
    background: var(--tep-black);
    padding: 0 0 90px;
    text-align: center;
}

.tep-quote-mark {
    display: block;
    font-family: var(--tep-font-serif);
    font-size: clamp(48px, 8vw, 80px);
    line-height: 1;
    color: var(--tep-gold);
    margin-bottom: 8px;
}

.tep-quote-block {
    max-width: 820px;
    margin: 0 auto 20px;
    font-family: var(--tep-font-serif);
    font-size: clamp(16px, 2vw, 20px);
    font-style: italic;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    border: none;
    padding: 0;
    background: none;
}

.tep-quote-author {
    font-family: var(--tep-font-sans);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tep-gold);
}

.tep-engagements-heading {
    text-align: center;
    font-family: var(--tep-font-serif);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.4;
    color: var(--tep-white);
    max-width: 900px;
    margin: 0 auto 64px;
}

.tep-info-bar {
    background: #d8d8d8;
    padding: 28px 0;
}

.tep-info-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
}

.tep-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: left;
}

.tep-info-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: #333;
}

.tep-info-icon svg {
    width: 100%;
    height: 100%;
}

.tep-info-text {
    font-family: var(--tep-font-sans);
    font-size: 14px;
    font-weight: 500;
    color: #222;
    line-height: 1.4;
}

a.tep-info-text:hover {
    color: var(--tep-gold);
}

.tep-btn-header.tep-btn-gold-outline {
    color: var(--tep-white);
    border-color: var(--tep-gold);
}

.tep-btn-header.tep-btn-gold-outline:hover {
    color: var(--tep-black);
}

/* Why choose */
.tep-why {
    background: var(--tep-black);
    padding: 90px 0 100px;
}

.tep-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-bottom: 40px;
}

.tep-why-title {
    font-family: var(--tep-font-serif);
    font-size: 20px;
    color: var(--tep-gold);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.tep-why-text,
.tep-why-lead {
    font-size: 15px;
    line-height: 1.85;
    color: var(--tep-text-muted);
    font-weight: 300;
}

.tep-why-lead {
    max-width: 900px;
    margin: 48px auto 0;
    text-align: center;
}

.tep-quote {
    max-width: 820px;
    margin: 0 auto;
    padding: 28px 32px;
    border-left: 3px solid var(--tep-gold);
    font-family: var(--tep-font-serif);
    font-size: clamp(16px, 2vw, 20px);
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.03);
}

.tep-section-lead {
    text-align: center;
    max-width: 720px;
    margin: -40px auto 56px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--tep-text-muted);
    font-weight: 300;
}

.tep-section-title--compact {
    margin-bottom: 16px;
}

/* Services grid */
.tep-services {
    background: var(--tep-black);
    padding: 90px 0 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.tep-service-card {
    display: block;
    padding: 32px 28px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color var(--tep-transition), background var(--tep-transition), transform var(--tep-transition);
}

.tep-service-card:hover {
    border-color: var(--tep-gold);
    background: rgba(201, 168, 76, 0.06);
    transform: translateY(-2px);
}

.tep-service-title {
    font-family: var(--tep-font-serif);
    font-size: 17px;
    color: var(--tep-gold);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.tep-service-text {
    font-size: 14px;
    line-height: 1.75;
    color: var(--tep-text-muted);
    font-weight: 300;
}

.tep-services-cta {
    text-align: center;
    margin-top: 48px;
}

/* Contact strip */
.tep-contact-strip {
    background: var(--tep-charcoal);
    padding: 70px 0 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tep-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.tep-contact-item {
    text-align: center;
}

.tep-contact-label {
    display: block;
    font-family: var(--tep-font-serif);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tep-gold);
    margin-bottom: 10px;
}

.tep-contact-value {
    font-size: 15px;
    color: var(--tep-white);
    line-height: 1.5;
}

a.tep-contact-value:hover {
    color: var(--tep-gold);
}

.tep-contact-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Engagements */
.tep-engagements,
.tep-engagements-row {
    background: var(--tep-charcoal);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.tep-section-title {
    text-align: center;
    font-family: var(--tep-font-serif);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tep-title-gold {
    color: var(--tep-gold);
}

.tep-title-white {
    color: var(--tep-white);
}

.tep-engagements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.tep-engagement-item {
    text-align: center;
    padding: 0 20px;
}

.tep-engagement-icon {
    margin-bottom: 28px;
}

.tep-engagement-icon svg {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    color: var(--tep-gold);
}

.tep-engagement-title {
    font-family: var(--tep-font-serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--tep-gold);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.tep-engagement-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--tep-text-muted);
    font-weight: 300;
}

.tep-star-decoration {
    position: absolute;
    bottom: 40px;
    right: 0;
    opacity: 0.5;
}

.tep-star-decoration svg {
    width: 50px;
    height: 50px;
}

/* Footer */
.tep-footer {
    background: var(--tep-black);
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tep-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--tep-site-max);
    margin: 0 auto;
    padding: 0 var(--tep-site-gutter);
    gap: 32px;
}

.tep-footer-logo-link {
    display: flex;
    align-items: center;
}

.tep-footer-links {
    display: flex;
    gap: 32px;
}

.tep-footer-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--tep-white);
    text-transform: capitalize;
}

.tep-footer-links a:hover {
    color: var(--tep-gold);
}

.tep-footer-social {
    display: flex;
    gap: 16px;
}

.tep-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--tep-gold);
    transition: color var(--tep-transition), transform var(--tep-transition);
}

.tep-social-link:hover {
    color: var(--tep-white);
    transform: translateY(-2px);
}

.tep-social-link svg {
    width: 20px;
    height: 20px;
}

.tep-footer-bottom {
    text-align: center;
    margin-top: 40px;
    max-width: var(--tep-site-max);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--tep-site-gutter);
}

.tep-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

/* WPBakery overrides */
.tep-wpbakery-content {
    overflow-x: hidden;
}

.tep-wpbakery-content .vc_row {
    margin-left: 0;
    margin-right: 0;
}

.tep-wpbakery-content .wpb_content_element {
    margin-bottom: 0;
}

.tep-wpbakery-content .tep-hero-row.vc_row {
    margin-top: calc(var(--tep-header-height) * -1);
    min-height: clamp(520px, 72vh, 800px) !important;
    width: 100% !important;
    max-width: none !important;
    left: auto !important;
    right: auto !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    overflow: hidden;
}

.tep-wpbakery-content .tep-hero-row.vc_row-has-fill > .vc_row,
.tep-wpbakery-content .tep-hero-row > .vc_row {
    min-height: inherit !important;
    width: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.tep-hero-row > .wpb_column,
.tep-hero-row .vc_column_container {
    position: relative;
    z-index: auto;
    width: 100%;
    max-width: none;
    margin: 0;
    background: transparent !important;
}

.tep-hero-row .tep-hero-content {
    max-width: var(--tep-site-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--tep-site-gutter) !important;
    padding-right: var(--tep-site-gutter) !important;
}

.tep-hero-row .wpb_column:not(.vc_col-has-fill) > .vc_column-inner,
.tep-hero-row .wpb_text_column {
    padding-top: calc(var(--tep-header-height) + var(--tep-hero-offset)) !important;
    padding-bottom: 72px !important;
    padding-left: max(var(--tep-site-gutter), calc((100% - var(--tep-site-max)) / 2)) !important;
    padding-right: max(var(--tep-site-gutter), calc((100% - var(--tep-site-max)) / 2)) !important;
    text-align: center !important;
    background: transparent !important;
    box-shadow: none !important;
}

.tep-hero-row .vc_col-has-fill > .vc_column-inner {
    padding-top: calc(var(--tep-header-height) + var(--tep-hero-offset)) !important;
    padding-bottom: 72px !important;
    padding-left: max(var(--tep-site-gutter), calc((100% - var(--tep-site-max)) / 2)) !important;
    padding-right: max(var(--tep-site-gutter), calc((100% - var(--tep-site-max)) / 2)) !important;
    text-align: center !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: clamp(520px, 72vh, 800px);
    box-shadow: none !important;
}

.tep-hero-row .vc_btn3-container,
.tep-hero-row .wpb_content_element {
    margin-top: 36px;
    text-align: center;
    background: transparent !important;
    background-color: transparent !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.tep-hero-row .vc_btn3-container .vc_btn3 {
    display: inline-block !important;
    width: auto !important;
}

.tep-wpbakery-content .tep-hero-row.vc_row[data-vc-full-width="true"] > .vc_row {
    min-height: inherit !important;
}

.tep-wpbakery-content .tep-hero-row .wpb_column.vc_col-has-fill > .vc_column-inner,
.tep-wpbakery-content .tep-hero-row.vc_col-has-fill > .vc_column-inner {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: clamp(520px, 72vh, 800px);
}

.tep-wpbakery-content .tep-hero-row + .vc_row:not(.tep-engagements-row) {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    padding: 0 !important;
    margin-top: -88px !important;
    margin-bottom: 0 !important;
    min-height: 0 !important;
    position: relative;
    z-index: 4;
    box-shadow: none !important;
}

.tep-wpbakery-content .tep-hero-row + .vc_row:not(.tep-engagements-row) > .vc_row,
.tep-wpbakery-content .tep-hero-row + .vc_row:not(.tep-engagements-row) .wpb_column,
.tep-wpbakery-content .tep-hero-row + .vc_row:not(.tep-engagements-row) .vc_column-inner,
.tep-wpbakery-content .tep-hero-row + .vc_row:not(.tep-engagements-row) .wpb_wrapper,
.tep-wpbakery-content .tep-hero-row + .vc_row:not(.tep-engagements-row) .wpb_content_element {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    min-height: 0 !important;
    box-shadow: none !important;
}

.tep-hero-cta-row,
.tep-wpbakery-content .tep-hero-cta-row,
.tep-wpbakery-content .tep-hero-row + .vc_row[class*="hero_cta"] {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    padding: 0 !important;
    margin-top: -88px !important;
    margin-bottom: 0 !important;
    position: relative;
    z-index: 4;
}

.tep-hero-cta-row .vc_column-inner,
.tep-wpbakery-content .tep-hero-row + .vc_row[class*="hero_cta"] .vc_column-inner,
.tep-wpbakery-content .tep-hero-row + .vc_row:not(.tep-engagements-row) .vc_column-inner {
    padding: 0 !important;
    text-align: center !important;
    background: transparent !important;
}

.tep-hero-cta-row .vc_btn3-container,
.tep-wpbakery-content .tep-hero-row + .vc_row[class*="hero_cta"] .vc_btn3-container,
.tep-wpbakery-content .tep-hero-row + .vc_row:not(.tep-engagements-row) .vc_btn3-container {
    background: transparent !important;
    padding: 0 !important;
}

.tep-wpbakery-content .tep-hero-cta-row > .vc_row,
.tep-wpbakery-content .tep-hero-cta-row.vc_row-has-fill > .vc_row {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

.tep-wpbakery-content .tep-engagements-row::after {
    content: '';
    display: table;
    clear: both;
}

.tep-wpbakery-content .tep-engagements-row.tep-engagements {
    padding-bottom: 48px !important;
}

.tep-wpbakery-content .tep-engagements-row:not(.tep-engagements) {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.tep-wpbakery-content .tep-engagements-row .tep-section-title {
    margin-bottom: 0 !important;
}

.tep-wpbakery-content .tep-engagements-row {
    padding-left: max(var(--tep-site-gutter), calc((100% - var(--tep-site-max)) / 2)) !important;
    padding-right: max(var(--tep-site-gutter), calc((100% - var(--tep-site-max)) / 2)) !important;
    box-sizing: border-box;
}

.tep-wpbakery-content .tep-engagements-row > .wpb_column {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    float: left;
}

.tep-wpbakery-content .tep-engagements-row > .wpb_column.vc_col-sm-4,
.tep-wpbakery-content .tep-engagements-row > .wpb_column[class*="vc_col-sm-4"] {
    width: 33.333333%;
}

.tep-wpbakery-content .tep-engagements-row .vc_column-inner {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.tep-wpbakery-content .tep-engagements-row > .wpb_column:only-child .vc_column-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.tep-wpbakery-content .tep-engagements-grid-row {
    margin-top: 48px;
}

.tep-wpbakery-content .tep-engagements-grid-row .vc_column-inner {
    text-align: center;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.tep-wpbakery-content .tep-engagements-grid-row .wpb_column {
    margin-bottom: 0;
}

.tep-wpbakery-content .tep-engagement-title {
    font-family: var(--tep-font-serif) !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: var(--tep-gold) !important;
    margin: 20px 0 16px !important;
    letter-spacing: 1px !important;
}

.tep-wpbakery-content .tep-engagement-text {
    font-size: 14px !important;
    line-height: 1.8 !important;
    color: var(--tep-text-muted) !important;
    font-weight: 300 !important;
}

.tep-wpbakery-content .tep-engagement-icon {
    margin-bottom: 8px !important;
}

.tep-wpbakery-content .vc_custom_heading.tep-hero-title {
    font-family: var(--tep-font-serif) !important;
    font-size: clamp(28px, 5vw, 48px) !important;
    font-weight: 400 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    color: var(--tep-white) !important;
    text-align: center !important;
    line-height: 1.3 !important;
}

.tep-wpbakery-content .vc_custom_heading.tep-hero-subtitle {
    font-family: var(--tep-font-sans) !important;
    font-size: clamp(11px, 1.5vw, 14px) !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    color: var(--tep-text-muted) !important;
    text-align: center !important;
}

.tep-wpbakery-content .vc_icon_element.tep-engagement-icon .vc_icon_element-icon {
    color: var(--tep-gold) !important;
    font-size: 48px !important;
}

.tep-wpbakery-content .vc_btn3.tep-btn-gold {
    background-color: var(--tep-gold) !important;
    color: var(--tep-black) !important;
    border-color: var(--tep-gold) !important;
    font-family: var(--tep-font-sans) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    border-radius: 0 !important;
    padding: 14px 28px !important;
}

.tep-wpbakery-content .vc_btn3.tep-btn-gold:hover {
    background-color: var(--tep-gold-hover) !important;
}

.tep-page-content {
    padding-top: var(--tep-header-height);
}

.tep-page-title {
    font-family: var(--tep-font-serif);
    font-size: clamp(28px, 4vw, 36px);
    text-align: center;
    padding: 0 0 40px;
    color: var(--tep-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tep-wpbakery-content .tep-dark-row .wpb_text_column p,
.tep-wpbakery-content .tep-dark-row .wpb_text_column li {
    color: var(--tep-text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.tep-wpbakery-content .tep-dark-row .wpb_text_column h2 {
    font-family: var(--tep-font-serif);
    font-size: 22px;
    color: var(--tep-gold);
    margin: 40px 0 16px;
    letter-spacing: 1px;
}

.tep-wpbakery-content .tep-dark-row .wpb_text_column ul {
    padding-left: 20px;
    margin-bottom: 24px;
}

.tep-wpbakery-content .tep-dark-row .wpb_text_column li {
    list-style: disc;
    margin-bottom: 8px;
}

.tep-wpbakery-content .tep-dark-row > .wpb_column {
    max-width: var(--tep-site-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--tep-site-gutter);
    padding-right: var(--tep-site-gutter);
}

.tep-wpbakery-content .tep-why-row,
.tep-wpbakery-content .tep-services-row,
.tep-wpbakery-content .tep-contact-strip-row {
    padding-left: max(var(--tep-site-gutter), calc((100% - var(--tep-site-max)) / 2)) !important;
    padding-right: max(var(--tep-site-gutter), calc((100% - var(--tep-site-max)) / 2)) !important;
}

.tep-wpbakery-content .tep-why-row .tep-why-title,
.tep-wpbakery-content .tep-services-row .tep-service-title,
.tep-wpbakery-content .tep-contact-strip-row .tep-contact-label {
    font-family: var(--tep-font-serif);
}

.tep-wpbakery-content .tep-services-grid-row .tep-service-card {
    height: 100%;
}

.tep-wpbakery-content .tep-hero-row + .vc_row:not(.tep-engagements-row):not(.tep-why-row):not(.tep-services-row):not(.tep-contact-strip-row) {
    margin-top: -88px !important;
}

/* Inner pages */
.tep-page-hero {
    position: relative;
    min-height: clamp(280px, 38vh, 420px);
    margin-top: 0;
    background-color: var(--tep-dark);
    background-size: cover;
    background-position: center 38%;
    display: flex;
    align-items: flex-start;
}

.tep-page-hero[style*="background-image"] {
    min-height: clamp(300px, 40vh, 440px);
    background-position: center 42%;
}

.tep-page-hero--compact {
    min-height: clamp(220px, 32vh, 320px);
}

.tep-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.82) 100%);
}

.tep-page-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: calc(var(--tep-header-height) + 24px) var(--tep-site-gutter) 48px;
}

.tep-page-hero-eyebrow {
    font-family: var(--tep-font-sans);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tep-gold);
    margin-bottom: 12px;
}

.tep-page-hero-title {
    font-family: var(--tep-font-serif);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tep-white);
    line-height: 1.25;
}

.tep-page-body {
    background: var(--tep-black);
    padding: 72px 0 90px;
}

.tep-page-zone {
    width: 100%;
    color: var(--tep-text-muted);
}

.tep-page-zone h2,
.tep-page-prose h2 {
    font-family: var(--tep-font-serif);
    color: var(--tep-gold);
    font-size: clamp(22px, 3vw, 28px);
    letter-spacing: 1px;
    margin: 40px 0 16px;
}

.tep-page-zone > h2:first-child,
.tep-careers-section > h2,
.tep-careers-panel h2,
.tep-contact-form h2 {
    margin-top: 0;
}

.tep-page-prose {
    max-width: 100%;
    margin: 0;
    color: var(--tep-text-muted);
    font-weight: 300;
    line-height: 1.85;
}

.tep-page-prose--legal {
    max-width: 100%;
}

.tep-page-prose--plugin {
    max-width: var(--tep-site-max);
    padding-top: calc(var(--tep-header-height) + 32px);
}

.tep-page-zone h3,
.tep-page-prose h3 {
    font-family: var(--tep-font-serif);
    color: var(--tep-gold);
    letter-spacing: 1px;
    margin: 40px 0 16px;
    font-size: 20px;
}

.tep-page-prose p {
    margin-bottom: 18px;
}

.tep-page-prose a:not(.tep-btn) {
    color: var(--tep-gold);
}

.tep-page-prose a:not(.tep-btn):hover {
    color: var(--tep-white);
}

.tep-page-lead {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
}

.tep-page-list {
    list-style: disc;
    padding-left: 22px;
    margin: 0 0 24px;
}

.tep-page-list li {
    margin-bottom: 10px;
}

.tep-page-list--checks {
    list-style: none;
    padding-left: 0;
}

.tep-page-list--checks li {
    position: relative;
    padding-left: 24px;
}

.tep-page-list--checks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--tep-gold);
}

.tep-page-figure {
    margin: 32px 0;
}

.tep-page-figure img {
    width: 100%;
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.tep-page-note {
    margin-top: 32px;
    padding: 20px 24px;
    border-left: 3px solid var(--tep-gold);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.88);
}

.tep-contact-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
    margin-bottom: 56px;
}

.tep-contact-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.tep-contact-form-section {
    padding: 28px 32px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 0;
}

.tep-contact-regions {
    margin-bottom: 0;
}

.tep-contact-regions h2:first-child {
    margin-top: 0;
}

.tep-contact-details {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.tep-contact-details li {
    margin-bottom: 12px;
}

.tep-partners-grid,
.tep-feature-grid,
.tep-values-grid,
.tep-packages-grid {
    display: grid;
    gap: 24px;
    margin: 32px 0;
}

.tep-partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.tep-feature-grid,
.tep-values-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.tep-packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.tep-partner-card,
.tep-feature-item,
.tep-value-item,
.tep-package-card {
    padding: 28px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    background: rgba(255, 255, 255, 0.02);
}

.tep-partner-card h3,
.tep-feature-item h3,
.tep-value-item h3,
.tep-package-card h3 {
    font-family: var(--tep-font-serif);
    color: var(--tep-gold);
    margin-bottom: 12px;
    font-size: 18px;
}

.tep-partner-logo {
    height: 72px;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.tep-partner-logo img {
    max-height: 72px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
}

.tep-package-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 16px;
}

.tep-guide-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.tep-guide-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.tep-guide-item figcaption {
    margin-top: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

.tep-quote--page {
    margin-top: 40px;
}

.tep-quote--page cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tep-gold);
}

.tep-vehicle-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

.tep-vehicle-media {
    background: var(--tep-black);
    padding: 0 0 48px;
}

.tep-vehicle-showcase {
    max-width: 1100px;
    margin: 0 auto;
}

.tep-vehicle-showcase__main {
    margin: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.35);
    background: #111;
}

.tep-vehicle-showcase__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.tep-vehicle-showcase__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.tep-vehicle-showcase__thumb {
    margin: 0;
    padding: 0;
    border: 2px solid rgba(201, 168, 76, 0.25);
    background: #111;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    cursor: pointer;
    transition: border-color var(--tep-transition), transform var(--tep-transition);
}

.tep-vehicle-showcase__thumb:hover,
.tep-vehicle-showcase__thumb.is-active {
    border-color: var(--tep-gold);
}

.tep-vehicle-showcase__thumb.is-active {
    transform: translateY(-2px);
}

.tep-vehicle-showcase__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    pointer-events: none;
}

.tep-vehicle-details {
    max-width: 820px;
}

.tep-vehicle-image img {
    width: 100%;
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.tep-vehicle-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.tep-vehicle-gallery__item {
    margin: 0;
}

.tep-vehicle-gallery__item img {
    width: 100%;
    height: 100%;
    min-height: 120px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.tep-vehicle-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.tep-service-card {
    color: inherit;
    text-decoration: none;
}

.tep-fleet-intro {
    max-width: 720px;
    margin-bottom: 40px;
}

.tep-fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.tep-fleet-card {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    border: 1px solid rgba(201, 168, 76, 0.25);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.tep-fleet-card:hover {
    border-color: var(--tep-gold);
    transform: translateY(-2px);
}

.tep-fleet-card__image {
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #111;
}

.tep-fleet-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.45s ease;
}

.tep-fleet-card:hover .tep-fleet-card__image img {
    transform: scale(1.04);
}

.tep-fleet-card__body {
    padding: 20px 24px 24px;
}

.tep-fleet-card__type {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tep-gold);
    margin-bottom: 8px;
}

.tep-fleet-card__title {
    font-family: var(--tep-font-heading);
    font-size: 20px;
    margin: 0 0 8px;
}

.tep-fleet-card__meta {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.tep-legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.tep-legal-table th,
.tep-legal-table td {
    border: 1px solid rgba(201, 168, 76, 0.25);
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
}

.tep-legal-table th {
    background: rgba(201, 168, 76, 0.08);
    color: var(--tep-gold);
    font-weight: 600;
}

.tep-table-wrap {
    overflow-x: auto;
}

.tep-legal-updated {
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.65);
}

.tep-page-list--links a {
    color: var(--tep-gold);
}

.tep-vehicle-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
}

.tep-vehicle-meta li {
    font-size: 15px;
}

.tep-form {
    margin-top: 32px;
    display: grid;
    gap: 20px;
}

.tep-form-row {
    display: grid;
    gap: 8px;
}

.tep-form-row label {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--tep-gold);
}

.tep-form-row input,
.tep-form-row select,
.tep-form-row textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid rgba(201, 168, 76, 0.35);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
}

.tep-form-row input:focus,
.tep-form-row select:focus,
.tep-form-row textarea:focus {
    outline: none;
    border-color: var(--tep-gold);
}

.tep-group-form {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.tep-plugin-form--cf7 .wpcf7 {
    margin-top: 32px;
}

.tep-plugin-form--cf7 .wpcf7-form {
    display: grid;
    gap: 20px;
}

.tep-plugin-form--cf7 .wpcf7-form p {
    margin: 0;
    display: grid;
    gap: 8px;
}

.tep-plugin-form--cf7 label,
.tep-plugin-form--cf7 .wpcf7-form-control-wrap {
    display: grid;
    gap: 8px;
}

.tep-plugin-form--cf7 .wpcf7-form label {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--tep-gold);
}

.tep-plugin-form--cf7 input[type="text"],
.tep-plugin-form--cf7 input[type="email"],
.tep-plugin-form--cf7 input[type="tel"],
.tep-plugin-form--cf7 input[type="number"],
.tep-plugin-form--cf7 input[type="date"],
.tep-plugin-form--cf7 input[type="time"],
.tep-plugin-form--cf7 input[type="url"],
.tep-plugin-form--cf7 select,
.tep-plugin-form--cf7 textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid rgba(201, 168, 76, 0.35);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
}

.tep-plugin-form--cf7 input:focus,
.tep-plugin-form--cf7 select:focus,
.tep-plugin-form--cf7 textarea:focus {
    outline: none;
    border-color: var(--tep-gold);
}

.tep-plugin-form--cf7 .wpcf7-submit,
.tep-plugin-form--cf7 input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 28px;
    border: 1px solid var(--tep-gold);
    background: var(--tep-gold);
    color: #000;
    font-family: var(--tep-font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.tep-plugin-form--cf7 .wpcf7-submit:hover,
.tep-plugin-form--cf7 input[type="submit"]:hover {
    background: var(--tep-gold-hover);
    border-color: var(--tep-gold-hover);
}

.tep-plugin-form--cf7 .wpcf7-spinner {
    margin: 0 0 0 12px;
}

.tep-plugin-form--cf7 .wpcf7-response-output {
    margin: 16px 0 0;
    padding: 14px 16px;
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: #fff;
}

.tep-plugin-form--cf7 .wpcf7-not-valid-tip {
    color: #ffb4b4;
    font-size: 13px;
}

.tep-plugin-form--cf7 .wpcf7-list-item {
    margin: 0;
}

.tep-page-closing {
    margin-top: 32px;
    font-size: 17px;
}

.tep-contact-aside {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.tep-contact-image {
    margin: 0;
    height: 100%;
}

.tep-contact-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.tep-contact-form h2 {
    font-family: var(--tep-font-serif);
    color: var(--tep-gold);
    font-size: clamp(22px, 3vw, 28px);
    margin: 0 0 12px;
}

.tep-contact-form > p {
    margin-bottom: 24px;
    color: var(--tep-text-muted);
}

.tep-careers-intro {
    margin-bottom: 48px;
}

.tep-careers-section {
    margin-bottom: 56px;
}

.tep-careers-section:last-child {
    margin-bottom: 0;
}

.tep-careers-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.tep-careers-panel {
    padding: 32px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    background: rgba(255, 255, 255, 0.02);
}

.tep-careers-panel h2 {
    margin-top: 0;
}

.tep-values-grid--careers {
    grid-template-columns: repeat(2, 1fr);
}

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

.tep-careers-job-card {
    padding: 28px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    background: rgba(255, 255, 255, 0.02);
}

.tep-careers-job-card h3 {
    font-family: var(--tep-font-serif);
    color: var(--tep-gold);
    font-size: 18px;
    margin: 0 0 12px;
}

.tep-careers-job-card p {
    margin: 0;
    line-height: 1.75;
}

.tep-careers-apply {
    padding: 40px;
    border: 1px solid var(--tep-gold);
    background: rgba(201, 168, 76, 0.06);
    text-align: center;
}

.tep-careers-apply h2 {
    margin-top: 0;
}

.tep-careers-apply p {
    margin-bottom: 24px;
}

.admin-bar .tep-hero-content,
.admin-bar .tep-hero-row .vc_column-inner,
.admin-bar .tep-hero-row .wpb_column:not(.vc_col-has-fill) > .vc_column-inner,
.admin-bar .tep-hero-inner {
    padding-top: calc(var(--tep-header-height) + var(--tep-hero-offset) + 32px);
}

.admin-bar .tep-page-hero-inner {
    padding-top: calc(var(--tep-header-height) + 56px);
}
