/* =========================================================
   ATAYURT TOUR — Global Site Theme
   Sıcak & Maceracı / Toprak Yeşili & Terra Cotta
   Loaded after theme.css to override global look across all pages.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Caveat:wght@500;700&display=swap');

:root{
    --terra-deep:    #2D4A1F;
    --terra-olive:   #5C7C3D;
    --terra-moss:    #8B9A5E;
    --terra-sage:    #B6BD8A;
    --terra-clay:    #C2410C;
    --terra-clay-2:  #D2691E;
    --terra-amber:   #E6A23C;
    --terra-sand:    #F5EBD8;
    --terra-cream:   #FAF6ED;
    --terra-paper:   #FFFCF6;
    --terra-bark:    #2B1F14;
    --terra-stone:   #5C4A3A;
    --terra-line:    #E8DFC9;

    --font-display:  'Playfair Display', Georgia, serif;
    --font-body:     'Inter', system-ui, -apple-system, sans-serif;
    --font-hand:     'Caveat', cursive;

    --shadow-sm:  0 4px 14px rgba(43, 31, 20, 0.06);
    --shadow-md:  0 12px 30px rgba(43, 31, 20, 0.10);
    --shadow-lg:  0 25px 60px rgba(43, 31, 20, 0.18);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 42px;

    --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- base typography ---------- */
html, body{
    font-family: var(--font-body);
    color: var(--terra-bark);
    background: var(--terra-cream);
    font-size: 16px;
    line-height: 1.65;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
    font-family: var(--font-display);
    color: var(--terra-bark);
    letter-spacing: -0.01em;
    font-weight: 700;
    line-height: 1.2;
}

p, li, dd, dt{ color: var(--terra-bark); }
.text-muted, small, .small{ color: var(--terra-stone) !important; }

a{ color: var(--terra-clay); transition: color .25s var(--ease); }
a:hover, a:focus{ color: var(--terra-clay-2); text-decoration: none; }

/* ---------- Bootstrap utility overrides ---------- */
.bg-primary{ background-color: var(--terra-clay) !important; }
.bg-success{ background-color: var(--terra-deep) !important; }
.bg-info{    background-color: var(--terra-olive) !important; }
.bg-warning{ background-color: var(--terra-amber) !important; }
.bg-danger{  background-color: #B33A1A !important; }
.bg-light{   background-color: var(--terra-cream) !important; }
.bg-dark{    background-color: var(--terra-bark) !important; }
.bg-white{   background-color: #fff !important; }

.text-primary{ color: var(--terra-clay) !important; }
.text-success{ color: var(--terra-deep) !important; }
.text-info{    color: var(--terra-olive) !important; }
.text-warning{ color: var(--terra-amber) !important; }
.text-danger{  color: #B33A1A !important; }
.text-dark{    color: var(--terra-bark) !important; }
.text-white{   color: #fff !important; }

.border-primary{ border-color: var(--terra-clay) !important; }
.border-success{ border-color: var(--terra-deep) !important; }
.border-color-1, .border-color-8{ border-color: var(--terra-line) !important; }

/* ---------- buttons ---------- */
.btn{
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 999px;
    padding: 12px 26px;
    letter-spacing: .03em;
    transition: transform .3s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), box-shadow .3s var(--ease);
    border-width: 1.5px;
}
.btn:hover, .btn:focus{ transform: translateY(-1px); }

.btn-primary,
.btn-primary:not(:disabled):not(.disabled){
    background-color: var(--terra-clay);
    border-color: var(--terra-clay);
    color: #fff;
    box-shadow: 0 10px 22px -8px rgba(194,65,12,.5);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):hover,
.btn-primary:not(:disabled):not(.disabled):focus{
    background-color: var(--terra-clay-2);
    border-color: var(--terra-clay-2);
    color: #fff;
}

.btn-secondary,
.btn-secondary:not(:disabled):not(.disabled){
    background-color: var(--terra-bark);
    border-color: var(--terra-bark);
    color: var(--terra-cream);
}
.btn-secondary:hover,
.btn-secondary:not(:disabled):not(.disabled):hover{
    background-color: var(--terra-deep);
    border-color: var(--terra-deep);
    color: #fff;
}

.btn-success,
.btn-success:not(:disabled):not(.disabled){
    background-color: var(--terra-deep);
    border-color: var(--terra-deep);
    color: #fff;
}
.btn-success:hover,
.btn-success:not(:disabled):not(.disabled):hover{
    background-color: var(--terra-olive);
    border-color: var(--terra-olive);
    color: #fff;
}

.btn-info,
.btn-info:not(:disabled):not(.disabled){
    background-color: var(--terra-olive);
    border-color: var(--terra-olive);
    color: #fff;
}
.btn-info:hover{
    background-color: var(--terra-deep);
    border-color: var(--terra-deep);
    color: #fff;
}

.btn-warning,
.btn-warning:not(:disabled):not(.disabled){
    background-color: var(--terra-amber);
    border-color: var(--terra-amber);
    color: var(--terra-bark);
}
.btn-warning:hover{
    background-color: var(--terra-clay);
    border-color: var(--terra-clay);
    color: #fff;
}

.btn-outline-primary{
    color: var(--terra-clay);
    border-color: var(--terra-clay);
    background: transparent;
}
.btn-outline-primary:hover{
    background-color: var(--terra-clay);
    border-color: var(--terra-clay);
    color: #fff;
}
.btn-outline-secondary{
    color: var(--terra-bark);
    border-color: var(--terra-line);
    background: transparent;
}
.btn-outline-secondary:hover{
    background-color: var(--terra-bark);
    border-color: var(--terra-bark);
    color: #fff;
}
.btn-link{
    color: var(--terra-clay);
    font-weight: 600;
}
.btn-link:hover{ color: var(--terra-clay-2); text-decoration: none; }

/* ---------- forms ---------- */
.form-control,
input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], input[type="password"], input[type="search"],
input[type="date"], input[type="url"],
textarea, select{
    font-family: var(--font-body);
    background-color: var(--terra-paper);
    border: 1.5px solid var(--terra-line);
    border-radius: var(--radius-sm);
    color: var(--terra-bark);
    padding: 12px 16px;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.form-control:focus,
input:focus, textarea:focus, select:focus{
    border-color: var(--terra-clay);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(194,65,12,.12);
    outline: 0;
}
.form-control::placeholder,
input::placeholder, textarea::placeholder{
    color: var(--terra-stone);
    opacity: .75;
}

label{
    color: var(--terra-bark);
    font-weight: 600;
    font-size: 14px;
}

.input-group-text{
    background: var(--terra-sand);
    border: 1.5px solid var(--terra-line);
    color: var(--terra-stone);
    border-radius: var(--radius-sm);
}

/* ---------- cards ---------- */
.card{
    border: 1px solid var(--terra-line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover{
    box-shadow: var(--shadow-md);
}
.card.shadow-sm{ box-shadow: var(--shadow-sm) !important; }
.card.shadow,
.card.shadow-lg{ box-shadow: var(--shadow-md) !important; }

.card-header{
    background: var(--terra-paper);
    border-bottom: 1px solid var(--terra-line);
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--terra-bark);
}
.card-footer{
    background: var(--terra-paper);
    border-top: 1px solid var(--terra-line);
}
.rounded, .rounded-md{ border-radius: var(--radius-md) !important; }
.rounded-lg{          border-radius: var(--radius-lg) !important; }
.rounded-xl{          border-radius: var(--radius-xl) !important; }
.rounded-xs{          border-radius: var(--radius-sm) !important; }
.rounded-pill{        border-radius: 999px !important; }

.shadow-sm{ box-shadow: var(--shadow-sm) !important; }
.shadow,
.shadow-lg{ box-shadow: var(--shadow-md) !important; }

/* ---------- alerts ---------- */
.alert{
    border-radius: var(--radius-sm);
    border: 0;
    padding: 14px 18px;
    font-weight: 500;
}
.alert-success{ background: rgba(45,74,31,.10);  color: var(--terra-deep); }
.alert-info   { background: rgba(92,124,61,.10); color: var(--terra-olive); }
.alert-warning{ background: rgba(230,162,60,.18); color: #8A5A12; }
.alert-danger { background: rgba(179,58,26,.10); color: #B33A1A; }

/* ---------- badges ---------- */
.badge{
    border-radius: 999px;
    font-weight: 600;
    padding: 6px 12px;
    letter-spacing: .04em;
}
.badge-primary{ background: var(--terra-clay); color: #fff; }
.badge-success{ background: var(--terra-deep); color: #fff; }
.badge-info{    background: var(--terra-olive); color: #fff; }
.badge-warning{ background: var(--terra-amber); color: var(--terra-bark); }

/* ---------- tables ---------- */
.table{ color: var(--terra-bark); }
.table thead th{
    background: var(--terra-sand);
    color: var(--terra-bark);
    border-color: var(--terra-line);
    font-family: var(--font-display);
    font-weight: 600;
}
.table td, .table th{ border-color: var(--terra-line); }

/* ---------- pagination ---------- */
.pagination{ gap: 6px; }
.page-link{
    color: var(--terra-bark);
    border: 1.5px solid var(--terra-line);
    border-radius: 999px !important;
    margin: 0;
    padding: 9px 16px;
    background: #fff;
    font-weight: 600;
    transition: all .25s var(--ease);
}
.page-link:hover{
    color: #fff;
    background: var(--terra-clay);
    border-color: var(--terra-clay);
}
.page-item.active .page-link{
    background: var(--terra-clay);
    border-color: var(--terra-clay);
    color: #fff;
}

/* ---------- breadcrumbs ---------- */
.breadcrumb{
    background: transparent;
    padding: 0;
    font-size: 14px;
}
.breadcrumb-item + .breadcrumb-item::before{ color: var(--terra-stone); }
.breadcrumb-item.active{ color: var(--terra-clay); }

/* ---------- dropdowns ---------- */
.dropdown-menu{
    border: 1px solid var(--terra-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 10px;
    background: #fff;
}
.dropdown-item{
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: var(--terra-bark);
    font-weight: 500;
}
.dropdown-item:hover, .dropdown-item:focus{
    background: var(--terra-sand);
    color: var(--terra-clay);
}
.dropdown-item.active, .dropdown-item:active{
    background: var(--terra-clay);
    color: #fff;
}

/* ---------- modal ---------- */
.modal-content{
    border: 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.modal-header{
    background: var(--terra-cream);
    border-bottom: 1px solid var(--terra-line);
    font-family: var(--font-display);
}
.modal-footer{
    border-top: 1px solid var(--terra-line);
    background: var(--terra-paper);
}

/* ---------- progress ---------- */
.progress{
    background: var(--terra-line);
    border-radius: 999px;
    height: 8px;
}
.progress-bar{ background: var(--terra-clay); }

/* ---------- selection ---------- */
::selection{
    background: var(--terra-amber);
    color: var(--terra-bark);
}

/* ---------- scrollbar (webkit) ---------- */
::-webkit-scrollbar{ width: 12px; height: 12px; }
::-webkit-scrollbar-track{ background: var(--terra-cream); }
::-webkit-scrollbar-thumb{
    background: var(--terra-line);
    border-radius: 999px;
    border: 3px solid var(--terra-cream);
}
::-webkit-scrollbar-thumb:hover{ background: var(--terra-clay); }

/* =========================================================
   GLOBAL HEADER (NAVBAR)
   ========================================================= */
.st-header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1040;
    transition: background-color .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease), backdrop-filter .35s var(--ease);
    padding: 14px 0;
}
.st-header--top{
    background: linear-gradient(180deg, rgba(43,31,20,.45) 0%, rgba(43,31,20,.0) 100%);
}
.st-header--top .st-nav__link,
.st-header--top .st-brand,
.st-header--top .st-tools__phone,
.st-header--top .st-lang__current,
.st-header--top .st-burger{
    color: #fff;
}
.st-header--scrolled{
    background: rgba(255, 252, 246, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 6px 24px -8px rgba(43,31,20,.16);
    padding: 10px 0;
}
.st-header--scrolled .st-nav__link,
.st-header--scrolled .st-brand,
.st-header--scrolled .st-tools__phone,
.st-header--scrolled .st-lang__current,
.st-header--scrolled .st-burger{
    color: var(--terra-bark);
}
/* Pages without hero (non-anasayfa) get solid bg from start */
body:not(.has-hero) .st-header{
    background: rgba(255, 252, 246, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 6px 24px -8px rgba(43,31,20,.10);
    padding: 10px 0;
}
body:not(.has-hero) .st-header .st-nav__link,
body:not(.has-hero) .st-header .st-brand,
body:not(.has-hero) .st-header .st-tools__phone,
body:not(.has-hero) .st-header .st-lang__current,
body:not(.has-hero) .st-header .st-burger{
    color: var(--terra-bark);
}

.st-header__inner{
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
@media (max-width: 991px){
    .st-header__inner{ padding: 0 18px; min-height: 50px; gap: 12px; }
    .st-header{ padding: 10px 0; }
    .st-header--scrolled,
    body:not(.has-hero) .st-header{ padding: 8px 0; }
}

/* brand */
.st-brand{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -0.02em;
    line-height: 1;
    transition: color .25s var(--ease);
    text-decoration: none;
}
.st-brand:hover{ text-decoration: none; }
.st-brand img{ height: 46px; width: auto; display: block; }
.st-brand .it{ font-style: italic; color: var(--terra-clay); font-weight: 600; }

/* nav */
.st-nav{
    display: flex;
    align-items: center;
    gap: 6px;
}
.st-nav__item{
    position: relative;
}
.st-nav__link{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: color .25s var(--ease);
    text-decoration: none;
    position: relative;
}
.st-nav__link::after{
    content: "";
    position: absolute;
    left: 16px; right: 16px; bottom: 6px;
    height: 2px;
    background: var(--terra-clay);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .35s var(--ease);
}
.st-nav__link:hover,
.st-nav__link.active{ color: var(--terra-clay) !important; text-decoration: none; }
.st-nav__link:hover::after,
.st-nav__link.active::after{ transform: scaleX(1); }
.st-nav__caret{
    width: 12px; height: 12px;
    transition: transform .3s var(--ease);
}
.st-nav__item:hover .st-nav__caret{ transform: rotate(180deg); }

/* dropdown submenu */
.st-submenu{
    position: absolute;
    top: 100%; left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid var(--terra-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 12px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
    z-index: 100;
}
.st-nav__item:hover .st-submenu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}
.st-submenu a{
    display: block;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--terra-bark);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background .2s var(--ease), color .2s var(--ease);
}
.st-submenu a:hover{
    background: var(--terra-sand);
    color: var(--terra-clay);
}

/* tools (lang + phone) */
.st-tools{
    display: flex;
    align-items: center;
    gap: 12px;
}
.st-lang{ position: relative; }
.st-lang__btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1.5px solid currentColor;
    background: transparent;
    color: inherit;
    font: 600 13px/1 var(--font-body);
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s var(--ease), color .25s var(--ease);
}
.st-header--scrolled .st-lang__btn,
body:not(.has-hero) .st-lang__btn{ border-color: var(--terra-line); }
.st-lang__btn:hover{
    background: var(--terra-clay);
    color: #fff !important;
    border-color: var(--terra-clay);
}
.st-lang__btn img{ width: 18px; height: 12px; object-fit: cover; border-radius: 2px; }
.st-lang__menu{
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 170px;
    background: #fff;
    border: 1px solid var(--terra-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 8px;
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
    z-index: 100;
}
.st-lang.is-open .st-lang__menu,
.st-lang:hover .st-lang__menu{
    opacity: 1; visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}
.st-lang__menu a{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: var(--terra-bark) !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}
.st-lang__menu a:hover{
    background: var(--terra-sand);
    color: var(--terra-clay) !important;
}
.st-lang__menu img{ width: 22px; height: 16px; object-fit: cover; border-radius: 3px; }

.st-tools__phone{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--terra-clay);
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 8px 22px -8px rgba(194,65,12,.5);
    transition: background .25s var(--ease), transform .25s var(--ease);
}
.st-tools__phone:hover{
    background: var(--terra-clay-2);
    color: #fff !important;
    transform: translateY(-1px);
    text-decoration: none;
}
.st-tools__phone svg{ width: 16px; height: 16px; }

/* mobile burger — animated 3-bar that becomes X */
.st-burger{
    display: none;
    width: 46px; height: 46px;
    border-radius: 14px;
    border: 1.5px solid rgba(255,255,255,.6);
    background: rgba(255,255,255,.08);
    color: inherit;
    align-items: center; justify-content: center;
    cursor: pointer;
    padding: 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}
.st-burger:hover, .st-burger:focus{ outline: none; transform: translateY(-1px); }
.st-burger:active{ transform: scale(.95); }
/* Inner spans should never intercept clicks/touches — let the button get them */
.st-burger *{ pointer-events: none; }
.st-burger{
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    z-index: 2;
    position: relative;
}

.st-header--scrolled .st-burger,
body:not(.has-hero) .st-burger{
    border-color: var(--terra-line);
    background: var(--terra-cream);
}
.st-burger__bars{
    position: relative;
    width: 22px; height: 16px;
    display: inline-block;
}
.st-burger__bars span{
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform .35s var(--ease), top .25s var(--ease) .15s, opacity .15s var(--ease) .15s, width .25s var(--ease);
}
.st-burger__bars span:nth-child(1){ top: 0; }
.st-burger__bars span:nth-child(2){ top: 7px; width: 70%; }
.st-burger__bars span:nth-child(3){ top: 14px; }
.st-burger:hover .st-burger__bars span:nth-child(2){ width: 100%; }

.st-burger.is-active{
    background: var(--terra-clay);
    border-color: var(--terra-clay);
    color: #fff !important;
}
.st-burger.is-active .st-burger__bars span{
    transition: top .25s var(--ease), opacity .15s var(--ease), transform .35s var(--ease) .25s, width .25s var(--ease);
}
.st-burger.is-active .st-burger__bars span:nth-child(1){ top: 7px; transform: rotate(45deg); width: 100%; }
.st-burger.is-active .st-burger__bars span:nth-child(2){ opacity: 0; }
.st-burger.is-active .st-burger__bars span:nth-child(3){ top: 7px; transform: rotate(-45deg); width: 100%; }

.st-drawer{
    position: fixed;
    top: 0; right: 0;
    width: min(380px, 92vw);
    height: 100vh;
    height: 100dvh;
    background: var(--terra-paper) !important;
    box-shadow: -20px 0 50px rgba(43,31,20,.2);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    z-index: 99999 !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 28px 24px 40px;
    visibility: visible !important;
    display: block !important;
}
.st-drawer.is-open{ transform: translateX(0) !important; }
.st-overlay{ z-index: 99990 !important; }
.st-drawer__close{
    background: transparent;
    border: 0;
    font-size: 30px;
    line-height: 1;
    color: var(--terra-bark);
    cursor: pointer;
    margin-left: auto;
    display: block;
    width: 44px; height: 44px;
    border-radius: 999px;
    border: 1.5px solid var(--terra-line);
    transition: background .25s var(--ease);
}
.st-drawer__close:hover{ background: var(--terra-sand); }
.st-drawer__nav{ margin-top: 24px; display: flex; flex-direction: column; gap: 4px; }
.st-drawer__link{
    display: block;
    padding: 14px 16px;
    color: var(--terra-bark);
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background .2s var(--ease), color .2s var(--ease);
    border-bottom: 1px solid var(--terra-line);
}
.st-drawer__link:hover{ background: var(--terra-sand); color: var(--terra-clay); }
.st-drawer__link--toggle{
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.st-drawer__caret{
    transition: transform .3s var(--ease);
    color: var(--terra-stone);
}
.st-drawer__link--toggle.is-open .st-drawer__caret{ transform: rotate(180deg); color: var(--terra-clay); }
.st-drawer__sub{
    padding-left: 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
    border-bottom: 1px solid var(--terra-line);
    margin-bottom: 4px;
}
.st-drawer__sub.is-open{ max-height: 600px; padding-top: 6px; padding-bottom: 6px; }
.st-drawer__sub a{
    padding: 10px 14px;
    color: var(--terra-stone);
    font-weight: 500;
    font-size: 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
}
.st-drawer__sub a:hover{ background: var(--terra-sand); color: var(--terra-clay); }
.st-drawer__lang{
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--terra-line);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.st-drawer__lang a{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--terra-cream);
    color: var(--terra-bark);
    font-size: 13px;
    text-decoration: none;
    border: 1px solid var(--terra-line);
}
.st-drawer__lang a:hover{ background: var(--terra-clay); color: #fff; border-color: var(--terra-clay); }
.st-drawer__phone{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--terra-clay);
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
}
.st-overlay{
    position: fixed;
    inset: 0;
    background: rgba(43,31,20,.45);
    backdrop-filter: blur(2px);
    z-index: 1045;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s var(--ease), visibility 0s linear .35s;
}
.st-overlay.is-open{
    opacity: 1; visibility: visible;
    transition-delay: 0s;
}

@media (max-width: 991px){
    .st-nav, .st-tools .st-lang, .st-tools__phone{ display: none !important; }
    .st-burger{ display: inline-flex !important; }
}

/* Page top spacer for non-hero pages so fixed header doesn't overlap */
body:not(.has-hero){ padding-top: 90px; }
@media (max-width: 991px){
    body:not(.has-hero){ padding-top: 80px; }
}

/* =========================================================
   GLOBAL FOOTER
   ========================================================= */
.st-footer{
    background: var(--terra-bark);
    color: var(--terra-cream);
    margin-top: 60px;
}
.st-footer a{ color: var(--terra-cream); text-decoration: none; transition: color .25s var(--ease); }
.st-footer a:hover{ color: var(--terra-amber); text-decoration: none; }

.st-footer__newsletter{
    background:
      radial-gradient(circle at 80% 30%, rgba(230,162,60,.18), transparent 50%),
      linear-gradient(135deg, var(--terra-deep) 0%, var(--terra-bark) 100%);
    padding: 60px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.st-footer__container{
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
}
.st-newsletter{
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}
.st-newsletter__title{
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 8px;
}
.st-newsletter__title .accent{ color: var(--terra-amber); font-style: italic; font-weight: 600; }
.st-newsletter__sub{
    color: rgba(255,255,255,.75);
    margin: 0;
    font-size: 15px;
}
.st-newsletter__form{
    display: flex;
    gap: 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    padding: 6px 6px 6px 22px;
    backdrop-filter: blur(4px);
}
.st-newsletter__form input{
    flex: 1;
    border: 0;
    background: transparent;
    color: #fff;
    font: 500 15px/1 var(--font-body);
    padding: 12px 6px;
    outline: 0;
}
.st-newsletter__form input::placeholder{ color: rgba(255,255,255,.55); }
.st-newsletter__form input:focus{ box-shadow: none; background: transparent; }
.st-newsletter__form button{
    background: var(--terra-clay);
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    padding: 12px 26px;
    font-size: 14px;
    letter-spacing: .04em;
    cursor: pointer;
    transition: background .25s var(--ease), transform .25s var(--ease);
}
.st-newsletter__form button:hover{
    background: var(--terra-clay-2);
    transform: translateY(-1px);
}

.st-footer__main{
    padding: 80px 0 50px;
    position: relative;
}
.st-footer__main::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 90% 0%, rgba(92,124,61,.15), transparent 50%),
        radial-gradient(circle at 5% 100%, rgba(230,162,60,.07), transparent 55%);
    pointer-events: none;
}
.st-footer__grid{
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 50px;
    position: relative;
}
.st-footer__col h4{
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 22px;
    position: relative;
    padding-bottom: 14px;
}
.st-footer__col h4::after{
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 36px; height: 2px;
    background: var(--terra-amber);
    border-radius: 2px;
}
.st-footer__brand{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    text-decoration: none;
}
.st-footer__brand .it{ color: var(--terra-amber); font-style: italic; font-weight: 600; }
.st-footer__brand img{ height: 50px; width: auto; }
.st-footer__about{
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 22px;
}
.st-footer__social{
    display: flex;
    gap: 10px;
}
.st-footer__social a{
    width: 42px; height: 42px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
    color: #fff;
}
.st-footer__social a:hover{
    background: var(--terra-clay);
    border-color: var(--terra-clay);
    transform: translateY(-2px);
    color: #fff;
}
.st-footer__social svg{ width: 16px; height: 16px; }

.st-footer__links{
    list-style: none;
    margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 11px;
}
.st-footer__links a{
    color: rgba(255,255,255,.78);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color .25s var(--ease), gap .25s var(--ease);
}
.st-footer__links a::before{
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--terra-amber);
    opacity: .65;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.st-footer__links a:hover{
    color: var(--terra-amber);
    gap: 14px;
}
.st-footer__links a:hover::before{ opacity: 1; transform: scale(1.3); }

.st-footer__contacts{
    list-style: none;
    margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 18px;
}
.st-footer__contact{
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.st-footer__contact-icon{
    width: 40px; height: 40px;
    border-radius: 12px;
    background: rgba(230,162,60,.15);
    color: var(--terra-amber);
    flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
}
.st-footer__contact-icon svg{ width: 18px; height: 18px; }
.st-footer__contact-text{ font-size: 14px; }
.st-footer__contact-text small{
    display: block;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: rgba(255,255,255,.5);
    font-size: 11px;
    margin-bottom: 4px;
}
.st-footer__contact-text a,
.st-footer__contact-text span{
    color: rgba(255,255,255,.92);
    font-weight: 500;
    line-height: 1.5;
}
.st-footer__contact-text a:hover{ color: var(--terra-amber); }

.st-footer__bottom{
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 24px 0;
    background: rgba(0,0,0,.18);
    position: relative;
}
.st-footer__bottom-grid{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}
.st-footer__copy{
    font-size: 13px;
    color: rgba(255,255,255,.55);
}
.st-footer__copy strong{ color: rgba(255,255,255,.85); font-weight: 600; }
.st-footer__pay{
    display: flex;
    align-items: center;
    gap: 14px;
}
.st-footer__pay img{
    height: 28px;
    width: auto;
    filter: grayscale(.3) brightness(1.1);
    opacity: .8;
    transition: opacity .25s var(--ease), filter .25s var(--ease);
}
.st-footer__pay img:hover{ opacity: 1; filter: grayscale(0) brightness(1); }

/* =========================================================
   FOOTER RESPONSIVE
   ========================================================= */
@media (max-width: 991px){
    .st-newsletter{ grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .st-footer__grid{ grid-template-columns: 1fr 1fr; gap: 40px; }
    .st-footer__col--brand{ grid-column: 1 / -1; }
}
@media (max-width: 600px){
    .st-newsletter__form{
        flex-direction: column;
        border-radius: 22px;
        padding: 12px;
        gap: 8px;
    }
    .st-newsletter__form input{ padding: 10px 14px; text-align: center; }
    .st-newsletter__form button{ width: 100%; padding: 14px; }
    .st-footer__grid{ grid-template-columns: 1fr; gap: 36px; }
    .st-footer__bottom-grid{ flex-direction: column; text-align: center; }
}

/* =========================================================
   Hide legacy theme.css elements that conflict
   ========================================================= */
/* Hide the old huge header markup completely so only our new st-header shows. */
header#header,
header#header.u-header,
.u-header.u-header--abs-top-xl,
.u-header__topbar,
.u-header__hide-content,
.u-header__navbar,
.u-header__sub-menu,
#navBar,
.navbar-toggler{ display: none !important; }
/* Also hide any old top-right-logo / topbar logo blocks just in case */
.top-right-logo,
.mobile-logo,
.language-switcher:not(.st-lang){ display: none !important; }

/* Helper: animation on scroll reveal (used optionally) */
@keyframes stFadeUp{
    from{ opacity: 0; transform: translateY(24px); }
    to  { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   TOUR CARD — "Boarding Pass / Postcard" stili
   ========================================================= */
.tur-card{
    background: var(--terra-paper);
    border-radius: 22px;
    box-shadow: 0 6px 18px -6px rgba(43,31,20,.10);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
    color: var(--terra-bark);
    margin-bottom: 28px;
    position: relative;
    overflow: visible;
}
.tur-card::before{
    /* soft outer glow */
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 23px;
    background: linear-gradient(135deg, rgba(194,65,12,.0), rgba(230,162,60,.0));
    opacity: 0;
    transition: opacity .4s var(--ease);
    pointer-events: none;
    z-index: -1;
}
.tur-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -20px rgba(43,31,20,.30);
}
.tur-card:hover::before{
    opacity: 1;
    background: linear-gradient(135deg, rgba(194,65,12,.18), rgba(230,162,60,.18));
}
.tur-card a{ color: inherit; text-decoration: none; }
.tur-card a:hover{ text-decoration: none; color: inherit; }

/* TOP HALF — image with stamp & kicker */
.tur-card__top{
    position: relative;
    aspect-ratio: 16/11;
    overflow: hidden;
    border-radius: 22px 22px 0 0;
    background: var(--terra-sand);
}
.tur-card__top-link{ display: block; height: 100%; }
.tur-card__top img{
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease), filter .5s var(--ease);
}
.tur-card:hover .tur-card__top img{ transform: scale(1.08); filter: saturate(1.1); }

/* "Postage stamp" rotated price */
.tur-card__stamp{
    position: absolute;
    top: 16px; right: 16px;
    background: var(--terra-paper);
    border: 2px dashed var(--terra-clay);
    padding: 10px 16px;
    border-radius: 12px;
    transform: rotate(6deg);
    box-shadow: 0 8px 20px -6px rgba(43,31,20,.30);
    text-align: center;
    z-index: 3;
    transition: transform .4s var(--ease);
}
.tur-card:hover .tur-card__stamp{ transform: rotate(-3deg) scale(1.05); }
.tur-card__stamp-from{
    display: block;
    font-family: var(--font-hand);
    color: var(--terra-stone);
    font-size: 14px;
    line-height: 1;
    margin-bottom: 2px;
}
.tur-card__stamp-num{
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--terra-clay);
    font-size: 19px;
    letter-spacing: -.01em;
    line-height: 1;
}

/* Hand-written kicker on top-left */
.tur-card__kicker{
    position: absolute;
    top: 14px; left: 14px;
    font-family: var(--font-hand);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    text-shadow: 0 2px 6px rgba(0,0,0,.45);
    transform: rotate(-3deg);
    z-index: 3;
}

/* Location pill at bottom-left of image */
.tur-card__loc{
    position: absolute;
    left: 14px; bottom: 14px;
    background: rgba(43,31,20,.82);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}
.tur-card__loc i{ color: var(--terra-amber); }

/* PERFORATED divider — boarding pass vibe */
.tur-card__perf{
    position: relative;
    height: 24px;
    background: var(--terra-paper);
}
.tur-card__perf::before,
.tur-card__perf::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--terra-cream);
    box-shadow: inset 0 2px 4px rgba(43,31,20,.12);
}
.tur-card__perf::before{ left: -12px; }
.tur-card__perf::after{ right: -12px; }
.tur-card__perf-line{
    position: absolute;
    left: 18px; right: 18px;
    top: 50%;
    border-top: 2px dashed var(--terra-line);
    transform: translateY(-50%);
}

/* BOTTOM HALF — content */
.tur-card__body{
    padding: 6px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    background: var(--terra-paper);
    border-radius: 0 0 22px 22px;
}

.tur-card__title{
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 21px;
    line-height: 1.25;
    color: var(--terra-bark);
    margin: 0;
    letter-spacing: -.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 53px;
}
.tur-card__title a{ color: var(--terra-bark); transition: color .25s var(--ease); }
.tur-card__title a:hover{ color: var(--terra-clay); }

.tur-card__title-rule{
    width: 36px; height: 3px;
    background: linear-gradient(90deg, var(--terra-clay), var(--terra-amber));
    border-radius: 2px;
    margin-top: -8px;
}

/* Inline feature chips — 3 in a row */
.tur-card__features{
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin: 2px 0;
}
.tur-feat{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--terra-cream);
    border: 1px solid var(--terra-line);
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 12px;
    color: var(--terra-stone);
    font-weight: 500;
    transition: all .25s var(--ease);
}
.tur-feat i{
    color: var(--terra-clay);
    font-size: 11px;
}
.tur-feat--on{
    background: rgba(45,74,31,.08);
    border-color: rgba(45,74,31,.2);
    color: var(--terra-deep);
}
.tur-feat--on i{ color: var(--terra-deep); }
.tur-feat--off{ opacity: .6; text-decoration: line-through; text-decoration-thickness: 1px; }

.tur-card:hover .tur-feat--on{
    background: var(--terra-deep);
    color: #fff;
    border-color: var(--terra-deep);
}
.tur-card:hover .tur-feat--on i{ color: var(--terra-amber); }

/* "Boarding pass pull tab" CTA — split into two parts */
.tur-card__cta{
    display: flex;
    align-items: stretch;
    margin-top: auto;
    border-radius: 14px;
    overflow: hidden;
    background: var(--terra-bark);
    color: #fff !important;
    transition: transform .3s var(--ease), background .3s var(--ease);
    font-weight: 600;
    text-decoration: none !important;
}
.tur-card__cta:hover{
    background: var(--terra-clay);
    color: #fff !important;
    transform: translateY(-1px);
}
.tur-card__cta-text{
    flex: 1;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    letter-spacing: .04em;
}
.tur-card__cta-arrow{
    width: 56px;
    background: rgba(255,255,255,.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .3s var(--ease), transform .3s var(--ease);
}
.tur-card:hover .tur-card__cta-arrow{
    background: rgba(0,0,0,.20);
    transform: translateX(2px);
}
.tur-card__cta-arrow svg{
    width: 18px; height: 18px;
    transition: transform .3s var(--ease);
}
.tur-card:hover .tur-card__cta-arrow svg{ transform: translateX(4px); }

@media (max-width: 600px){
    .tur-card__title{ font-size: 19px; min-height: 48px; }
    .tur-card__stamp{ padding: 8px 13px; }
    .tur-card__stamp-num{ font-size: 17px; }
}
