/* === RESET & BASE === */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--c-primary:#1F6F5B;--c-primary-dark:#175a49;--c-primary-soft:#ecfdf5;--c-accent:#C9A96E;--c-accent-dark:#a8893f;--c-bg:#F5F5F0;--c-white:#fff;--c-dark:#111827;--c-text:#334155;--c-text-light:#64748b;--c-border:#dbe4e2;--c-green:#16a34a;--c-blue:#2A6FDB;--radius:12px;--shadow:0 4px 24px rgba(15,23,42,.08);--shadow-lg:0 16px 46px rgba(15,23,42,.14);--transition:all .3s cubic-bezier(.4,0,.2,1)}
html{scroll-behavior:auto}
body{font-family: 'Poppins', sans-serif;color:var(--c-text);background:var(--c-bg);line-height:1.6;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
.container{max-width:1200px;margin:0 auto;padding:0 20px}

/* === ANIMATIONS === */
[data-animate]{
opacity:0;
transform:translateY(20px);
transition:opacity .4s ease,transform .4s ease;
will-change:opacity,transform
}
[data-animate].is-visible{opacity:1;transform:translateY(0)}
@keyframes fadeIn{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:none}}
@keyframes pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.05)}}

.site-header,.nav,.btn,.tour-card__img img,.tour-card__cta,.dest-card__img img,.review-source__logo,.floating-btn,.btn-submit{transition:none!important}

/* === HEADER === */
.site-header{
position:sticky;
top:0;
z-index:999;
background:rgba(255,255,255,.92);
backdrop-filter:blur(18px);
border-bottom:1px solid rgba(15,23,42,.06);
box-shadow:0 10px 30px rgba(15,23,42,.05)
}
.site-header--overlay{
position:fixed;
top:0;
left:0;
right:0;
width:100%;
background:transparent;
backdrop-filter:none;
border-bottom-color:transparent;
box-shadow:none
}
.site-header--overlay .nav__links{
background:rgba(255,255,255,.08);
border-color:rgba(255,255,255,.12)
}
.site-header--overlay .nav a{
color:#f8fafc
}
.site-header--overlay .nav-toggle__icon span{
background:#fff
}
.site-header--overlay.is-solid{
background:rgba(255,255,255,.92);
backdrop-filter:blur(18px);
border-bottom-color:rgba(15,23,42,.06);
box-shadow:0 10px 30px rgba(15,23,42,.05)
}
.site-header--overlay.is-solid .nav__links{
background:rgba(248,250,252,.9);
border-color:rgba(15,23,42,.06)
}
.site-header--overlay.is-solid .nav a{
color:var(--c-text)
}
.site-header--overlay.is-solid .nav-toggle__icon span{
background:var(--c-dark)
}
.header-promo{
display:none;
background:linear-gradient(90deg,var(--c-primary-dark),var(--c-primary));
color:#fff
}
.header-promo__inner{
min-height:34px;
display:flex;
align-items:center;
justify-content:center;
gap:14px;
font-size:.86rem;
font-weight:700;
letter-spacing:.01em
}
.header-promo__inner a{
color:#fff;
text-decoration:underline;
text-underline-offset:3px;
font-weight:800;
white-space:nowrap
}
.site-header--overlay.is-solid .header-promo,
.site-header:not(.site-header--overlay) .header-promo{
display:block
}
.header__inner{display:flex;align-items:center;justify-content:space-between;gap:22px;min-height:96px}
.logo{display:flex;flex-direction:column;align-items:flex-start;justify-content:center;gap:2px;font-weight:800;font-size:1rem;color:var(--c-primary);min-width:0}
.logo__mark{width:auto;max-width:184px;height:auto;max-height:56px;object-fit:contain;object-position:left center;flex-shrink:0}
.logo__copy{display:flex;flex-direction:column;gap:0;min-width:0;padding-left:5px;margin-top:2px}
.logo__slogan{line-height:1;color:var(--c-text-light);font-size:.85rem;font-weight:500;font-style:italic;letter-spacing:0;white-space:nowrap}
.site-header--overlay .logo__slogan{
color:rgba(255,255,255,.9)
}
.site-header--overlay.is-solid .logo__slogan{
color:var(--c-text-light)
}
.site-header--overlay:not(.is-solid) .logo__mark{
 filter:brightness(1.3) drop-shadow(0 4px 24px rgba(255,255,255,.45)) drop-shadow(0 8px 18px rgba(2,6,23,.4))
}
.site-header--overlay:not(.is-solid) .logo__slogan{
text-shadow:0 10px 20px rgba(2,6,23,.3)
}
.nav{display:flex;align-items:center;gap:16px;margin-left:auto}
.nav__links{display:flex;align-items:center;gap:18px;padding:6px 8px;border-radius:999px;background:rgba(248,250,252,.9);border:1px solid rgba(15,23,42,.06)}
.nav a{font-size:.88rem;font-weight:600;color:var(--c-text);transition:color .2s;position:relative}
.nav a:hover{color:var(--c-primary)}
.nav a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:2px;background:var(--c-primary);transition:width .3s}
.nav a:hover::after{width:100%}
.nav__cta{
background:linear-gradient(135deg,var(--c-primary) 0%, var(--c-primary-dark) 100%)!important;
color:#fff!important;
padding:10px 18px;
border-radius:999px;
font-weight:700!important;
font-size:.86rem;
letter-spacing:.01em;
box-shadow:0 12px 24px rgba(37,99,235,.18)
}
.nav__cta::after{display:none!important}
.nav__cta:hover{background:linear-gradient(135deg,var(--c-primary) 0%, var(--c-primary-dark) 100%)!important}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;width:40px;height:40px;position:relative;border-radius:10px}
.nav-toggle__icon span{display:block;width:24px;height:2px;background:var(--c-dark);margin:5px auto;transition:var(--transition)}
.nav-toggle.is-active .nav-toggle__icon span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.nav-toggle.is-active .nav-toggle__icon span:nth-child(2){opacity:0}
.nav-toggle.is-active .nav-toggle__icon span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

/* === HERO === */
.hero{position:relative;min-height:92vh;display:flex;align-items:center;justify-content:center;overflow:hidden;isolation:isolate;background:#09162a}
.hero::before{content:'';position:absolute;inset:auto auto -18% 62%;width:min(30vw,420px);height:min(30vw,420px);border-radius:50%;background:radial-gradient(circle,rgba(201,169,110,.18) 0%,rgba(201,169,110,.06) 42%,rgba(201,169,110,0) 74%);z-index:1;pointer-events:none}
.hero__media{position:absolute;inset:0}
.hero__media::after{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(6,18,36,.72) 0%,rgba(6,18,36,.52) 28%,rgba(6,18,36,.28) 56%,rgba(6,18,36,.42) 100%);z-index:1}
.hero__slide{position:absolute;inset:0;background-size:cover;background-position:center center;opacity:1;transform:none}
.hero__overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(6,18,36,.22) 0%,rgba(6,18,36,.18) 46%,rgba(6,18,36,.48) 100%);z-index:2}
.hero__content{position:relative;z-index:3;max-width:min(1380px,calc(100vw - 56px));text-align:center;margin:0 auto;padding:0;color:#fff}
.hero__eyebrow{display:inline-flex;align-items:center;justify-content:center;color:rgba(255,255,255,.82);padding:0;border:none;border-radius:0;background:none;font-size:.92rem;font-weight:600;margin-bottom:18px;letter-spacing:0;text-transform:none}
.hero__title{display:grid;gap:5px;margin:0 auto 18px;color:#fff;text-shadow:0 16px 38px rgba(2,6,23,.25);max-width:min(72rem,100%)}
.hero__title span{display:block;font-weight:700;line-height:1.05;color:#f8fafc;letter-spacing:0;text-transform:none}
.hero__title-line--top{font-size:clamp(3rem,5vw,5.2rem)}
.hero__title-line--bottom{font-size:clamp(1.05rem,1.35vw,1.75rem);opacity:.95;max-width:100%}
.hero__title strong{display:block;font-family: 'Poppins', sans-serif;font-weight:700;line-height:1.08;letter-spacing:-.03em;color:#fff}
.hero__subtitle{font-size:1.14rem;color:rgba(255,255,255,.86);margin:0 auto 30px;line-height:1.75;max-width:38rem}
.hero__meta{display:flex;justify-content:center;gap:28px;flex-wrap:wrap;color:rgba(255,255,255,.88);font-size:.95rem;font-weight:600;margin-top:18px}
.hero__meta span{white-space:nowrap}
.hero__actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-bottom:22px}
.hero__actions .btn--primary{background:linear-gradient(135deg,var(--c-accent) 0%,var(--c-accent-dark) 100%);border-color:transparent;box-shadow:0 18px 42px rgba(196,122,25,.28)}
.hero__actions .btn--primary:hover{background:linear-gradient(135deg,#d49131 0%,var(--c-accent-dark) 100%);box-shadow:0 20px 46px rgba(196,122,25,.34)}
.hero__actions .btn--outline{background:rgba(255,255,255,.08);color:#fff;border-color:rgba(255,255,255,.22);backdrop-filter:blur(8px)}
.hero__actions .btn--outline:hover{background:rgba(255,255,255,.14);border-color:rgba(255,255,255,.34)}
.hero__meta{position:absolute;bottom:30px;left:0;right:0;display:flex;justify-content:center;gap:10px;flex-wrap:wrap;color:rgba(255,255,255,.78);font-size:.82rem;z-index:10;margin-top:0}
.hero__meta span{display:inline-flex;align-items:center;gap:10px}
.hero__meta span+span::before{content:'';width:4px;height:4px;border-radius:50%;background:rgba(255,255,255,.42)}
.btn{display:inline-flex;align-items:center;gap:8px;padding:12px 28px;border-radius:8px;font-weight:600;font-size:.95rem;transition:var(--transition);cursor:pointer;border:2px solid transparent}
.btn__icon{display:inline-flex;align-items:center;justify-content:center;line-height:0}
.btn__icon svg{width:1em;height:1em;display:block}
.btn--primary{background:var(--c-accent);color:#fff;border-color:var(--c-accent)}
.btn--primary:hover{background:#dc2626;box-shadow:0 8px 24px rgba(239,68,68,.3)}
.btn--outline{background:transparent;color:#fff;border-color:rgba(255,255,255,.5)}
.btn--outline:hover{background:rgba(255,255,255,.1);border-color:#fff}
.btn--lg{padding:12px 28px;font-size:.95rem}

/* === TRUST BAR === */
.trust-bar{background:#fbfaf7;border-bottom:1px solid rgba(15,23,42,.08);padding:22px 0}
.trust-bar__inner{display:grid;grid-template-columns:repeat(4,1fr);gap:0}
.trust-item{text-align:center;display:flex;flex-direction:column;gap:5px;padding:0 20px;position:relative}
.trust-item+.trust-item::before{content:'';position:absolute;left:0;top:8px;bottom:8px;width:1px;background:linear-gradient(180deg,transparent,rgba(15,23,42,.14),transparent)}
.trust-num{font-family: 'Poppins', sans-serif;font-size:1.62rem;font-weight:700;line-height:1;color:var(--c-accent)}
.trust-item span:last-child{font-size:.72rem;color:#64748b;text-transform:uppercase;letter-spacing:.14em}

/* === SECTION HEADERS === */
.section-eyebrow{color:var(--c-primary);font-weight:700;font-size:.74rem;text-transform:uppercase;letter-spacing:.18em;margin-bottom:10px}
.section-title{font-size:clamp(1.35rem,2.4vw,1.95rem);font-weight:800;color:var(--c-dark);margin-bottom:10px;letter-spacing:-.03em}
.section-subtitle{color:var(--c-text-light);font-size:.95rem;line-height:1.75;max-width:580px;margin:0 auto}
.section-subtitle--left{margin:0;max-width:none}
.section-header{text-align:center;margin-bottom:34px}
.section-more{text-align:center;margin-top:28px}
.section-more .btn--outline{color:var(--c-primary);border-color:var(--c-primary)}
.section-more .btn--outline:hover{background:var(--c-primary);color:#fff}

/* === HOME INTRO === */
.home-intro{padding:72px 0 74px;background:linear-gradient(180deg,#fbfaf7 0%,#fff 100%)}
.home-intro__inner{display:grid;grid-template-columns:minmax(0,.95fr) minmax(0,1fr);gap:72px;align-items:center}
.home-intro__copy{position:relative;padding-left:28px}
.home-intro__copy::before{content:'';position:absolute;left:0;top:5px;width:2px;height:100%;max-height:150px;background:linear-gradient(180deg,var(--c-accent),rgba(196,122,25,0))}
.home-intro__copy .section-eyebrow{color:var(--c-accent);font-size:.7rem;letter-spacing:.24em;margin-bottom:16px}
.home-intro__copy .section-title{max-width:560px;font-family: 'Poppins', sans-serif;font-size:2.28rem;font-weight:700;line-height:1.18;letter-spacing:-.01em;color:var(--c-dark)}
.home-intro__text{display:grid;gap:18px;padding-top:34px;border-top:1px solid rgba(15,23,42,.1)}
.home-intro__text p{font-size:1rem;line-height:1.95;color:#475569}
.home-intro__text p:first-child::first-letter{font-family: 'Poppins', sans-serif;font-size:2.8rem;line-height:.9;color:var(--c-accent);float:left;margin:9px 10px 0 0}

/* === DESTINATIONS === */
.destinations{padding:68px 0;background:linear-gradient(180deg,#fff 0%,#f7fbf8 48%,#f7faf9 100%)}
.destinations .section-header{position:relative;margin-bottom:42px}
.destinations .section-header::after{content:'';display:block;width:76px;height:1px;margin:22px auto 0;background:linear-gradient(90deg,transparent,var(--c-accent),transparent)}
.destinations .section-eyebrow{color:var(--c-accent);font-size:.7rem;letter-spacing:.26em;margin-bottom:14px}
.destinations .section-title{font-family: 'Poppins', sans-serif;font-size:2.45rem;font-weight:700;line-height:1.1;letter-spacing:-.01em;color:var(--c-dark)}
.destinations .section-subtitle{max-width:620px;font-size:.98rem;color:#64748b}
.dest-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:18px}
.dest-grid--featured{grid-template-columns:repeat(3,minmax(0,1fr))}
.dest-card{position:relative;border-radius:22px;overflow:hidden;background:var(--c-white);border:1px solid rgba(11,31,58,.1);display:flex;flex-direction:column;transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;box-shadow:0 4px 12px rgba(0,0,0,.08),0 8px 24px rgba(0,0,0,.08);background:linear-gradient(135deg,#ffffff 0%,#fafbfc 100%)}
.dest-card::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(255,255,255,.8),rgba(255,255,255,0));pointer-events:none;z-index:1;opacity:0;transition:opacity .4s ease}
.dest-card:hover::before{opacity:1}
.dest-card[data-animate]{--animate-x:-56px;--animate-y:0}
.dest-card:hover{box-shadow:0 12px 32px rgba(0,0,0,.12),0 20px 48px rgba(0,0,0,.12),0 0 0 1px rgba(11,31,58,.08);transform:translateY(-6px);border-color:rgba(11,31,58,.15);background:linear-gradient(135deg,#ffffff 0%,#f5f7fb 100%)}
.dest-card[hidden]{display:none}
.dest-card__img{height:220px;overflow:hidden;background:#e8eef5;position:relative;isolation:isolate}
.dest-card__img::before{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(11,31,58,.1) 0%,rgba(11,31,58,.25) 50%,rgba(11,31,58,.4) 100%);z-index:2;transition:opacity .4s ease;opacity:.7}
.dest-card:hover .dest-card__img::before{opacity:.5}
.dest-card__img::after{content:'';position:absolute;inset:0;background:radial-gradient(circle at 20% 20%,rgba(255,255,255,.2),transparent);opacity:0;transition:opacity .4s ease;z-index:1;pointer-events:none}
.dest-card:hover .dest-card__img::after{opacity:1}
.dest-card__img img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;position:relative;z-index:0}
.dest-card:hover .dest-card__img img{transform:scale(1.06)}
.dest-card__info{padding:22px 20px 18px;flex:1;display:flex;flex-direction:column;background:linear-gradient(180deg,#ffffff 0%,#fafbfc 100%);position:relative;z-index:2}
.dest-card__info h3{font-family:'Poppins',sans-serif;font-size:1.15rem;font-weight:800;color:var(--c-dark);margin-bottom:10px;letter-spacing:-.01em;line-height:1.35;transition:color .3s ease}
.dest-card:hover .dest-card__info h3{color:var(--c-primary)}
.dest-card__info p{font-size:.87rem;color:var(--c-text-light);line-height:1.7;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;flex:1;transition:color .3s ease}
.dest-card:hover .dest-card__info p{color:var(--c-text)}
.dest-slider{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(220px,280px);gap:18px;margin-top:20px;overflow-x:auto;overscroll-behavior-x:contain;scroll-snap-type:x mandatory;padding:4px 2px 16px}
.dest-slider .dest-card{scroll-snap-align:start}
.destinations-toggle{color:var(--c-primary);border-color:var(--c-primary);background:#fff}
.destinations-toggle:hover{background:var(--c-primary);color:#fff}

/* === TOUR CARDS === */
.tours{padding:68px 0;background:linear-gradient(180deg,#f7fbf8 0%,#fff 100%)}
.tours .section-header,.why-us .section-header,.collections-home .section-header,.reviews-section .section-header,.booking-form .section-header{position:relative;margin-bottom:42px}
.tours .section-header::after,.why-us .section-header::after,.collections-home .section-header::after,.reviews-section .section-header::after,.booking-form .section-header::after{content:'';display:block;width:76px;height:1px;margin:22px auto 0;background:linear-gradient(90deg,transparent,var(--c-accent),transparent)}
.tours .section-eyebrow,.why-us .section-eyebrow,.collections-home .section-eyebrow,.reviews-section .section-eyebrow,.booking-form .section-eyebrow{color:var(--c-accent);font-size:.7rem;letter-spacing:.26em;margin-bottom:14px}
.tours .section-title,.why-us .section-title,.collections-home .section-title,.reviews-section .section-title,.booking-form .section-title{font-family: 'Poppins', sans-serif;font-size:2.35rem;font-weight:700;line-height:1.1;letter-spacing:-.01em;color:var(--c-dark)}
.tours .section-subtitle,.why-us .section-subtitle,.collections-home .section-subtitle,.reviews-section .section-subtitle,.booking-form .section-subtitle{max-width:620px;font-size:.98rem;color:#64748b}
.tour-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:20px}
.tour-card{background:linear-gradient(135deg,#ffffff 0%,#fafbfc 100%);border-radius:18px;overflow:hidden;border:1px solid rgba(11,31,58,.1);box-shadow:0 4px 12px rgba(0,0,0,.08),0 8px 24px rgba(0,0,0,.08);display:flex;flex-direction:column;transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;position:relative}
.tour-card::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(255,255,255,.8),rgba(255,255,255,0));pointer-events:none;z-index:1;opacity:0;transition:opacity .4s ease}
.tour-card:hover::before{opacity:1}
.tour-card[hidden]{display:none}
.tour-card:hover{box-shadow:0 12px 32px rgba(0,0,0,.12),0 20px 48px rgba(0,0,0,.12),0 0 0 1px rgba(11,31,58,.08);transform:translateY(-6px);border-color:rgba(11,31,58,.15);background:linear-gradient(135deg,#ffffff 0%,#f5f7fb 100%)}
.tour-card__img{position:relative;height:220px;overflow:hidden;display:block;isolation:isolate}
.tour-card__img::before{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(11,31,58,.1) 0%,rgba(11,31,58,.25) 50%,rgba(11,31,58,.4) 100%);z-index:2;transition:opacity .4s ease;opacity:.7}
.tour-card:hover .tour-card__img::before{opacity:.5}
.tour-card__img::after{content:'';position:absolute;inset:0;background:radial-gradient(circle at 20% 20%,rgba(255,255,255,.2),transparent);opacity:0;transition:opacity .4s ease;z-index:1;pointer-events:none}
.tour-card:hover .tour-card__img::after{opacity:1}
.tour-card__img img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;position:relative;z-index:0}
.tour-card:hover .tour-card__img img{transform:scale(1.06)}
.tour-card__badge{position:absolute;top:14px;left:14px;background:linear-gradient(135deg,var(--c-accent) 0%,#d4a04a 100%);color:#fff;padding:6px 14px;border-radius:999px;font-size:.75rem;font-weight:800;text-transform:uppercase;z-index:3;box-shadow:0 4px 12px rgba(212,160,74,.3);letter-spacing:.05em}
.tour-card__body{padding:22px;display:flex;flex-direction:column;flex:1;background:linear-gradient(180deg,#ffffff 0%,#fafbfc 100%);position:relative;z-index:2}
.tour-card__meta{display:flex;gap:14px;font-size:.75rem;color:var(--c-text-light);margin-bottom:10px;font-weight:600;text-transform:uppercase;letter-spacing:.04em}
.tour-card__body h3{font-family:'Poppins',sans-serif;font-size:1.1rem;font-weight:800;margin-bottom:10px;line-height:1.35;letter-spacing:-.01em}
.tour-card__body h3 a{color:var(--c-dark);transition:color .3s ease}
.tour-card__body h3 a:hover{color:var(--c-primary)}
.tour-card__desc{font-size:.87rem;color:var(--c-text-light);margin-bottom:14px;line-height:1.7;flex:1;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;transition:color .3s ease}
.tour-card:hover .tour-card__desc{color:var(--c-text)}
.tour-card__footer{display:flex;justify-content:space-between;align-items:center;margin-top:auto;padding-top:14px;border-top:1px solid rgba(11,31,58,.06);gap:10px}
.tour-card__price{display:flex;align-items:baseline;gap:8px;flex-wrap:nowrap;min-width:0;white-space:nowrap}
.tour-card__price del{color:var(--c-text-light);font-size:.78rem;margin-right:0;font-weight:500;white-space:nowrap}
.tour-card__price strong{color:var(--c-accent);font-size:.94rem;font-weight:800;white-space:nowrap}
.tour-card__cta{flex:0 0 auto;background:linear-gradient(135deg,#111827 0%,#1f2937 100%);color:#fff;padding:10px 14px;border-radius:8px;font-size:.74rem;font-weight:800;transition:all .3s ease;white-space:nowrap;box-shadow:0 4px 12px rgba(17,24,39,.2);letter-spacing:.02em}
.tour-card__cta:hover{background:linear-gradient(135deg,var(--c-accent) 0%,#d4a04a 100%);transform:translateY(-2px);box-shadow:0 8px 20px rgba(212,160,74,.3)}

/* === WHY US === */
.why-us{padding:68px 0;background:linear-gradient(180deg,#fff 0%,#fbfaf7 100%)}
.why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:18px}
.why-card{background:linear-gradient(135deg,rgba(255,255,255,.95) 0%,rgba(250,251,252,.95) 100%);padding:28px 24px;border-radius:16px;text-align:left;border:1px solid rgba(11,31,58,.1);box-shadow:0 4px 12px rgba(0,0,0,.08),0 8px 24px rgba(0,0,0,.08);transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;position:relative}
.why-card::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(255,255,255,.8),rgba(255,255,255,0));pointer-events:none;z-index:1;opacity:0;transition:opacity .4s ease;border-radius:16px}
.why-card:hover{box-shadow:0 12px 32px rgba(0,0,0,.12),0 20px 48px rgba(0,0,0,.12);transform:translateY(-6px);border-color:rgba(11,31,58,.15);background:linear-gradient(135deg,#ffffff 0%,#f5f7fb 100%)}
.why-card:hover::before{opacity:1}
.why-card__icon{width:48px;height:48px;margin:0 0 14px;border-radius:12px;background:linear-gradient(135deg,#fff8ec 0%,#fffbf0 100%);color:var(--c-accent);border:1.5px solid rgba(212,160,74,.25);display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:800;letter-spacing:.08em;box-shadow:0 2px 8px rgba(212,160,74,.1);position:relative;z-index:2;transition:all .3s ease}
.why-card:hover .why-card__icon{transform:scale(1.1);box-shadow:0 4px 12px rgba(212,160,74,.2)}
.why-card h3{font-family:'Poppins',sans-serif;font-size:1.08rem;font-weight:800;color:var(--c-dark);margin-bottom:10px;letter-spacing:-.01em;transition:color .3s ease;position:relative;z-index:2}
.why-card:hover h3{color:var(--c-primary)}
.why-card p{font-size:.88rem;color:var(--c-text-light);line-height:1.7;position:relative;z-index:2;transition:color .3s ease}
.why-card:hover p{color:var(--c-text)}

/* === COLLECTIONS HOME === */
.collections-home{padding:68px 0;background:linear-gradient(180deg,#fbfaf7 0%,#fff 100%)}
.collections-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:18px}
.collection-card{padding:24px 22px;border-radius:16px;background:linear-gradient(135deg,#ffffff 0%,#fafbfc 100%);border:1px solid rgba(11,31,58,.1);box-shadow:0 4px 12px rgba(0,0,0,.08),0 8px 24px rgba(0,0,0,.08);display:flex;flex-direction:column;gap:12px;transition:all .4s cubic-bezier(.34,.1,.68,.55);position:relative}
.collection-card::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(255,255,255,.8),rgba(255,255,255,0));pointer-events:none;z-index:1;opacity:0;transition:opacity .4s ease;border-radius:16px}
.collection-card:hover{box-shadow:0 12px 32px rgba(0,0,0,.12),0 20px 48px rgba(0,0,0,.12),0 0 0 1px rgba(11,31,58,.08);transform:translateY(-6px);border-color:rgba(11,31,58,.15);background:linear-gradient(135deg,#ffffff 0%,#f5f7fb 100%)}
.collection-card:hover::before{opacity:1}
.collection-card__pill{display:inline-flex;align-items:center;width:max-content;padding:8px 14px;border-radius:999px;background:linear-gradient(135deg,#fff8ec 0%,#fffbf0 100%);color:var(--c-accent);border:1.5px solid rgba(212,160,74,.25);font-size:.72rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;box-shadow:0 2px 8px rgba(212,160,74,.1);position:relative;z-index:2}
.collection-card h3{font-family:'Poppins',sans-serif;font-size:1.08rem;font-weight:800;color:var(--c-dark);line-height:1.4;letter-spacing:-.01em;transition:color .3s ease;position:relative;z-index:2}
.collection-card:hover h3{color:var(--c-primary)}
.collection-card p{font-size:.88rem;line-height:1.7;color:var(--c-text-light);flex:1;transition:color .3s ease;position:relative;z-index:2}
.collection-card:hover p{color:var(--c-text)}
.collection-card a{font-size:.87rem;font-weight:800;color:var(--c-accent);transition:all .3s ease;display:inline-flex;align-items:center;gap:6px;position:relative;z-index:2}
.collection-card a::after{content:'→';transition:transform .3s ease}
.collection-card:hover a::after{transform:translateX(3px)}

/* === DEAL SECTION === */
.deal-section{padding:86px 0;background:linear-gradient(180deg,#111827 0%,#0f172a 100%)}
.deal-section__inner{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:28px;align-items:stretch}
.deal-section__copy .section-eyebrow{color:#d6b36a}
.deal-section__copy .section-title{font-family: 'Poppins', sans-serif;font-size:2.35rem;font-weight:700;line-height:1.12;letter-spacing:-.01em;color:#fff}
.deal-section__copy .section-subtitle{color:rgba(255,255,255,.75)}
.deal-section__panel{padding:28px;border-radius:8px;background:linear-gradient(180deg,rgba(255,255,255,.08) 0%,rgba(255,255,255,.035) 100%);border:1px solid rgba(214,179,106,.2);box-shadow:0 18px 48px rgba(0,0,0,.22)}
.deal-points{list-style:none;display:grid;gap:12px;margin-bottom:22px}
.deal-points li{padding:14px 16px;border-radius:8px;background:rgba(255,255,255,.07);color:#f8fafc;font-size:.94rem;line-height:1.6;border:1px solid rgba(214,179,106,.14)}
.deal-section__btn{color:#fff;border-color:rgba(255,255,255,.45)}
.deal-section__btn:hover{background:#d6b36a;color:#111827;border-color:#d6b36a}

/* === REVIEWS === */
.reviews-section{padding:68px 0;background:linear-gradient(180deg,#fff 0%,#fbfaf7 100%)}
.review-source{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:24px 28px;margin-bottom:28px;border:1px solid rgba(183,121,31,.16);border-radius:8px;background:#fff;box-shadow:0 12px 34px rgba(15,23,42,.05)}
.review-source__brand{display:flex;align-items:center;gap:20px;min-width:0}
.review-source__logo{display:flex;align-items:center;justify-content:center;flex-shrink:0;width:220px;min-height:64px;padding:12px 16px;background:#fbfaf7;border-radius:8px;border:1px solid rgba(183,121,31,.14)}
.review-source__logo:hover{box-shadow:none}
.review-source__logo img{max-width:100%;max-height:34px;object-fit:contain}
.review-source__copy{display:flex;flex-direction:column;gap:6px}
.review-source__label{font-size:.75rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--c-accent)}
.review-source__copy p{font-size:.95rem;color:var(--c-text-light);max-width:520px}
.review-source__rating{display:flex;align-items:center;gap:16px;padding:16px 18px;border-radius:8px;background:#fbfaf7;border:1px solid rgba(183,121,31,.14)}
.review-source__score{font-family: 'Poppins', sans-serif;font-size:2.4rem;font-weight:700;line-height:1;color:var(--c-accent)}
.review-source__details{display:flex;flex-direction:column;gap:4px}
.review-source__stars,.review-card__stars,.customer-story__stars{display:flex;align-items:center;gap:2px}
.reviews-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:24px}
.review-card{background:linear-gradient(135deg,#ffffff 0%,#fafbfc 100%);padding:28px;border-radius:16px;border:1px solid rgba(11,31,58,.1);box-shadow:0 4px 12px rgba(0,0,0,.08),0 8px 24px rgba(0,0,0,.08);transition:all .4s cubic-bezier(.34,.1,.68,.55);position:relative}
.review-card::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(255,255,255,.8),rgba(255,255,255,0));pointer-events:none;z-index:1;opacity:0;transition:opacity .4s ease;border-radius:16px}
.review-card:hover{box-shadow:0 12px 32px rgba(0,0,0,.12),0 20px 48px rgba(0,0,0,.12);transform:translateY(-6px);border-color:rgba(11,31,58,.15);background:linear-gradient(135deg,#ffffff 0%,#f5f7fb 100%)}
.review-card:hover::before{opacity:1}
.review-card__head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:16px;position:relative;z-index:2}
.review-card__provider{font-size:.72rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:var(--c-accent);background:linear-gradient(135deg,#fff8ec 0%,#fffbf0 100%);padding:6px 10px;border-radius:6px;border:1px solid rgba(212,160,74,.2)}
.review-card__title{font-family:'Poppins',sans-serif;font-size:1.08rem;font-weight:800;color:var(--c-dark);margin-bottom:12px;line-height:1.35;letter-spacing:-.01em;transition:color .3s ease;position:relative;z-index:2}
.review-card:hover .review-card__title{color:var(--c-primary)}
.review-card__text{font-size:.95rem;color:var(--c-text);line-height:1.8;margin-bottom:20px;font-style:italic;position:relative;z-index:2;transition:color .3s ease}
.review-card:hover .review-card__text{color:var(--c-text-light)}
.review-card__author{display:flex;justify-content:space-between;align-items:center;position:relative;z-index:2}
.review-card__author strong{color:var(--c-dark);font-size:.9rem;font-weight:800}
.review-card__author span{color:var(--c-text-light);font-size:.8rem}

/* === CTA BANNER === */
.cta-banner{padding:68px 0;background:linear-gradient(180deg,#111827 0%,#0f172a 100%);color:#fff;text-align:center}
.cta-banner h2{font-family: 'Poppins', sans-serif;font-size:2.15rem;font-weight:700;letter-spacing:-.01em;margin-bottom:12px}
.cta-banner h2 span{color:#d6b36a}
.cta-banner p{opacity:.9;margin-bottom:24px;font-size:1.05rem}

/* === BOOKING FORM === */
/* === BOOKING FORM - PROFESSIONAL === */
.booking-form {
    padding: 100px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 50%, #efe8dc 100%);
    position: relative;
}
.booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(200, 169, 106, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(183, 121, 31, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.booking-form__container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.booking-form__header {
    text-align: center;
    margin-bottom: 48px;
}
.booking-form__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 14px;
    padding: 6px 16px;
    background: rgba(200, 169, 106, 0.12);
    border-radius: 999px;
}
.booking-form__title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--c-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.booking-form__subtitle {
    font-size: 1.05rem;
    color: var(--c-text-light);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}
.booking-form__panel {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 12px 28px rgba(183, 121, 31, 0.08),
        0 24px 48px rgba(183, 121, 31, 0.04);
    border: 1px solid rgba(200, 169, 106, 0.15);
    position: relative;
    overflow: hidden;
}
.booking-form__panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--c-accent), #c8a96a, var(--c-accent));
}
.booking-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 48px;
    row-gap: 10px;
    margin-bottom: 8px;
}
.booking-form__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.booking-form__col-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-dark);
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(200, 169, 106, 0.25);
    margin-bottom: 4px;
}
.booking-form__col-title svg {
    width: 22px;
    height: 22px;
    color: var(--c-accent);
    flex-shrink: 0;
}
.booking-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.booking-field--wide {
    grid-column: 1 / -1;
}
.booking-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.booking-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #6b5a3a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.booking-label__required {
    margin-left: 2px;
    color: #d72035;
    font-family: 'Poppins', sans-serif;
    font-size: .95rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
}
.booking-label svg {
    width: 14px;
    height: 14px;
    color: var(--c-accent);
    opacity: 0.7;
}
.booking-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e8e0d5;
    border-radius: 12px;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    color: var(--c-dark);
    background: #fdfcfa;
    transition: all 0.25s ease;
    box-sizing: border-box;
}
.booking-input:focus {
    outline: none;
    border-color: var(--c-accent);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.12);
}
.booking-input::placeholder {
    color: #b8a990;
}
.booking-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b89559' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}
.booking-textarea {
    resize: vertical;
    min-height: 118px;
}
.booking-counter {
    display: flex;
    align-items: center;
    background: #fdfcfa;
    border: 1.5px solid #e8e0d5;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
}
.booking-counter:focus-within {
    border-color: var(--c-accent);
    box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.12);
    background: #ffffff;
}
.booking-counter__btn {
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a7a60;
    font-size: 1.3rem;
    font-weight: 500;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.booking-counter__btn:hover {
    background: #d72035;
    color: #ffffff;
}
.booking-counter__btn:active {
    transform: scale(0.95);
}
.booking-counter__input {
    flex: 1;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-dark);
    font-family: 'Poppins', sans-serif;
    min-width: 0;
}
.booking-counter__input:focus {
    outline: none;
}
.booking-destinations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.booking-destination {
    position: relative;
    cursor: pointer;
}
.booking-destination input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.booking-destination span {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: #fdfcfa;
    border: 1.5px solid #e8e0d5;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b5a3a;
    transition: all 0.25s ease;
    user-select: none;
}
.booking-destination input:checked + span {
    background: linear-gradient(135deg, #d72035 0%, #e83344 100%);
    border-color: #d72035;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(215, 32, 53, 0.35);
}
.booking-destination:hover span {
    border-color: #d72035;
    color: #d72035;
    transform: translateY(-1px);
}
.booking-submit {
    width: 100%;
    padding: 18px 36px;
    background: linear-gradient(135deg, #d72035 0%, #e83344 50%, #d72035 100%);
    background-size: 200% 100%;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(215, 32, 53, 0.35);
    position: relative;
    overflow: hidden;
}
.booking-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}
.booking-submit:hover {
    background-position: 100% 0;
    box-shadow: 0 8px 28px rgba(215, 32, 53, 0.45);
    transform: translateY(-2px);
}
.booking-submit:hover::before {
    left: 100%;
}
.booking-submit:active {
    transform: translateY(0);
}
.booking-submit:disabled,
button[type="submit"]:disabled,
input[type="submit"]:disabled {
    opacity: 0.42;
    filter: grayscale(0.2);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.booking-submit svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.booking-form__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #a09080;
    text-align: center;
    margin-top: 16px;
}
.booking-form__note svg {
    width: 16px;
    height: 16px;
    color: var(--c-accent);
    flex-shrink: 0;
}
.inquiry-assurance {
    margin: 12px 0 14px;
    padding: 14px 16px;
    border: 1px solid rgba(15, 118, 110, .16);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(231, 244, 241, .72), rgba(255, 255, 255, .92));
    color: var(--c-text);
    font-size: .82rem;
    line-height: 1.58;
}
.inquiry-assurance p {
    margin: 0;
}
.inquiry-assurance p + p {
    margin-top: 6px;
}
.inquiry-assurance p:first-child {
    color: var(--c-dark);
    font-weight: 800;
}
.inquiry-assurance a {
    color: var(--c-primary);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.inquiry-assurance--booking {
    grid-column: 1 / -1;
    margin: 4px 0 10px;
}
.form-hp {
    position: absolute;
    left: -9999px;
}
.spam-challenge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 8px 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    user-select: none;
}
.spam-challenge span {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    color: #111827;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}
.spam-challenge a {
    color: var(--c-primary);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.spam-challenge input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    accent-color: #d72035;
    cursor: pointer;
}
.spam-challenge:focus-within {
    outline: none;
    box-shadow: none;
}
.booking-captcha {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    grid-column: 1 / -1;
    min-height: 34px;
    margin: 0;
}
.booking-captcha--desktop {
    justify-content: flex-start;
    margin-top: 28px;
}
.booking-captcha--mobile {
    display: none;
}
.booking-captcha .spam-challenge {
    margin: 0;
    min-width: 0;
}
.spam-challenge-mobile-submit {
    margin: 12px 0 14px!important;
}
@media(max-width:768px) {
    .booking-captcha--desktop {
        display: none;
    }
    .booking-captcha--mobile {
        display: flex;
    }
    .booking-captcha {
        justify-content: center;
    }
    .spam-challenge-mobile-submit {
        display: flex!important;
        justify-content: center!important;
        width: 100%!important;
    }
}
.booking-destinations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.booking-destination {
    position: relative;
    cursor: pointer;
}
.booking-destination input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.booking-destination span {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    transition: all 0.25s ease;
    user-select: none;
}
.booking-destination input:checked + span {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.booking-destination:hover span {
    border-color: #d72035;
    color: #d72035;
    transform: translateY(-1px);
}

/* === PLAN PAGE === */
.plan-hero{
position:relative;
min-height:560px;
display:flex;
align-items:flex-end;
padding:128px 0 110px;
background:
linear-gradient(90deg,rgba(17,24,39,.78) 0%,rgba(17,24,39,.42) 48%,rgba(17,24,39,.16) 100%),
linear-gradient(180deg,rgba(17,24,39,.18) 0%,rgba(17,24,39,.72) 100%),
url('https://images.unsplash.com/photo-1560113781-cb0bddd6772b?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&ixlib=rb-4.1.0&q=60&w=3000') center/cover;
color:#fff;
text-align:left
}
.plan-hero__inner{width:100%}
.plan-hero__content{max-width:680px;padding-left:28px;border-left:2px solid #d6b36a}
.plan-hero .section-eyebrow{color:#d6b36a;margin-bottom:16px}
.plan-hero h1{font-family: 'Poppins', sans-serif;font-size:3.65rem;font-weight:700;line-height:1.02;letter-spacing:-.01em;margin-bottom:18px}
.plan-hero p{font-size:1.02rem;line-height:1.85;color:rgba(255,255,255,.84);max-width:560px;margin:0}
.plan-page{padding:64px 0 86px;background:linear-gradient(180deg,#fbfaf7 0%,#fff 100%)}
.plan-layout{display:grid;grid-template-columns:minmax(240px,.34fr) minmax(0,1fr);gap:36px;align-items:start;transform:none}
.plan-aside{position:sticky;top:92px;padding:24px 24px 26px;border:1px solid rgba(183,121,31,.18);border-radius:8px;background:rgba(255,255,255,.92);box-shadow:0 18px 48px rgba(15,23,42,.08)}
.plan-aside span{display:block;font-family: 'Poppins', sans-serif;font-size:2.2rem;line-height:1;color:var(--c-accent);margin-bottom:18px}
.plan-aside h2{font-family: 'Poppins', sans-serif;font-size:1.72rem;font-weight:700;letter-spacing:-.01em;line-height:1.18;color:var(--c-dark);margin-bottom:12px}
.plan-aside p{font-size:.9rem;line-height:1.8;color:#64748b;margin-bottom:18px}
.plan-aside__note{display:grid;gap:4px;padding:14px 16px;border:1px solid rgba(183,121,31,.18);border-radius:8px;background:#fbfaf7}
.plan-aside__note strong{font-size:.86rem;color:#111827}
.plan-aside__note small{font-size:.8rem;color:#64748b}
.plan-form{display:grid;gap:18px}
.plan-block{border:1px solid rgba(183,121,31,.16);border-radius:8px;background:rgba(255,255,255,.96);padding:24px;box-shadow:0 18px 48px rgba(15,23,42,.07)}
.plan-block legend{display:block;float:left;width:100%;padding:0;margin:0 0 8px;font-family: 'Poppins', sans-serif;font-size:1.32rem;font-weight:700;color:var(--c-dark)}
.plan-block legend span{display:block}
.plan-block legend+*{clear:both}
.plan-block>p{font-size:.86rem;color:#64748b;margin:0 0 16px}
.plan-choice-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.plan-choice-grid--destinations{grid-template-columns:repeat(4,1fr)}
.plan-choice{position:relative;display:flex;align-items:center;min-height:44px;padding:0}
.plan-choice input{position:absolute;opacity:0;pointer-events:none}
.plan-choice span{width:100%;height:100%;display:flex;align-items:center;justify-content:center;text-align:center;padding:10px 12px;border:1px solid rgba(15,23,42,.1);border-radius:999px;background:#fbfaf7;color:#334155;font-size:.84rem;font-weight:650;cursor:pointer;transition:background .2s,border-color .2s,color .2s,box-shadow .2s}
.plan-choice input:checked+span{background:#111827;border-color:#111827;color:#fff;box-shadow:0 10px 24px rgba(17,24,39,.14)}
.plan-fields{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.plan-fields label{display:flex;flex-direction:column;gap:7px}
.plan-fields label.is-wide{grid-column:1/-1}
.plan-fields span{font-size:.78rem;font-weight:700;color:#111827;text-transform:uppercase;letter-spacing:.08em}
.plan-fields input,.plan-fields select,.plan-fields textarea{width:100%;padding:12px 14px;border:1px solid rgba(15,23,42,.12);border-radius:8px;background:#fbfaf7;color:#111827;font:inherit;font-size:.92rem}
.plan-fields input:focus,.plan-fields select:focus,.plan-fields textarea:focus{outline:none;border-color:var(--c-accent);box-shadow:0 0 0 3px rgba(196,122,25,.12)}
.plan-submit{background:#111827}

/* === FLOATING CONTACT === */
.floating-contact{position:fixed;bottom:max(16px,calc(env(safe-area-inset-bottom, 0px) + 12px));right:max(16px,env(safe-area-inset-right, 0px));z-index:998;display:flex;flex-direction:column;gap:12px}
.floating-btn{width:52px;height:52px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;box-shadow:0 4px 16px rgba(0,0,0,.2);transition:var(--transition)}
.floating-btn:hover{transform:none}
.floating-btn svg{width:24px;height:24px}
.floating-btn--whatsapp{background:#25d366}
.floating-btn--email{background:var(--c-primary)}

/* === FOOTER === */
.footer{
background:
radial-gradient(circle at top left, rgba(37,99,235,.14), transparent 34%),
linear-gradient(180deg, #111a2f 0%, #0f172a 100%);
color:rgba(255,255,255,.82);
padding-top:72px
}
.footer__inner{display:grid;grid-template-columns:1.55fr .9fr .95fr 1.1fr;gap:40px;padding-bottom:44px}
.footer__brand-card{
padding:28px;
border-radius:22px;
background:linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
border:1px solid rgba(255,255,255,.08);
box-shadow:0 18px 44px rgba(0,0,0,.18)
}
.footer__brand strong{color:#fff;font-size:1.34rem;display:block;margin-bottom:8px}
.footer__brand-title{display:flex!important;align-items:center;gap:12px}
.footer__brand-logo{width:88px;height:88px;object-fit:contain;flex-shrink:0}
.footer__brand-tagline{font-size:1rem;line-height:1.65;color:#f8fafc;margin:14px 0 10px}
.footer__brand p{font-size:.9rem;line-height:1.7}
.footer__operated{font-size:.9rem;opacity:.68}
.footer__brand-badges{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.footer__brand-badges span{
display:inline-flex;
align-items:center;
padding:8px 12px;
border-radius:999px;
background:rgba(37,99,235,.16);
border:1px solid rgba(96,165,250,.18);
font-size:.76rem;
font-weight:600;
letter-spacing:.03em;
color:#dbeafe
}
.footer__brand-cta{
display:inline-flex;
align-items:center;
justify-content:center;
margin-top:22px;
padding:12px 18px;
border-radius:12px;
background:#2563eb;
color:#fff;
font-size:.9rem;
font-weight:700;
text-decoration:none
}
.footer__brand-cta:hover{background:#1d4ed8}
.footer h4{
color:#fff;
font-size:.95rem;
font-weight:800;
margin-bottom:18px;
text-transform:uppercase;
letter-spacing:.12em
}
.footer__links,
.footer__destinations,
.footer__contact{padding-top:8px}
.footer__links a,.footer__destinations a{display:block;font-size:.92rem;padding:7px 0;transition:color .2s;opacity:.92}
.footer__links a:hover,.footer__destinations a:hover{color:#60a5fa}
.footer__contact-list{display:flex;flex-direction:column;gap:12px}
.footer__contact-item{
display:flex;
flex-direction:column;
gap:4px;
padding:14px 16px;
border-radius:16px;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.06);
text-decoration:none
}
.footer__contact-item:hover{border-color:rgba(96,165,250,.35);background:rgba(255,255,255,.06)}
.footer__contact-label{
font-size:.72rem;
font-weight:700;
letter-spacing:.12em;
text-transform:uppercase;
color:#93c5fd
}
.footer__contact-item strong{font-size:.96rem;color:#fff;line-height:1.45}
.footer__bottom{
border-top:1px solid rgba(255,255,255,.08);
padding:22px 0 26px;
text-align:center;
font-size:.84rem;
color:rgba(255,255,255,.54)
}

/* === TOUR DETAIL === */
.tour-hero,.dest-hero{position:relative;min-height:50vh;display:flex;align-items:flex-end;padding-bottom:48px}
.tour-hero__bg,.dest-hero__bg{position:absolute;inset:0;background-size:cover;background-position:center}
.tour-hero__overlay,.dest-hero__overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(15,23,42,.85) 0%,rgba(15,23,42,.55) 45%,rgba(15,23,42,.1) 100%)}
.tour-hero__content,.dest-hero__content{position:relative;z-index:2;color:#fff;text-shadow:0 4px 16px rgba(0,0,0,.6),0 1px 3px rgba(0,0,0,.8)}
.tour-hero__content .tour-card__badge { position: relative; top: auto; left: auto; display: inline-block; margin-bottom: 12px; text-shadow: none; box-shadow: 0 4px 12px rgba(0,0,0,.3); }
.tour-hero__content h1,.dest-hero__content h1{font-size:clamp(1.5rem,4vw,2.5rem);font-weight:800;margin:12px 0;line-height:1.25}
.tour-hero__actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:18px}
.tour-video-button{display:inline-flex;align-items:center;gap:10px;padding:12px 18px;border-radius:999px;background:#d72035;color:#fff;text-decoration:none;font-weight:800;font-size:.9rem;line-height:1;box-shadow:0 16px 34px rgba(215,32,53,.28);text-shadow:none;transition:transform .2s ease,box-shadow .2s ease,background .2s ease}
.tour-video-button:hover{background:#b91527;color:#fff;transform:translateY(-2px);box-shadow:0 20px 42px rgba(215,32,53,.34)}
.tour-video-button__icon{display:inline-flex;align-items:center;justify-content:center;width:24px;height:24px;border-radius:999px;background:#fff;flex:0 0 auto}
.tour-video-button__icon::before{content:'';display:block;margin-left:2px;border-top:6px solid transparent;border-bottom:6px solid transparent;border-left:9px solid #d72035}
.tour-video-button--tiktok{background:#111827;box-shadow:0 16px 34px rgba(17,24,39,.28)}
.tour-video-button--tiktok:hover{background:#020617;box-shadow:0 20px 42px rgba(17,24,39,.34)}
.tour-video-button--tiktok .tour-video-button__icon::before{border-left-color:#111827}
.tour-video-button--facebook{background:#1877f2;box-shadow:0 16px 34px rgba(24,119,242,.28)}
.tour-video-button--facebook:hover{background:#0f5ed7;box-shadow:0 20px 42px rgba(24,119,242,.34)}
.tour-video-button--facebook .tour-video-button__icon::before{border-left-color:#1877f2}
.tour-video-button--instagram{background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);box-shadow:0 16px 34px rgba(193,53,132,.28)}
.tour-video-button--instagram:hover{background:linear-gradient(135deg,#6f2fa0,#df1717,#e69a34);box-shadow:0 20px 42px rgba(193,53,132,.34)}
.tour-video-button--instagram .tour-video-button__icon::before{border-left-color:#c13584}
.tour-video-button--vimeo{background:#1ab7ea;box-shadow:0 16px 34px rgba(26,183,234,.28)}
.tour-video-button--vimeo:hover{background:#0d99c8;box-shadow:0 20px 42px rgba(26,183,234,.34)}
.tour-video-button--vimeo .tour-video-button__icon::before{border-left-color:#1ab7ea}
.tour-video-button--tripadvisor{background:#00aa6c;box-shadow:0 16px 34px rgba(0,170,108,.28)}
.tour-video-button--tripadvisor:hover{background:#008f5b;box-shadow:0 20px 42px rgba(0,170,108,.34)}
.tour-video-button--tripadvisor .tour-video-button__icon::before{border-left-color:#00aa6c}
.tour-detail-section,.dest-detail{padding:60px 0}
.tour-layout,.dest-detail__inner{display:grid;grid-template-columns:1fr 380px;gap:48px}
.tour-main h2,.dest-main h2{font-size:1.3rem;font-weight:700;color:var(--c-dark);margin:32px 0 16px;padding-bottom:8px;border-bottom:2px solid var(--c-border)}
.tour-facts{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-bottom:32px}
.tour-facts>div{background:var(--c-bg);padding:16px;border-radius:var(--radius);text-align:center}
.tour-facts span{display:block;font-size:.75rem;color:var(--c-text-light);text-transform:uppercase;letter-spacing:1px}
.tour-facts strong{display:block;margin-top:6px;font-size:.9rem;color:var(--c-dark)}
.tour-route{background:var(--c-bg);padding:16px;border-radius:8px;border-left:4px solid var(--c-primary);color:var(--c-text);font-size:.9rem}
.tour-highlights{list-style:none;display:flex;flex-direction:column;gap:8px}
.tour-highlights li{padding:8px 12px;background:var(--c-bg);border-radius:8px;font-size:.9rem}
.tour-itinerary{display:flex;flex-direction:column;gap:12px}
.itinerary-item{background:var(--c-bg);border:1px solid transparent;border-radius:8px;overflow:hidden}
.itinerary-item.is-active{background:#fff;border-color:rgba(15,118,110,.18);box-shadow:var(--shadow)}
.itinerary-summary{width:100%;display:flex;align-items:center;gap:16px;padding:12px 16px;border:0;background:transparent;color:inherit;text-align:left;font:inherit;cursor:pointer}
.itinerary-num{width:32px;height:32px;border-radius:50%;background:var(--c-primary);color:#fff;display:flex;align-items:center;justify-content:center;font-size:.8rem;font-weight:700;flex-shrink:0}
.itinerary-summary__copy{display:grid;gap:3px;min-width:0;flex:1}
.itinerary-summary__copy strong{font-size:.94rem;font-weight:750;color:var(--c-dark);line-height:1.45}
.itinerary-summary__copy small{font-size:.78rem;color:var(--c-text-light);line-height:1.45}
.itinerary-summary__chevron{width:28px;height:28px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#e7f4f1;color:var(--c-primary);font-size:1rem;font-weight:800;flex-shrink:0}
.itinerary-item.is-active .itinerary-summary__chevron{background:var(--c-primary);color:#fff}
.itinerary-detail{padding:0 16px 16px 64px}
.itinerary-detail p{font-size:.9rem;line-height:1.75;color:var(--c-text);margin-bottom:12px}
.itinerary-detail__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.itinerary-detail__group{padding:12px;border-radius:8px;background:#f8fafc;border:1px solid var(--c-border)}
.itinerary-detail__group h3{font-size:.76rem;text-transform:uppercase;letter-spacing:.08em;color:var(--c-primary);margin-bottom:8px}
.itinerary-detail__group ul{display:grid;gap:6px;list-style:none}
.itinerary-detail__group li{position:relative;padding-left:14px;font-size:.84rem;line-height:1.55;color:var(--c-text)}
.itinerary-detail__group li::before{content:'';position:absolute;left:0;top:.7em;width:5px;height:5px;border-radius:50%;background:var(--c-accent)}
.itinerary-detail__empty{color:var(--c-text-light)!important;font-style:italic}
.itinerary-day-gallery{margin-top:14px;border:1px solid var(--c-border);border-radius:10px;background:#fff;padding:12px}
.itinerary-day-gallery__head{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;margin-bottom:10px}
.itinerary-day-gallery__head>div{min-width:0}
.itinerary-day-gallery__head span{display:block;font-size:.72rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--c-primary)}
.itinerary-day-gallery__head strong{display:block;font-size:.94rem;line-height:1.25;color:var(--c-dark)}
.itinerary-day-gallery__controls{display:flex;align-items:center;gap:8px}
.itinerary-day-gallery__arrow{width:34px;height:34px;border:1px solid rgba(15,118,110,.22);border-radius:999px;background:#e7f4f1;color:var(--c-primary);font:inherit;font-size:1.3rem;font-weight:800;line-height:1;cursor:pointer;box-shadow:0 8px 18px rgba(15,118,110,.08)}
.itinerary-day-gallery__arrow:hover{background:var(--c-primary);color:#fff}
.itinerary-day-gallery__count{display:grid;grid-template-columns:22px 7px 22px;place-items:center;align-items:center;justify-content:center;column-gap:0;min-width:74px;height:38px;padding:0 11px;border:1px solid rgba(16,42,67,.1);border-radius:999px;background:#fff;color:var(--c-text-light);font-family:Arial,sans-serif;font-size:13px;font-weight:800;line-height:38px;letter-spacing:0;white-space:nowrap;font-variant-numeric:tabular-nums;box-shadow:0 8px 18px rgba(11,31,58,.06)}
.itinerary-day-gallery__count b{display:block;width:22px;height:38px;color:var(--c-primary);font-family:Arial,sans-serif;font-size:13px;font-weight:900;line-height:38px;text-align:right;font-variant-numeric:tabular-nums}
.itinerary-day-gallery__count em{display:block;width:7px;height:38px;color:rgba(16,42,67,.34);font-family:Arial,sans-serif;font-size:13px;font-style:normal;font-weight:800;line-height:38px;text-align:center}
.itinerary-day-gallery__grid{display:flex;grid-template-columns:none;gap:10px;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;scrollbar-width:none}
.itinerary-day-gallery__grid::-webkit-scrollbar{display:none}
.itinerary-day-photo{position:relative;overflow:hidden;border:0;border-radius:8px;background:#eef2f7;aspect-ratio:4/3;padding:0;text-align:left;cursor:pointer;font:inherit}
.itinerary-day-photo{flex:0 0 calc((100% - 20px) / 3);scroll-snap-align:start}
.itinerary-day-photo::after{content:'View on map';position:absolute;right:9px;top:9px;padding:5px 8px;border-radius:999px;background:rgba(255,255,255,.92);color:var(--c-primary);font-size:.62rem;font-weight:900;text-transform:uppercase;letter-spacing:.04em;opacity:0;transform:translateY(-4px);transition:opacity .2s ease,transform .2s ease}
.itinerary-day-photo:hover::after,.itinerary-day-photo.is-active::after{opacity:1;transform:translateY(0)}
.itinerary-day-photo.is-active{outline:3px solid rgba(215,32,53,.35);outline-offset:2px}
.itinerary-day-photo img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease}
.itinerary-day-photo:hover img{transform:scale(1.035)}
.itinerary-day-photo figcaption{position:absolute;left:0;right:0;bottom:0;display:grid;gap:2px;padding:20px 10px 9px;background:linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.72));color:#fff;font-size:.78rem;line-height:1.35;font-weight:700}
.itinerary-day-photo figcaption strong{font-size:.78rem;line-height:1.35;color:#fff}
.itinerary-day-photo figcaption span{font-size:.68rem;line-height:1.25;color:rgba(255,255,255,.82);font-weight:800;text-transform:uppercase;letter-spacing:.04em}
.itinerary-map-card{margin-top:14px;border:1px solid var(--c-border);border-radius:10px;background:#fff;padding:12px}
.related-tours{display:flex;flex-direction:column;gap:12px}
.related-tour-card{display:flex;flex-direction:column;gap:10px;padding:18px;background:linear-gradient(135deg,#ffffff 0%,#f9fafb 100%);border-radius:14px;transition:all .3s ease;border:1.5px solid rgba(11,31,58,.08);box-shadow:0 4px 12px rgba(11,31,58,.06);text-decoration:none}
.related-tour-card::before{content:'';position:absolute;inset:0;border-radius:14px;background:linear-gradient(135deg,rgba(11,31,58,.02),transparent);opacity:0;transition:opacity .3s ease;pointer-events:none}
.related-tour-card:hover{border-color:var(--c-primary);box-shadow:0 12px 28px rgba(11,31,58,.12);transform:translateY(-3px);background:linear-gradient(135deg,#ffffff 0%,#f5f7fb 100%)}
.related-tour-card strong{font-size:.95rem;font-weight:800;color:var(--c-dark);line-height:1.35;transition:color .2s ease}
.related-tour-card:hover strong{color:var(--c-primary)}
.related-tour-card span{font-size:.8rem;opacity:.75;color:var(--c-text-light);transition:all .2s ease}
.related-tour-card:hover span{opacity:.9;color:var(--c-text)}

/* === TOUR SIDEBAR === */
.tour-sidebar,.dest-sidebar{position:sticky;top:80px}
.tour-price-card,.dest-cta-card{background:var(--c-white);padding:28px;border-radius:var(--radius);box-shadow:var(--shadow-lg);border:1px solid var(--c-border)}
.tour-map-card{position:relative;background:var(--c-white);padding:18px;border-radius:var(--radius);box-shadow:var(--shadow-lg);border:1px solid var(--c-border);margin-bottom:18px;overflow:hidden}
.tour-map-card__head{display:grid;gap:3px;margin-bottom:12px}
.tour-map-card__head span{font-size:.72rem;font-weight:800;text-transform:uppercase;letter-spacing:.12em;color:var(--c-primary)}
.tour-map-card__head strong{font-size:.98rem;color:var(--c-dark);line-height:1.4}
.tour-map-card__title-row{display:flex;align-items:center;justify-content:space-between;gap:10px}
.tour-map-card__full{border:1px solid rgba(15,118,110,.2);border-radius:999px;background:#e7f4f1;color:var(--c-primary);padding:6px 10px;font:inherit;font-size:.72rem;font-weight:800;cursor:pointer;white-space:nowrap}
.tour-map-card__full.is-active{background:var(--c-primary);color:#fff}
.tour-map-card__canvas{height:260px;border-radius:10px;background:#e5edf0;overflow:hidden;border:1px solid var(--c-border);z-index:1}
.tour-map-card__empty{position:absolute;left:18px;right:18px;top:84px;height:260px;border-radius:10px;background:linear-gradient(135deg,#edf7f4,#f8fafc);border:1px dashed rgba(15,118,110,.35);display:flex;align-items:center;justify-content:center;text-align:center;padding:20px;color:var(--c-text-light);font-size:.86rem;line-height:1.6;z-index:2}
.tour-map-card__empty[hidden]{display:none}
.tour-map-card__points{display:grid;gap:7px;margin-top:12px;padding-left:20px;color:var(--c-text);font-size:.83rem;line-height:1.45}
.tour-map-card .leaflet-container{font-family: 'Poppins', sans-serif}
.route-map-card{position:relative}
.route-map-card__head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:10px}
.route-map-card__head span{display:block;margin-bottom:3px;font-size:.72rem;font-weight:800;text-transform:uppercase;letter-spacing:.12em;color:var(--c-primary)}
.route-map-card__head strong{display:block;font-size:.92rem;color:var(--c-dark);line-height:1.35}
.route-map-card__actions{display:flex;align-items:center;justify-content:flex-end;gap:8px;flex-wrap:wrap}
.route-map-card__zoom,.route-map-card__photos{border:1px solid rgba(15,118,110,.22);border-radius:999px;background:#e7f4f1;color:var(--c-primary);padding:7px 11px;font:inherit;font-size:.74rem;font-weight:800;cursor:pointer;white-space:nowrap}
.route-map-card__photos{background:#fff;color:var(--c-dark);border-color:rgba(11,31,58,.16)}
.route-map-card__zoom:hover,.route-map-card__photos:hover,.route-map-card__photos[aria-pressed="true"]{background:var(--c-primary);color:#fff;border-color:var(--c-primary)}
.route-map-card__canvas{height:260px;border-radius:12px;background:#e5edf0;overflow:hidden;border:1px solid var(--c-border);box-shadow:inset 0 0 0 1px rgba(255,255,255,.45)}
.route-point-marker{background:transparent!important;border:0!important}
.route-point-marker span{position:relative;display:grid;place-items:center;width:38px;height:38px;border:3px solid #fff;border-radius:999px;background:linear-gradient(135deg,#0f766e,#14b8a6);color:#fff;font-size:.72rem;font-weight:900;letter-spacing:0;box-shadow:0 14px 30px rgba(15,118,110,.28),0 0 0 1px rgba(15,118,110,.18)}
.route-point-marker span::after{content:'';position:absolute;left:50%;bottom:-8px;width:14px;height:14px;background:#0f766e;border-right:3px solid #fff;border-bottom:3px solid #fff;transform:translateX(-50%) rotate(45deg);z-index:-1}
.route-photo-marker{background:transparent!important;border:0!important}
.route-photo-marker__frame{position:absolute;left:5px;top:0;display:block;width:72px;height:72px;border:4px solid #fff;border-radius:20px;background:#fff;box-shadow:0 18px 36px rgba(2,6,23,.32),0 0 0 1px rgba(15,118,110,.18);overflow:hidden;transform:rotate(-2deg);transition:transform .2s ease,box-shadow .2s ease}
.route-photo-marker:hover .route-photo-marker__frame{transform:rotate(0deg) translateY(-2px);box-shadow:0 24px 46px rgba(2,6,23,.38),0 0 0 1px rgba(15,118,110,.2)}
.route-photo-marker__frame img{width:100%;height:100%;object-fit:cover;display:block}
.route-photo-marker__shine{position:absolute;inset:0;background:linear-gradient(135deg,rgba(255,255,255,.48) 0%,rgba(255,255,255,0) 34%,rgba(255,255,255,0) 100%);pointer-events:none}
.route-photo-marker__pin{position:absolute;left:50%;bottom:5px;width:18px;height:18px;border:4px solid #fff;border-top:0;border-left:0;background:#0f766e;transform:translateX(-50%) rotate(45deg);box-shadow:8px 8px 18px rgba(2,6,23,.2);z-index:-1}
.route-photo-marker--approx .route-photo-marker__frame{box-shadow:0 18px 36px rgba(2,6,23,.3),0 0 0 2px rgba(215,32,53,.38)}
.route-photo-marker--approx .route-photo-marker__pin{background:#d72035}
.route-photo-popup{display:grid;gap:8px;min-width:190px;max-width:240px;padding:2px}
.route-photo-popup img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:10px;display:block}
.route-photo-popup strong{font-size:.9rem;line-height:1.32;color:var(--c-dark)}
.route-photo-popup span{font-size:.76rem;line-height:1.45;color:var(--c-text-light)}
.route-photo-popup-wrap .leaflet-popup-content-wrapper{border-radius:14px;box-shadow:0 18px 42px rgba(2,6,23,.22)}
.route-photo-popup-wrap .leaflet-popup-content{margin:10px}
@media(max-width:640px){
    .route-map-card__actions{gap:6px}
    .route-map-card__zoom,.route-map-card__photos{padding:7px 9px;font-size:.7rem}
    .route-map-card__canvas{height:250px;border-radius:10px}
    .route-point-marker span{width:34px;height:34px;font-size:.66rem}
    .route-photo-marker__frame{left:5px;width:52px;height:52px;border-width:3px;border-radius:15px;box-shadow:0 14px 28px rgba(2,6,23,.32),0 0 0 1px rgba(15,118,110,.16)}
    .route-photo-marker__pin{bottom:8px;width:15px;height:15px;border-width:3px}
    .route-photo-popup{min-width:170px;max-width:205px}
    .route-photo-popup strong{font-size:.84rem}
    .route-photo-popup span{font-size:.72rem}
}
.route-map-modal[hidden]{display:none}
.route-map-modal{position:fixed;inset:0;z-index:10080;display:flex;align-items:center;justify-content:center;padding:22px}
.tour-reviews-section{background:#fff;border-radius:18px;padding:28px;margin-top:24px;box-shadow:0 4px 16px rgba(0,0,0,.06);border:1px solid rgba(0,0,0,.05)}
.tour-reviews-section__header{text-align:center;margin-bottom:24px}
.tour-reviews-section__title{font-family:'Poppins',sans-serif;font-size:1.2rem;font-weight:700;color:var(--c-dark);margin-bottom:6px}
.tour-reviews-section__subtitle{font-size:.85rem;color:var(--c-text-light)}
.tour-reviews-section__list{display:flex;flex-direction:column;gap:16px;margin-bottom:20px}
.tour-review-card{background:linear-gradient(135deg,#fdfcfa 0%,#f8f7f4 100%);border:1px solid rgba(200,169,106,.15);border-radius:14px;padding:20px;position:relative}
.tour-review-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--c-accent),#c8a96a,var(--c-accent));border-radius:14px 14px 0 0}
.tour-review-card__stars{display:flex;gap:3px;margin-bottom:12px}
.tour-review-card__stars svg{color:#d4a843}
.tour-review-card__quote{font-size:.95rem;font-style:italic;color:var(--c-text);line-height:1.65;margin-bottom:12px}
.tour-review-card__author{display:flex;align-items:center;justify-content:flex-end;gap:8px;flex-wrap:wrap;font-size:.82rem;font-weight:600;color:var(--c-text-light);text-align:right}
.tour-review-card__author strong{color:var(--c-primary);font-weight:800}
.tour-review-card__author span{display:inline-flex;align-items:center;padding:3px 8px;border-radius:999px;background:#f3efe7;color:#7a6843;font-size:.72rem;font-weight:800;line-height:1.2}
.tour-reviews-section__actions{display:flex;gap:12px;flex-wrap:wrap}
.tour-reviews-section__btn{flex:1;min-width:160px;display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:12px 20px;background:var(--c-accent);color:#fff;border-radius:10px;font-size:.85rem;font-weight:600;text-decoration:none;transition:all .25s ease}
.tour-reviews-section__btn svg{width:16px;height:16px}
.tour-reviews-section__btn:hover{background:#c41a2d;transform:translateY(-1px);box-shadow:0 4px 12px rgba(215,32,53,.25)}
.tour-reviews-section__btn--secondary{background:transparent;color:var(--c-accent);border:1.5px solid var(--c-accent)}
.tour-reviews-section__btn--secondary:hover{background:var(--c-accent);color:#fff}
.tour-end-video{display:grid;grid-template-columns:minmax(240px,.72fr) minmax(360px,1.28fr);align-items:center;gap:42px;margin:32px 0;padding:42px 48px;border:1px solid rgba(185,21,39,.16);border-radius:8px;background:#fff;box-shadow:0 18px 38px rgba(11,31,58,.1);color:var(--c-dark)}
.tour-end-video__copy{max-width:340px;color:var(--c-dark)}
.tour-end-video__eyebrow{display:none}
.tour-end-video h2,.tour-main .tour-end-video h2{margin:0 0 14px!important;color:#b91527!important;font-family:'Poppins',Arial,sans-serif!important;font-size:clamp(1.35rem,2.05vw,1.78rem)!important;font-weight:900!important;line-height:1.18!important;letter-spacing:0!important;text-transform:uppercase!important}
.tour-end-video p,.tour-main .tour-end-video p{margin:0!important;color:#334155!important;font-family:'Poppins',Arial,sans-serif!important;font-size:.95rem!important;font-weight:600!important;line-height:1.65!important}
.tour-end-video__watch{display:inline-flex;align-items:center;justify-content:center;margin-top:18px;min-height:40px;padding:11px 16px;border-radius:8px;background:#d72035;color:#fff;text-decoration:none;font-family:'Poppins',Arial,sans-serif;font-size:.78rem;font-weight:900;line-height:1;text-transform:uppercase;box-shadow:0 12px 28px rgba(215,32,53,.24);transition:background .2s ease,transform .2s ease,box-shadow .2s ease}
.tour-end-video__watch:hover{background:#b91527;color:#fff;transform:translateY(-1px);box-shadow:0 16px 32px rgba(215,32,53,.3)}
.tour-end-video__frame{position:relative;width:100%;aspect-ratio:16/9;overflow:hidden;border-radius:6px;background:#07131f;box-shadow:0 16px 34px rgba(0,0,0,.24)}
.tour-end-video__frame iframe,.tour-end-video__frame video{position:absolute;inset:0;width:100%;height:100%;border:0;display:block;background:#07131f}
.tour-end-video__cover{position:absolute;inset:0;z-index:2;display:flex;align-items:center;justify-content:center;background-size:cover;background-position:center;color:#fff;text-decoration:none}
.tour-end-video__cover::before{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(8,22,43,.08),rgba(8,22,43,.52))}
.tour-end-video__cover-play{position:relative;z-index:1;width:72px;height:52px;border-radius:16px;background:#d72035;box-shadow:0 14px 28px rgba(0,0,0,.26)}
.tour-end-video__cover-play::before{content:'';position:absolute;left:29px;top:15px;border-top:11px solid transparent;border-bottom:11px solid transparent;border-left:17px solid #fff}
.tour-end-video__cover-text{position:absolute;right:16px;bottom:14px;z-index:1;padding:8px 12px;border-radius:999px;background:rgba(8,22,43,.72);color:#fff;font-family:'Poppins',Arial,sans-serif;font-size:.78rem;font-weight:800;line-height:1}
.tour-end-video__cover:hover .tour-end-video__cover-play{background:#b91527;transform:scale(1.03)}
.tour-end-booking{display:flex;align-items:center;justify-content:space-between;gap:18px;margin:28px 0;padding:24px;border:1px solid rgba(215,32,53,.18);border-radius:14px;background:#fff7f8;box-shadow:0 14px 34px rgba(11,31,58,.08)}
.tour-end-booking__eyebrow{display:block;margin-bottom:8px;color:var(--c-accent);font-size:.75rem;font-weight:900;letter-spacing:.12em;text-transform:uppercase}
.tour-end-booking h2{margin:0 0 8px;color:var(--c-primary);font-size:clamp(1.45rem,2.8vw,2.15rem);line-height:1.12}
.tour-end-booking p{margin:0;color:var(--c-text);font-weight:600;line-height:1.6}
.tour-booking-cta{position:fixed;left:0;right:0;bottom:0;z-index:10040;padding:10px 16px calc(10px + env(safe-area-inset-bottom));pointer-events:none}
.tour-booking-cta__inner{width:min(960px,calc(100vw - 32px));margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:16px;padding:12px 14px 12px 18px;border:1px solid rgba(255,255,255,.18);border-radius:12px;background:rgba(8,22,43,.94);box-shadow:0 18px 46px rgba(2,6,23,.28);backdrop-filter:blur(14px);pointer-events:auto}
.tour-booking-cta__copy{min-width:0;display:grid;gap:3px;color:#fff}
.tour-booking-cta__copy strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.92rem;line-height:1.2;color:#fff}
.tour-booking-cta__copy span{font-size:.76rem;line-height:1.25;color:rgba(255,255,255,.76)}
.tour-booking-cta__button{display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:11px 18px;border-radius:8px;background:var(--c-accent);color:#fff;text-decoration:none;font-size:.78rem;font-weight:900;line-height:1;text-transform:uppercase;letter-spacing:.02em;box-shadow:0 12px 26px rgba(215,32,53,.26);white-space:nowrap;transition:transform .2s ease,box-shadow .2s ease,background .2s ease}
.tour-booking-cta__button:hover{background:#b9182a;color:#fff;transform:translateY(-1px);box-shadow:0 16px 32px rgba(215,32,53,.34)}
#tour-booking-form{scroll-margin-top:calc(var(--site-header-current-height,120px) + 18px)}
body.page-tour{padding-bottom:84px}
.tour-price-card__book{display:flex;align-items:center;justify-content:center;width:100%;min-height:48px;margin-top:16px;padding:13px 18px;border:0;border-radius:8px;background:linear-gradient(135deg,#e73a4e 0%,#be1428 100%);box-shadow:0 16px 34px rgba(215,32,53,.22);color:#fff;font:inherit;font-size:.82rem;font-weight:900;line-height:1;text-transform:uppercase;letter-spacing:.06em;cursor:pointer}
.tour-price-card__book:hover{background:linear-gradient(135deg,#d82035 0%,#a90f20 100%)}
.tour-booking-modal{position:fixed;inset:0;z-index:10120;display:flex;align-items:center;justify-content:center;padding:24px;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .2s ease,visibility .2s ease}
.tour-booking-modal.is-open{opacity:1;visibility:visible;pointer-events:auto}
.tour-booking-modal__backdrop{position:absolute;inset:0;background:rgba(8,22,43,.66);backdrop-filter:blur(10px)}
.tour-booking-modal__panel{position:relative;display:grid;grid-template-columns:minmax(300px,.78fr) minmax(620px,1.22fr);width:min(1180px,calc(100vw - 32px));max-height:calc(100dvh - 32px);overflow:hidden;border:1px solid rgba(255,255,255,.2);border-radius:14px;background:#fff;box-shadow:0 34px 96px rgba(2,6,23,.38)}
.tour-booking-modal__close{position:absolute;top:14px;right:14px;z-index:2;width:38px;height:38px;border:1px solid rgba(15,23,42,.1);border-radius:999px;background:#fff;color:#0f172a;font-size:26px;line-height:1;cursor:pointer;box-shadow:0 10px 26px rgba(2,6,23,.12)}
.tour-booking-modal__summary{padding:32px;background:#10233f;color:#fff;overflow-y:auto}
.tour-booking-modal__eyebrow{display:block;margin-bottom:10px;color:#f2c166;font-size:.72rem;font-weight:900;letter-spacing:.14em;text-transform:uppercase}
.tour-booking-modal__summary h2{margin:0 0 10px;color:#fff;font-size:clamp(1.45rem,2.4vw,2.15rem);line-height:1.12}
.tour-booking-modal__summary p{margin:0;color:rgba(255,255,255,.78);font-weight:700;line-height:1.55}
.tour-booking-modal__price{margin:24px 0;padding:18px;border:1px solid rgba(242,193,102,.28);border-radius:8px;background:rgba(255,255,255,.08)}
.tour-booking-modal__price span,.tour-booking-modal__price small{display:block;color:rgba(255,255,255,.72);font-size:.78rem;line-height:1.45}
.tour-booking-modal__price strong{display:block;margin:3px 0;color:#fff;font-size:2rem;line-height:1}
.tour-booking-modal__tiers{display:grid;gap:8px;margin-bottom:22px}
.tour-booking-modal__tiers div{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:9px 10px;border-radius:8px;background:rgba(255,255,255,.1);font-size:.82rem}
.tour-booking-modal__tiers b{color:#f2c166;white-space:nowrap}
.tour-booking-modal__notes{display:grid;gap:10px;margin:0;padding:0;list-style:none;color:rgba(255,255,255,.84);font-size:.86rem;line-height:1.55}
.tour-booking-modal__notes li{position:relative;padding-left:18px}
.tour-booking-modal__notes li::before{content:'';position:absolute;left:0;top:.62em;width:7px;height:7px;border-radius:999px;background:#f2c166}
.tour-booking-modal__notes a{color:#fff;text-decoration:underline;text-underline-offset:3px}
.tour-booking-modal__form{display:flex;flex-direction:column;gap:14px;margin:0;padding:28px 32px;overflow-y:auto;background:#fbfaf7}
.tour-booking-modal__form-head{display:grid;gap:4px;padding-right:36px}
.tour-booking-modal__form-head span{color:var(--c-accent);font-size:.72rem;font-weight:900;letter-spacing:.12em;text-transform:uppercase}
.tour-booking-modal__form-head strong{color:var(--c-primary);font-family:'Libre Baskerville',Georgia,serif;font-size:1.65rem;line-height:1.18}
.tour-booking-modal__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:11px}
.tour-booking-modal__grid label{display:grid;gap:6px;min-width:0;color:#334155;font-size:.78rem;font-weight:800}
.tour-booking-modal__grid input,.tour-booking-modal__grid select,.tour-booking-modal__grid textarea{width:100%;min-width:0;box-sizing:border-box;border:1px solid rgba(15,23,42,.13);border-radius:8px;background:#fff;color:#111827;padding:10px 11px;font:inherit;font-size:.86rem;font-weight:500;line-height:1.35;box-shadow:0 1px 0 rgba(15,23,42,.03)}
.tour-booking-modal__grid textarea{resize:vertical}
.tour-booking-modal__grid input:focus,.tour-booking-modal__grid select:focus,.tour-booking-modal__grid textarea:focus{outline:none;border-color:rgba(183,121,31,.66);box-shadow:0 0 0 3px rgba(183,121,31,.13)}
.tour-booking-modal__wide{grid-column:1/-1}
.tour-booking-modal__actions{display:grid;gap:10px}
.tour-booking-modal__actions .btn-submit{width:100%;min-height:52px;margin:0;border-radius:8px;background:linear-gradient(135deg,#e73a4e 0%,#be1428 100%);box-shadow:0 16px 30px rgba(215,32,53,.2)}
.tour-booking-modal__actions a{justify-self:center;color:var(--c-primary);font-size:.86rem;font-weight:800;text-decoration:underline;text-underline-offset:3px}
body.is-tour-booking-modal-open{overflow:hidden}
.route-map-modal__backdrop{position:absolute;inset:0;background:rgba(15,23,42,.62)}
.route-map-modal__panel{position:relative;width:min(1040px,calc(100vw - 32px));height:min(720px,calc(100dvh - 44px));background:#fff;border-radius:14px;box-shadow:0 28px 90px rgba(2,6,23,.34);display:flex;flex-direction:column;overflow:hidden}
.route-map-modal__head{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px 16px;border-bottom:1px solid var(--c-border)}
.route-map-modal__head strong{font-size:1rem;color:var(--c-dark)}
.route-map-modal__head button{border:1px solid var(--c-border);border-radius:999px;background:#fff;color:var(--c-dark);padding:8px 12px;font:inherit;font-size:.82rem;font-weight:800;cursor:pointer}
.route-map-modal__canvas{flex:1;min-height:420px;background:#e5edf0}
body.is-route-map-modal-open{overflow:hidden}
.tour-price-card__price{text-align:center}
.tour-price-card__price del{display:inline-block;color:var(--c-text-light);font-size:1rem}
.tour-price-card__price strong{display:block;font-size:1.75rem;color:var(--c-accent);font-weight:800}
.tour-price-card__note{text-align:center;font-size:.8rem;color:var(--c-text-light);margin:8px 0 20px;padding-bottom:16px;border-bottom:1px solid var(--c-border)}
.tour-price-card input,.tour-price-card textarea,.dest-cta-card input{width:100%;padding:10px 14px;border:1px solid var(--c-border);border-radius:8px;font-size:.9rem;font-family: 'Poppins', sans-serif;margin-bottom:10px;transition:border-color .2s}
.tour-price-card input:focus,.tour-price-card textarea:focus{outline:none;border-color:var(--c-primary)}
.tour-contact-btns{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:12px}
.tour-whatsapp,.tour-email{display:flex;align-items:center;justify-content:center;gap:6px;padding:10px;border-radius:8px;border:0;font:inherit;font-size:.8rem;font-weight:600;line-height:1.2;cursor:pointer;transition:var(--transition)}
.tour-whatsapp{background:#dcfce7;color:#16a34a}
.tour-whatsapp:hover{background:#22c55e;color:#fff}
.tour-whatsapp svg{width:16px;height:16px}
.tour-email{background:#dbeafe;color:var(--c-primary)}
.tour-email:hover{background:var(--c-primary);color:#fff}
.tour-email svg{width:16px;height:16px}

.dest-description{font-size:1rem;line-height:1.8;color:var(--c-text)}

/* Destination detail section headings */
.dest-main h2{font-family:'Poppins',sans-serif;font-size:1.4rem;font-weight:800;color:var(--c-dark);margin:36px 0 18px 0;letter-spacing:-.02em;position:relative;padding-bottom:12px}
.dest-main h2::after{content:'';position:absolute;bottom:0;left:0;width:40px;height:3px;background:linear-gradient(90deg,var(--c-primary),var(--c-accent));border-radius:2px}

.dest-facts-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;margin:32px 0}
.dest-fact-card{padding:24px;border-radius:16px;background:linear-gradient(135deg,#ffffff 0%,#f9fafb 100%);border:1px solid rgba(11,31,58,.08);box-shadow:0 4px 16px rgba(11,31,58,.06);transition:all .3s cubic-bezier(.4,0,.2,1);position:relative;overflow:hidden}
.dest-fact-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--c-primary),var(--c-accent));opacity:0;transition:opacity .3s ease}
.dest-fact-card:hover{border-color:rgba(11,31,58,.15);box-shadow:0 12px 32px rgba(11,31,58,.12);transform:translateY(-4px)}
.dest-fact-card:hover::before{opacity:1}
.dest-fact-card--wide{grid-column:1/-1}
.dest-fact-card__label{display:block;margin-bottom:10px;font-size:.7rem;font-weight:900;letter-spacing:.14em;text-transform:uppercase;color:var(--c-primary);opacity:.85}
.dest-fact-card strong{font-family:'Playfair Display',serif;font-size:1.35rem;font-weight:700;color:var(--c-dark);line-height:1.4}
.dest-info-box{display:flex;align-items:center;gap:16px;padding:20px 24px;background:linear-gradient(135deg,#fef3c7 0%,#fef9c3 100%);border-radius:16px;margin:24px 0;border:1px solid rgba(202,138,4,.1);box-shadow:0 4px 12px rgba(202,138,4,.08)}
.dest-info-box__icon{font-size:2.2rem;flex-shrink:0}
.dest-info-box strong{display:block;font-size:.85rem;color:var(--c-dark);margin-bottom:2px}
.dest-info-box p{font-size:.9rem;color:var(--c-text);margin:0}
.dest-highlights{list-style:none;display:grid;gap:12px}
.dest-highlights li{display:flex;align-items:flex-start;gap:12px;padding:14px 18px;background:linear-gradient(135deg,#f9fafb 0%,#fff 100%);border-radius:12px;font-size:.95rem;transition:all .28s ease;border:1px solid rgba(11,31,58,.06);position:relative;overflow:hidden}
.dest-highlights li::before{content:'';position:absolute;left:0;top:0;bottom:0;width:3px;background:var(--c-primary);transform:scaleY(0);transform-origin:center;transition:transform .3s ease}
.dest-highlights li:hover{background:#fff;box-shadow:0 8px 24px rgba(11,31,58,.12);border-color:rgba(11,31,58,.15);padding-left:20px}
.dest-highlights li:hover::before{transform:scaleY(1)}
.dest-hl-icon{color:var(--c-primary);font-weight:bold;font-size:1.1rem;flex-shrink:0}
.dest-gallery{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;margin-top:20px}
.dest-gallery__item{margin:0;border-radius:16px;overflow:hidden;background:#e8eef5;box-shadow:0 4px 16px rgba(11,31,58,.08);transition:all .4s cubic-bezier(.4,0,.2,1);position:relative}
.dest-gallery__item::after{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(11,31,58,.05) 0%,transparent 100%);opacity:0;transition:opacity .3s ease}
.dest-gallery__item:hover{box-shadow:0 16px 40px rgba(11,31,58,.16);transform:translateY(-6px)}
.dest-gallery__item:hover::after{opacity:1}
.dest-gallery__item img{width:100%;height:280px;object-fit:cover;transition:transform .5s ease}
.dest-gallery__item:hover img{transform:scale(1.05)}
.dest-practical-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;margin-top:20px}
.dest-practical-card{padding:24px;border-radius:16px;border:1px solid rgba(11,31,58,.08);background:linear-gradient(135deg,#ffffff 0%,#f9fafb 100%);box-shadow:0 4px 16px rgba(11,31,58,.06);transition:all .3s ease;position:relative}
.dest-practical-card::before{content:'';position:absolute;left:0;top:0;bottom:0;width:4px;background:linear-gradient(180deg,var(--c-primary),var(--c-accent));border-radius:16px 0 0 16px}
.dest-practical-card:hover{border-color:rgba(11,31,58,.15);box-shadow:0 12px 32px rgba(11,31,58,.12);transform:translateY(-4px)}
.dest-practical-card h3{font-family:'Poppins',sans-serif;font-size:1.05rem;font-weight:800;color:var(--c-dark);margin-bottom:12px;letter-spacing:-.01em}
.dest-practical-card p{font-size:.95rem;line-height:1.7;color:var(--c-text)}
.dest-season-note{padding:24px;border-left:4px solid var(--c-primary);border-radius:16px;background:linear-gradient(135deg,var(--c-primary-soft) 0%,rgba(199,234,223,.4) 100%);color:var(--c-text);border:1px solid rgba(11,31,58,.08);box-shadow:0 4px 12px rgba(11,31,58,.06)}
.dest-season-note p{font-size:.96rem;line-height:1.8;margin:0}
.dest-chip-list{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.dest-chip{display:inline-flex;align-items:center;padding:10px 16px;border-radius:999px;background:linear-gradient(135deg,#f7f1e7 0%,#faf6f0 100%);border:1.5px solid rgba(200,169,106,.3);font-size:.85rem;font-weight:700;color:var(--c-primary);transition:all .25s ease;cursor:default;position:relative;overflow:hidden}
.dest-chip::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(200,169,106,.1),transparent);opacity:0;transition:opacity .25s ease}
.dest-chip:hover{background:linear-gradient(135deg,#efe7d7 0%,#f5ede4 100%);border-color:rgba(200,169,106,.5);transform:translateY(-2px);box-shadow:0 4px 12px rgba(200,169,106,.15)}
.dest-chip:hover::before{opacity:1}
.dest-tips-list{display:grid;gap:14px;list-style:none;margin-top:18px}
.dest-tips-list li{padding:16px 18px;border-radius:12px;background:linear-gradient(135deg,#f9fafb 0%,#fff 100%);border:1px solid rgba(11,31,58,.08);box-shadow:0 2px 8px rgba(11,31,58,.04);font-size:.95rem;line-height:1.75;color:var(--c-text);transition:all .28s ease;position:relative;overflow:hidden}
.dest-tips-list li::before{content:'';position:absolute;left:0;top:0;bottom:0;width:3px;background:var(--c-primary);transform:scaleY(0);transform-origin:center;transition:transform .3s ease}
.dest-tips-list li:hover{border-color:rgba(11,31,58,.15);box-shadow:0 8px 24px rgba(11,31,58,.12);padding-left:20px}
.dest-tips-list li:hover::before{transform:scaleY(1)}
.dest-cta-card h3{font-family:'Poppins',sans-serif;font-size:1.25rem;font-weight:800;color:var(--c-dark);margin-bottom:10px;letter-spacing:-.01em;line-height:1.3}
.dest-cta-card p{font-size:.9rem;color:var(--c-text);margin-bottom:18px;line-height:1.6}
.dest-cta-card .btn{width:100%;justify-content:center;margin-bottom:14px;font-weight:800;padding:14px 20px;border-radius:12px;transition:all .3s ease}
.dest-cta-card .btn:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(11,31,58,.2)}
.dest-other{background:linear-gradient(135deg,#ffffff 0%,#f9fafb 100%);padding:24px;border-radius:16px;border:1px solid rgba(11,31,58,.08);box-shadow:0 4px 12px rgba(11,31,58,.06);margin-top:24px}
.dest-other h4{font-family:'Poppins',sans-serif;font-size:1rem;font-weight:800;color:var(--c-dark);margin-bottom:16px;letter-spacing:-.01em;display:flex;align-items:center;gap:8px}
.dest-other h4::before{content:'';display:inline-block;width:3px;height:18px;background:linear-gradient(180deg,var(--c-primary),var(--c-accent));border-radius:2px}
.dest-other a{display:block;padding:10px 12px;font-size:.9rem;color:var(--c-text);transition:all .25s ease;border-radius:8px;border-bottom:none;position:relative;margin-bottom:6px}
.dest-other a::before{content:'→';position:absolute;left:0;opacity:0;transition:all .25s ease;transform:translateX(-6px)}
.dest-other a:last-child{margin-bottom:0}
.dest-other a:hover{background:rgba(11,31,58,.05);color:var(--c-primary);padding-left:20px}
.dest-other a:hover::before{opacity:1;transform:translateX(0)}

/* === TOAST === */
.form-toast{position:fixed;bottom:max(24px,calc(env(safe-area-inset-bottom,0px) + 18px));left:50%;transform:translateX(-50%);width:max-content;max-width:calc(100vw - 32px);box-sizing:border-box;background:var(--c-green);color:#fff;padding:14px 28px;border-radius:10px;font-weight:600;font-size:.9rem;line-height:1.45;text-align:center;z-index:10080;box-shadow:var(--shadow-lg);animation:fadeIn .4s}
.form-toast--error{background:var(--c-accent)}
.form-toast--inline{background:#e11d35;transition:opacity .25s ease,transform .25s ease}
@media(max-width:640px){.form-toast{bottom:max(16px,calc(env(safe-area-inset-bottom,0px) + 12px));width:calc(100vw - 24px);max-width:420px;padding:12px 14px;border-radius:8px;font-size:.82rem;line-height:1.4}}
.cookie-consent{position:fixed;left:24px;bottom:max(24px,env(safe-area-inset-bottom));z-index:10050;width:min(470px,calc(100vw - 48px));max-height:calc(100dvh - 48px);overflow-y:auto;overscroll-behavior:contain;-webkit-overflow-scrolling:touch;transition:opacity .22s ease,transform .22s ease}
.cookie-consent.is-hidden{opacity:0;transform:translateY(18px);pointer-events:none}
.cookie-consent__card{background:#231f1d;color:#fff;border-radius:16px;padding:26px;box-shadow:0 24px 70px rgba(2,6,23,.34);border:1px solid rgba(255,255,255,.1)}
.cookie-consent__eyebrow{margin:0 0 8px;color:#d6b36a;font-size:.72rem;font-weight:900;letter-spacing:.16em;text-transform:uppercase}
.cookie-consent h2{font-family: 'Poppins', sans-serif;font-size:1.42rem;font-weight:700;line-height:1.25;margin:0 0 12px;color:#fff;letter-spacing:-.02em}
.cookie-consent p{font-size:.94rem;line-height:1.75;color:rgba(255,255,255,.82);margin:0 0 14px}
.cookie-consent a{color:#fff;text-decoration:underline;text-underline-offset:4px;font-weight:700}
.cookie-consent__actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px}
.cookie-consent__btn{border:0;border-radius:999px;padding:12px 18px;min-height:46px;font:inherit;font-size:.86rem;font-weight:900;cursor:pointer;touch-action:manipulation;transition:background .2s,color .2s,opacity .2s}
.cookie-consent__btn:disabled{opacity:.6;cursor:wait}
.cookie-consent__btn--primary{background:#d72035;color:#fff}
.cookie-consent__btn--primary:hover{background:#b91527}
.cookie-consent__btn--ghost{background:rgba(255,255,255,.12);color:#fff;border:1px solid rgba(255,255,255,.2)}
.cookie-consent--error .cookie-consent__card{outline:2px solid rgba(215,32,53,.65)}

/* === 404 === */
.not-found{text-align:center;padding:120px 20px}
.not-found h1{font-size:4rem;font-weight:900;color:var(--c-primary)}
.terms-page{min-height:100vh;padding:80px 0;background:linear-gradient(180deg,#f7faf9 0%,#fff 100%)}
.terms-page__card{max-width:860px;background:#fff;border:1px solid var(--c-border);border-radius:18px;padding:42px;box-shadow:var(--shadow-lg)}
.terms-page__card h1{font-family: 'Poppins', sans-serif;font-size:2.6rem;line-height:1.08;color:var(--c-dark);margin-bottom:18px}
.terms-page__card p{font-size:1rem;line-height:1.8;color:var(--c-text);margin-bottom:16px}
.terms-page__card .btn{margin-top:12px}

/* === TRAVEL STYLES === */
.travel-styles{padding:68px 0;background:linear-gradient(180deg,#fff 0%,var(--c-bg) 100%)}
.travel-styles .section-header{position:relative;margin-bottom:42px}
.travel-styles .section-header::after{content:'';display:block;width:76px;height:1px;margin:22px auto 0;background:linear-gradient(90deg,transparent,var(--c-accent),transparent)}
.travel-styles .section-eyebrow{color:var(--c-accent);font-size:.7rem;letter-spacing:.26em;margin-bottom:14px}
.travel-styles .section-title{font-family: 'Poppins', sans-serif;font-size:2.35rem;font-weight:700;line-height:1.1;letter-spacing:-.01em;color:var(--c-dark)}
.home-style-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
@media(min-width:1200px){.home-style-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(min-width:1400px){.home-style-grid{grid-template-columns:repeat(6,minmax(0,1fr))}}
.home-style-card{display:flex;flex-direction:column;overflow:hidden;border-radius:18px;background:#fff;border:1px solid rgba(148,163,184,.22);box-shadow:0 18px 42px rgba(15,23,42,.08);transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease;text-decoration:none;min-width:0}
.home-style-card:hover{transform:translateY(-8px);box-shadow:0 32px 70px rgba(15,23,42,.14);border-color:rgba(184,134,11,.26)}
.home-style-card__media{position:relative;min-height:170px;background:#d9e2ec;overflow:hidden}
.home-style-card__image{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;transition:transform .6s ease}
.home-style-card:hover .home-style-card__image{transform:scale(1.05)}
.home-style-card__media-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(15,23,42,.08) 0%,rgba(15,23,42,.16) 38%,rgba(15,23,42,.72) 100%)}
.home-style-card__media-meta{position:absolute;left:12px;bottom:12px;z-index:2}
.home-style-card__icon{width:36px;height:36px;display:inline-flex;align-items:center;justify-content:center;padding:8px;border-radius:12px;background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.2);backdrop-filter:blur(10px);color:#fff;box-shadow:0 12px 32px rgba(0,0,0,.15)}
.home-style-card__icon svg{width:100%;height:100%;display:block}
.home-style-card__body{display:flex;flex:1;flex-direction:column;align-items:flex-start;padding:14px}
.home-style-card__head{display:flex;flex:1;flex-direction:column;width:100%;margin-bottom:10px}
.home-style-card__head h3{font-family:'Poppins',sans-serif;font-size:1rem;font-weight:800;line-height:1.22;color:var(--c-dark);margin-bottom:8px;min-height:2.45em}
.home-style-card__subtitle{font-size:.78rem;line-height:1.55;color:#64748b;margin:0;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden;min-height:4.65em}
.home-style-card__link-copy{display:inline-flex;align-items:center;margin-top:auto;padding-top:12px;font-size:.68rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:#0f766e}
.home-style-card__link-copy::after{content:'\2192';margin-left:8px;font-size:1rem}
.style-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:18px}
.style-card{position:relative;border-radius:18px;overflow:hidden;min-height:260px;display:flex;align-items:flex-end;cursor:pointer;text-decoration:none}
.style-card__media{position:absolute;inset:0;background:#d9e2ec}
.style-card__bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;transition:transform .5s ease}
.style-card:hover .style-card__bg{transform:scale(1.06)}
.style-card__overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.72) 0%,rgba(0,0,0,.12) 60%,transparent 100%)}
.style-card__content{position:relative;z-index:2;padding:22px;color:#fff;width:100%}
.style-card__icon{width:32px;height:32px;margin-bottom:10px;display:inline-flex;align-items:center;justify-content:center}
.style-card__icon svg{width:100%;height:100%;display:block}
.style-card__content h3{font-size:1.08rem;font-weight:700;margin-bottom:4px;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden}
.style-card__content p{font-size:.82rem;color:rgba(255,255,255,.82);line-height:1.5;min-height:4.5em;margin:0;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}

/* === BLOG PREVIEW === */
.blog-preview{padding:68px 0;background:linear-gradient(180deg,var(--c-bg) 0%,#fff 100%)}
.blog-preview .section-header{position:relative;margin-bottom:42px}
.blog-preview .section-header::after{content:'';display:block;width:76px;height:1px;margin:22px auto 0;background:linear-gradient(90deg,transparent,var(--c-accent),transparent)}
.blog-preview .section-eyebrow{color:var(--c-accent);font-size:.7rem;letter-spacing:.26em;margin-bottom:14px}
.blog-preview .section-title{font-family: 'Poppins', sans-serif;font-size:2.35rem;font-weight:700;line-height:1.1;letter-spacing:-.01em;color:var(--c-dark)}
.blog-grid{display:grid;grid-template-columns:1fr;gap:16px;max-width:1120px;margin:0 auto}
.blog-card{background:#fff;border-radius:14px;overflow:hidden;border:1px solid rgba(11,31,58,.08);box-shadow:0 14px 34px rgba(11,31,58,.06);transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease;display:grid;grid-template-columns:220px minmax(0,1fr);align-items:stretch;gap:0;min-height:260px}
.blog-card:hover{transform:translateY(-4px);box-shadow:0 22px 48px rgba(11,31,58,.1);border-color:rgba(200,169,106,.22)}
.blog-card__img{width:auto;height:100%;min-height:100%;overflow:hidden;background:#e8eef5;border-radius:0;flex-shrink:0;position:relative;isolation:isolate;align-self:stretch}
.blog-card__img::before{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(11,31,58,.1) 0%,rgba(11,31,58,.2) 100%);z-index:2;transition:opacity .4s ease;opacity:.6}
.blog-card:hover .blog-card__img::before{opacity:.3}
.blog-card__img img{width:100%;height:100%;object-fit:cover;object-position:center;transform:scale(1.16);transition:transform .5s ease;position:relative;z-index:0}
.blog-card:hover .blog-card__img img{transform:scale(1.22)}
.blog-card__content{display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;padding:10px 26px 22px;position:relative;z-index:1;min-width:0}
.blog-card__tag{display:inline-flex;align-items:center;padding:5px 12px;border-radius:999px;background:#f7f1e7;color:var(--c-accent);font-size:.72rem;font-weight:800;margin-bottom:10px;align-self:flex-start;border:1px solid rgba(200,169,106,.24);letter-spacing:.12em;text-transform:uppercase;box-shadow:none}
.blog-card__content h3{font-family:'Playfair Display',serif;font-size:1.58rem;font-weight:700;color:var(--c-primary);margin-bottom:10px;line-height:1.18;letter-spacing:-.02em;transition:color .3s ease;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.blog-card:hover .blog-card__content h3{color:var(--c-primary)}
.blog-card__content p{font-size:.98rem;color:var(--c-text-light);line-height:1.82;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;margin:0;max-width:62ch;transition:color .3s ease}
.blog-card:hover .blog-card__content p{color:var(--c-text)}
.blog-card[hidden]{display:none!important}
.blog-preview .section-more{display:flex;justify-content:center;margin-top:22px}
.home-faq{padding:84px 0;background:linear-gradient(180deg,#fff 0%,#f7f4ef 100%)}
.home-faq .section-header{text-align:center;margin-bottom:34px}
.home-faq .section-title{font-family:'Poppins',sans-serif;font-size:2.25rem;font-weight:800;line-height:1.12;color:var(--c-dark)}
.home-faq .section-subtitle{max-width:680px;margin:0 auto;color:var(--c-text-light)}
.home-faq__list{max-width:920px;margin:0 auto;display:grid;gap:14px}
.home-faq__item{border:1px solid rgba(11,31,58,.1);border-radius:8px;background:rgba(255,255,255,.94);box-shadow:0 10px 28px rgba(11,31,58,.08);overflow:hidden}
.home-faq__item summary{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:20px 22px;cursor:pointer;color:var(--c-dark);font-weight:800;line-height:1.35;list-style:none}
.home-faq__item summary::-webkit-details-marker{display:none}
.home-faq__item summary::after{content:'+';display:inline-flex;align-items:center;justify-content:center;flex:0 0 auto;width:28px;height:28px;border-radius:999px;background:#f9f2e6;color:var(--c-accent);font-size:1.2rem;line-height:1;transition:transform .2s ease}
.home-faq__item[open] summary::after{content:'-';transform:rotate(180deg)}
.home-faq__item p{margin:0;padding:0 22px 20px;color:var(--c-text-light);line-height:1.75}
.blog-toggle{min-width:220px}
.customer-experience{padding:88px 0;background:linear-gradient(180deg,#fff 0%,#f7f4ef 100%)}
.customer-experience__inner{display:grid;grid-template-columns:.9fr 1.1fr;gap:36px;align-items:center}
.customer-experience__copy .section-title{font-family:'Poppins',sans-serif;font-size:clamp(2rem,3.2vw,2.7rem);font-weight:800;line-height:1.08;color:var(--c-dark);margin-bottom:16px}
.customer-experience__copy .section-subtitle{max-width:560px;color:var(--c-text-light);line-height:1.75}
.customer-experience__stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin:24px 0}
.customer-experience__stats div{padding:16px 14px;border-radius:8px;background:#fff;border:1px solid rgba(11,31,58,.08);box-shadow:0 10px 26px rgba(11,31,58,.07)}
.customer-experience__stats strong{display:block;font-family:'Poppins',sans-serif;font-size:1.45rem;color:var(--c-primary);line-height:1}
.customer-experience__stats span{display:block;margin-top:7px;font-size:.72rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--c-text-light)}
.customer-experience__actions{display:flex;flex-wrap:wrap;gap:12px;align-items:center}
.customer-experience__btn{color:var(--c-primary);border-color:rgba(11,31,58,.22)}
.customer-experience__video{display:inline-flex;align-items:center;gap:10px;box-shadow:0 12px 26px rgba(215,32,53,.22)}
.customer-experience__video-icon{display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:999px;background:#fff}
.customer-experience__video-icon::before{content:'';display:block;margin-left:2px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:8px solid var(--c-accent)}
.customer-experience__showcase{display:grid;gap:18px}
.customer-experience__photos{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;min-height:360px}
.customer-experience__photos img{width:100%;height:100%;min-height:174px;object-fit:cover;border-radius:8px;box-shadow:0 18px 42px rgba(11,31,58,.16)}
.customer-experience__photos img:first-child{grid-row:span 2;min-height:360px}
.customer-experience__cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.customer-story{padding:18px;border-radius:8px;background:#fff;border:1px solid rgba(11,31,58,.08);box-shadow:0 10px 28px rgba(11,31,58,.08)}
.customer-story__stars{color:#d4a04a;font-size:.82rem;letter-spacing:.08em;margin-bottom:8px}
.customer-story h3{font-family:'Poppins',sans-serif;font-size:.98rem;line-height:1.28;color:var(--c-dark);margin-bottom:8px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.customer-story p{font-size:.82rem;line-height:1.6;color:var(--c-text-light);margin:0 0 12px;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.customer-story strong{font-size:.82rem;color:var(--c-primary)}
@media(max-width:980px){.customer-experience__inner{grid-template-columns:1fr}.customer-experience__cards{grid-template-columns:1fr}.customer-experience__photos{grid-template-columns:repeat(3,minmax(0,1fr));min-height:170px}.customer-experience__photos img,.customer-experience__photos img:first-child{grid-row:auto;min-height:170px}}
@media(max-width:640px){.customer-experience{padding:64px 0}.customer-experience__stats{grid-template-columns:1fr}.customer-experience__actions{align-items:stretch}.customer-experience__actions .btn{width:100%;justify-content:center}.customer-experience__photos{grid-template-columns:1fr 1fr;min-height:0}.customer-experience__photos img,.customer-experience__photos img:first-child{grid-row:auto;min-height:170px}}

/* === DESIGN YOUR VIETNAM JOURNEY CTA === */
.cta-design-journey{position:relative;overflow:hidden;min-height:520px;display:flex;align-items:center}
.cta-design-journey__bg{position:absolute;inset:0;z-index:0}
.cta-design-journey__bg img{width:100%;height:100%;object-fit:cover;object-position:center 60%}
.cta-design-journey__overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(11,31,58,.88) 0%,rgba(15,23,42,.72) 50%,rgba(31,111,91,.65) 100%)}
.cta-design-journey__inner{position:relative;z-index:1;padding:80px 0;display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;width:100%}
.cta-design-journey__content{max-width:560px}
.cta-design-journey__content .section-eyebrow{color:#d6b36a;font-size:.72rem;letter-spacing:.26em;margin-bottom:16px}
.cta-design-journey__title{font-family:'Poppins',sans-serif;font-size:clamp(2.2rem,4vw,3.4rem);font-weight:800;line-height:1.1;color:#fff;margin-bottom:20px}
.cta-design-journey__title span{color:#d6b36a}
.cta-design-journey__subtitle{font-size:1rem;color:rgba(255,255,255,.82);line-height:1.75;margin-bottom:28px;max-width:480px}
.cta-design-journey__actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:24px}
.cta-design-journey__secondary{color:#fff;border-color:rgba(255,255,255,.4);background:rgba(255,255,255,.08);backdrop-filter:blur(4px)}
.cta-design-journey__secondary:hover{background:rgba(255,255,255,.18);border-color:rgba(255,255,255,.6)}
.cta-design-journey__trust{display:flex;gap:20px;flex-wrap:wrap}
.cta-design-journey__trust span{display:flex;align-items:center;gap:6px;font-size:.78rem;color:rgba(255,255,255,.78);font-weight:600;letter-spacing:.06em}
.cta-design-journey__trust svg{color:#d6b36a;flex-shrink:0}
@media(max-width:768px){.cta-design-journey__inner{grid-template-columns:1fr;padding:56px 0}.cta-design-journey__content{text-align:center}.cta-design-journey__subtitle,.cta-design-journey__actions,.cta-design-journey__trust{justify-content:center}.cta-design-journey__subtitle{max-width:100%}}

/* === HOTEL OPTIONS (TOUR PAGE) === */
.hotel-options{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:16px}
.hotel-card{padding:20px;border-radius:14px;background:#fff;border:1px solid var(--c-border);box-shadow:var(--shadow);text-align:center;transition:box-shadow .3s,border-color .3s}
.hotel-card:hover{box-shadow:var(--shadow-lg);border-color:var(--c-accent)}
.hotel-card__stars{font-size:1.2rem;color:#f59e0b;margin-bottom:8px}
.hotel-card__label{font-size:.88rem;font-weight:750;color:var(--c-dark);margin-bottom:4px}
.hotel-card__desc{font-size:.82rem;color:var(--c-text-light);line-height:1.6}
.incl-excl{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:16px}
.incl-excl__col h3{font-size:.88rem;font-weight:750;color:var(--c-dark);margin-bottom:12px;padding-bottom:8px;border-bottom:2px solid var(--c-primary)}
.incl-excl__col--excl h3{border-bottom-color:var(--c-accent)}
.incl-excl__col ul{list-style:none;display:grid;gap:8px}
.incl-excl__col li{position:relative;padding-left:20px;font-size:.88rem;line-height:1.6;color:var(--c-text)}
.incl-excl__col li::before{content:'✓';position:absolute;left:0;color:var(--c-primary);font-weight:800}
.incl-excl__col--excl li::before{content:'✕';color:var(--c-accent)}

/* === STYLE GUIDEBOOK PAGE === */
.style-hero{position:relative;min-height:60vh;display:flex;align-items:center;justify-content:center;padding:140px 0 80px;overflow:hidden;text-align:center}
.style-hero__bg{position:absolute;inset:0;background-size:cover;background-position:center;transform:scale(1.05);animation:heroZoomOut 12s ease-out forwards}
@keyframes heroZoomOut{0%{transform:scale(1.1)}100%{transform:scale(1.05)}}
.style-hero__overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(15,23,42,.6) 0%,rgba(15,23,42,.35) 40%,rgba(15,23,42,.85) 100%);backdrop-filter:blur(2px)}
.style-hero__content{position:relative;z-index:2;color:#fff;display:flex;flex-direction:column;align-items:center;max-width:860px;margin:0 auto}
.style-hero__breadcrumb{display:inline-flex;align-items:center;gap:10px;font-size:.8rem;color:rgba(255,255,255,.8);margin-bottom:24px;padding:6px 16px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.15);border-radius:999px;backdrop-filter:blur(8px);text-transform:uppercase;letter-spacing:.05em;font-weight:600}
.style-hero__breadcrumb a{color:rgba(255,255,255,.9);transition:color .2s}
.style-hero__breadcrumb a:hover{color:#fbbf24}
.style-hero__icon{font-size:3.5rem;display:block;margin-bottom:16px;filter:drop-shadow(0 8px 16px rgba(0,0,0,.4));animation:floatIcon 4s ease-in-out infinite}
@keyframes floatIcon{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
.style-hero__title{font-family:'Poppins',sans-serif;font-size:clamp(2.4rem,5vw,4.2rem);font-weight:800;line-height:1.1;letter-spacing:-.02em;margin-bottom:18px;text-shadow:0 12px 30px rgba(0,0,0,.4);background:linear-gradient(to right,#ffffff,#f1f5f9);-webkit-background-clip:text;-webkit-text-fill-color:transparent}
.style-hero__subtitle{font-size:1.15rem;color:rgba(255,255,255,.9);max-width:680px;line-height:1.7;text-shadow:0 4px 12px rgba(0,0,0,.3);margin-bottom:0}
.style-hero__meta{display:inline-flex;align-items:center;gap:12px;margin-top:28px;padding:12px 24px;border-radius:999px;background:rgba(15,23,42,.4);border:1px solid rgba(255,255,255,.2);backdrop-filter:blur(12px);font-size:.95rem;box-shadow:0 8px 24px rgba(0,0,0,.2)}
.style-hero__label{font-weight:800;color:#fbbf24;text-transform:uppercase;font-size:.75rem;letter-spacing:.15em}

.style-intro{padding:90px 0;background:linear-gradient(180deg,#fff 0%,#fbfaf7 100%)}
.style-intro__layout{display:grid;grid-template-columns:1.15fr .85fr;gap:60px;align-items:center}
.style-intro__content h2{font-family:'Poppins',sans-serif;font-size:2.1rem;font-weight:800;color:var(--c-dark);margin-bottom:24px;line-height:1.2;position:relative;padding-bottom:18px}
.style-intro__content h2::after{content:'';position:absolute;bottom:0;left:0;width:60px;height:3px;background:var(--c-accent);border-radius:2px}
.style-intro__text{font-size:1.05rem;line-height:1.9;color:#475569}
.style-intro__chips{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}
.style-intro__chips span{display:inline-flex;align-items:center;padding:10px 14px;border-radius:999px;background:#f8fafc;border:1px solid rgba(15,23,42,.08);font-size:.78rem;font-weight:700;color:#334155}
.style-quick-card{padding:36px;border-radius:24px;background:rgba(255,255,255,.9);border:1px solid rgba(183,121,31,.15);box-shadow:0 24px 50px rgba(15,23,42,.06);backdrop-filter:blur(10px);position:relative;overflow:hidden}
.style-quick-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--c-primary),var(--c-accent))}
.style-quick-card__icon{font-size:2.8rem;display:block;margin-bottom:16px;filter:drop-shadow(0 4px 8px rgba(0,0,0,.1))}
.style-quick-card h3{font-family:'Poppins',sans-serif;font-size:1.4rem;font-weight:800;color:var(--c-dark);margin-bottom:20px}
.style-quick-card__list{list-style:none;display:grid;gap:12px;margin-bottom:28px}
.style-quick-card__list li{padding:14px 18px;border-radius:12px;background:#f8fafc;border:1px solid rgba(15,23,42,.04);font-size:.95rem;color:var(--c-text);display:flex;align-items:center;gap:10px;transition:transform .2s,box-shadow .2s}
.style-quick-card__list li:hover{transform:translateX(4px);box-shadow:0 4px 12px rgba(15,23,42,.05);background:#fff}
.style-quick-card__list li strong{color:var(--c-accent);font-weight:800}
.style-quick-card .btn{width:100%;justify-content:center;font-size:1.05rem;padding:14px;border-radius:12px}

.style-showcase{padding:82px 0;background:linear-gradient(180deg,#f4f8f6 0%,#fff 100%)}
.style-showcase__grid{display:grid;grid-template-columns:.92fr 1.08fr;gap:34px;align-items:stretch}
.style-showcase__lead{padding:34px;border-radius:24px;background:#fff;border:1px solid rgba(15,23,42,.06);box-shadow:0 18px 42px rgba(15,23,42,.05)}
.style-showcase__lead .section-eyebrow{color:var(--c-accent);font-size:.72rem;letter-spacing:.24em;text-transform:uppercase;font-weight:700;margin-bottom:14px;display:block}
.style-showcase__lead .section-title{font-family:'Poppins',sans-serif;font-size:2rem;font-weight:800;line-height:1.14;color:var(--c-dark);margin-bottom:18px}
.style-showcase__text{font-size:1rem;line-height:1.8;color:#475569;margin-bottom:22px}
.style-showcase__points{display:grid;gap:14px}
.style-showcase__point{display:grid;grid-template-columns:52px 1fr;gap:14px;align-items:flex-start;padding:16px 18px;border-radius:16px;background:#f8fafc;border:1px solid rgba(15,23,42,.05)}
.style-showcase__point span{display:inline-flex;align-items:center;justify-content:center;width:52px;height:52px;border-radius:14px;background:linear-gradient(135deg,var(--c-primary) 0%,#0f766e 100%);color:#fff;font-weight:800;font-size:.95rem;box-shadow:0 10px 24px rgba(15,118,110,.18)}
.style-showcase__point p{font-size:.95rem;line-height:1.7;color:#334155;margin:0}
.style-gallery{display:grid;grid-template-columns:1.2fr .8fr;gap:16px}
.style-gallery__item{position:relative;min-height:220px;border-radius:24px;overflow:hidden;background:#d9e2ec;box-shadow:0 20px 44px rgba(15,23,42,.08)}
.style-gallery__item--main{grid-row:span 2;min-height:460px}
.style-gallery__item img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.style-gallery__item::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(15,23,42,.06) 0%,rgba(15,23,42,.18) 45%,rgba(15,23,42,.78) 100%)}
.style-gallery__item figcaption{position:absolute;left:18px;right:18px;bottom:18px;z-index:2;display:grid;gap:6px}
.style-gallery__item strong{font-size:1rem;font-weight:800;color:#fff;line-height:1.2}
.style-gallery__item span{font-size:.82rem;line-height:1.55;color:rgba(255,255,255,.86)}

.style-expect{padding:80px 0;background:linear-gradient(180deg,#fbfaf7 0%,#fff 100%)}
.style-expect .section-header{position:relative;margin-bottom:42px;text-align:center}
.style-expect .section-header::after{content:'';display:block;width:76px;height:1px;margin:22px auto 0;background:linear-gradient(90deg,transparent,var(--c-accent),transparent)}
.style-expect .section-eyebrow{color:var(--c-accent);font-size:.7rem;letter-spacing:.26em;margin-bottom:14px;text-transform:uppercase;font-weight:700}
.style-expect .section-title{font-family:'Poppins',sans-serif;font-size:2.25rem;font-weight:800;line-height:1.1;color:var(--c-dark)}
.style-expect__grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:24px}
.style-expect__card{padding:36px 28px;border-radius:20px;background:#fff;border:1px solid rgba(15,23,42,.05);box-shadow:0 12px 30px rgba(15,23,42,.04);position:relative;overflow:hidden;transition:all .3s ease;z-index:1}
.style-expect__card:hover{box-shadow:0 20px 40px rgba(15,23,42,.08);transform:translateY(-4px);border-color:rgba(196,122,25,.2)}
.style-expect__num{position:absolute;top:-10px;right:-10px;font-family:'Poppins',sans-serif;font-size:6rem;font-weight:900;color:rgba(196,122,25,.05);line-height:1;z-index:-1;transition:color .3s}
.style-expect__card:hover .style-expect__num{color:rgba(196,122,25,.1)}
.style-expect__card p{font-size:1rem;line-height:1.75;color:#334155;font-weight:500;margin:0}

.style-destinations{padding:80px 0;background:linear-gradient(180deg,#fff 0%,#f4f8f6 100%)}
.style-destinations .section-header{position:relative;margin-bottom:42px;text-align:center}
.style-destinations .section-header::after{content:'';display:block;width:76px;height:1px;margin:22px auto 0;background:linear-gradient(90deg,transparent,var(--c-accent),transparent)}
.style-destinations .section-eyebrow{color:var(--c-accent);font-size:.7rem;letter-spacing:.26em;margin-bottom:14px;text-transform:uppercase;font-weight:700}
.style-destinations .section-title{font-family:'Poppins',sans-serif;font-size:2.25rem;font-weight:800;line-height:1.1;color:var(--c-dark)}
.style-destinations .section-subtitle{max-width:620px;font-size:.98rem;color:#64748b;margin:0 auto}
.style-dest-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:24px}
.style-dest-card{display:flex;flex-direction:column;border-radius:22px;overflow:hidden;background:linear-gradient(135deg,#ffffff 0%,#fafbfc 100%);border:1px solid rgba(11,31,58,.1);box-shadow:0 4px 12px rgba(0,0,0,.08),0 8px 24px rgba(0,0,0,.08);transition:all .4s cubic-bezier(.34,.1,.68,.55);text-decoration:none;position:relative}
.style-dest-card::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(255,255,255,.8),rgba(255,255,255,0));pointer-events:none;z-index:1;opacity:0;transition:opacity .4s ease}
.style-dest-card:hover::before{opacity:1}
.style-dest-card:hover{box-shadow:0 12px 32px rgba(0,0,0,.12),0 20px 48px rgba(0,0,0,.12),0 0 0 1px rgba(11,31,58,.08);transform:translateY(-8px);border-color:rgba(11,31,58,.15);background:linear-gradient(135deg,#ffffff 0%,#f5f7fb 100%)}
.style-dest-card__img{height:260px;overflow:hidden;background:#e8eef5;position:relative;isolation:isolate}
.style-dest-card__img::before{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(11,31,58,.1) 0%,rgba(11,31,58,.25) 50%,rgba(11,31,58,.4) 100%);z-index:2;transition:opacity .4s ease;opacity:.7}
.style-dest-card:hover .style-dest-card__img::before{opacity:.5}
.style-dest-card__img::after{content:'';position:absolute;inset:0;background:radial-gradient(circle at 20% 20%,rgba(255,255,255,.2),transparent);opacity:0;transition:opacity .4s ease;z-index:1;pointer-events:none}
.style-dest-card:hover .style-dest-card__img::after{opacity:1}
.style-dest-card__img img{width:100%;height:100%;object-fit:cover;transition:transform .6s cubic-bezier(.34,.1,.68,.55);position:relative;z-index:0}
.style-dest-card:hover .style-dest-card__img img{transform:scale(1.1) rotate(.5deg)}
.style-dest-card__body{padding:26px;flex:1;display:flex;flex-direction:column;background:linear-gradient(180deg,#ffffff 0%,#fafbfc 100%);position:relative;z-index:2}
.style-dest-card__body h3{font-family:'Poppins',sans-serif;font-size:1.2rem;font-weight:800;color:var(--c-dark);margin-bottom:12px;letter-spacing:-.01em;line-height:1.35;transition:color .3s ease}
.style-dest-card:hover .style-dest-card__body h3{color:var(--c-primary)}
.style-dest-card__body p{font-size:.92rem;color:var(--c-text-light);line-height:1.75;flex:1;margin-bottom:16px;transition:color .3s ease}
.style-dest-card:hover .style-dest-card__body p{color:var(--c-text)}
.style-dest-card__link{font-size:.88rem;font-weight:800;color:var(--c-primary);display:inline-flex;align-items:center;gap:8px;letter-spacing:.02em;transition:all .3s ease;position:relative;z-index:2}
.style-dest-card__link::after{content:'→';transition:transform .3s ease}
.style-dest-card:hover .style-dest-card__link{gap:12px}
.style-dest-card:hover .style-dest-card__link::after{transform:translateX(4px)}

.style-tours{padding:80px 0;background:linear-gradient(180deg,#f4f8f6 0%,#fbfaf7 100%)}
.style-tours .section-header{position:relative;margin-bottom:42px;text-align:center}
.style-tours .section-header::after{content:'';display:block;width:76px;height:1px;margin:22px auto 0;background:linear-gradient(90deg,transparent,var(--c-accent),transparent)}
.style-tours .section-eyebrow{color:var(--c-accent);font-size:.7rem;letter-spacing:.26em;margin-bottom:14px;text-transform:uppercase;font-weight:700}
.style-tours .section-title{font-family:'Poppins',sans-serif;font-size:2.25rem;font-weight:800;line-height:1.1;color:var(--c-dark)}
.style-tours .section-subtitle{max-width:620px;font-size:.98rem;color:#64748b;margin:0 auto}

.style-tips{padding:90px 0;background:linear-gradient(180deg,#091221 0%,#060b14 100%);color:#fff}
.style-tips__layout{display:grid;grid-template-columns:.8fr 1.2fr;gap:60px;align-items:center}
.style-tips__header .section-eyebrow{color:#fbbf24;font-size:.75rem;letter-spacing:.2em;text-transform:uppercase;font-weight:700;margin-bottom:16px;display:block}
.style-tips__header .section-title{font-family:'Poppins',sans-serif;font-size:2.4rem;font-weight:800;color:#fff;margin-bottom:20px;line-height:1.15}
.style-tips__header p{font-size:1.05rem;line-height:1.8;color:rgba(255,255,255,.75)}
.style-tips__list{display:grid;gap:16px}
.style-tip-card{display:flex;align-items:flex-start;gap:20px;padding:24px;border-radius:16px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.05);backdrop-filter:blur(10px);transition:all .3s}
.style-tip-card:hover{background:rgba(255,255,255,.06);border-color:rgba(251,191,36,.3);transform:translateX(6px)}
.style-tip-card__num{flex-shrink:0;width:36px;height:36px;border-radius:50%;background:linear-gradient(135deg,#fbbf24 0%,#d97706 100%);color:#fff;display:flex;align-items:center;justify-content:center;font-size:.9rem;font-weight:800;box-shadow:0 4px 12px rgba(251,191,36,.3)}
.style-tip-card p{font-size:1rem;line-height:1.7;color:rgba(255,255,255,.9);margin:0}

.style-others{padding:80px 0;background:linear-gradient(180deg,#fbfaf7 0%,#fff 100%)}
.style-others .section-header{position:relative;margin-bottom:42px;text-align:center}
.style-others .section-header::after{content:'';display:block;width:76px;height:1px;margin:22px auto 0;background:linear-gradient(90deg,transparent,var(--c-accent),transparent)}
.style-others .section-eyebrow{color:var(--c-accent);font-size:.7rem;letter-spacing:.26em;margin-bottom:14px;text-transform:uppercase;font-weight:700}
.style-others .section-title{font-family:'Poppins',sans-serif;font-size:2.25rem;font-weight:800;line-height:1.1;color:var(--c-dark)}

@media (prefers-reduced-motion: reduce){
*{animation:none!important;transition:none!important}
[data-animate],[data-animate].is-visible{opacity:1!important;transform:none!important}
}

/* === RESPONSIVE === */
@media(max-width:1024px){
.home-intro__inner,.deal-section__inner{grid-template-columns:1fr}
.home-style-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.style-expect__grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.tour-layout,.dest-detail__inner{grid-template-columns:1fr;gap:32px}
.tour-sidebar,.dest-sidebar{position:static}
.tour-sidebar{display:flex;flex-direction:column}
.tour-sidebar .tour-map-card{order:-1}
.footer__inner{grid-template-columns:1fr 1fr;gap:24px}
.tour-facts{grid-template-columns:repeat(2,1fr)}
.itinerary-detail__grid{grid-template-columns:1fr}
.itinerary-day-gallery__grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.dest-facts-grid,.dest-gallery,.dest-practical-grid{grid-template-columns:1fr}
}
@media(max-width:768px){
.site-header{min-height:82px}
.style-expect__grid{grid-template-columns:1fr}
.header__inner{min-height:82px;padding-top:5px;padding-bottom:5px}
.logo{gap:1px;max-width:calc(100% - 54px)}
.logo__mark{width:124px;height:52px}
.logo__slogan{font-size:.78rem;max-width:180px;overflow:hidden;text-overflow:ellipsis}
.header-promo__inner{min-height:32px;gap:8px;font-size:.72rem;line-height:1.25;text-align:center;flex-wrap:wrap;padding:6px 14px}
.nav{position:fixed;top:82px;left:12px;right:12px;background:rgba(255,255,255,.98);border:1px solid rgba(15,23,42,.08);border-radius:18px;flex-direction:column;align-items:stretch;padding:16px;gap:14px;box-shadow:var(--shadow-lg);opacity:0;visibility:hidden;pointer-events:none;transform:translateY(-12px);transition:opacity .2s,transform .2s,visibility .2s;z-index:998}
.site-header--overlay.is-solid .nav,
.site-header:not(.site-header--overlay) .nav{top:114px}
.nav.is-open{opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0)}
.nav__links{flex-direction:column;align-items:flex-start;gap:12px;padding:0;background:none;border:none;border-radius:0}
.site-header--overlay .nav.is-open a,
.site-header--overlay.is-solid .nav.is-open a{color:var(--c-dark)}
.site-header--overlay .nav.is-open .nav__cta,
.site-header--overlay.is-solid .nav.is-open .nav__cta{color:#fff!important}
.nav.is-open a{display:flex;width:100%;padding:8px 4px;color:var(--c-dark)}
.nav__cta{justify-content:center}
.nav-toggle{display:flex;align-items:center;justify-content:center;flex:0 0 40px}
.hero{min-height:100vh;align-items:center}
.hero::before{inset:auto -18% -12% auto;width:280px;height:280px}
.hero__media::after{background:linear-gradient(180deg,rgba(6,18,36,.14) 0%,rgba(6,18,36,.24) 30%,rgba(6,18,36,.56) 100%)}
.hero__content{text-align:center;margin:0 auto;padding:34px 0 42px;max-width:100%}
.hero__eyebrow{font-size:.84rem}
.hero__title{gap:6px;margin-bottom:16px}
.hero__title span{font-size:.82rem}
.hero__title strong{font-size:2.55rem;line-height:1.04;white-space:normal}
.hero__subtitle{max-width:none;font-size:.98rem}
.hero__actions{flex-direction:column;align-items:center;justify-content:center}
.hero__meta{display:none}
.section-header{margin-bottom:26px}
.section-title{font-size:1.55rem}
.section-subtitle{font-size:.9rem}
.destinations .section-title{font-size:1.95rem}
.tours .section-title,.why-us .section-title,.collections-home .section-title,.reviews-section .section-title,.booking-form .section-title{font-size:1.95rem}
.destinations .section-header{margin-bottom:30px}
.tours .section-header,.why-us .section-header,.collections-home .section-header,.reviews-section .section-header,.booking-form__header{margin-bottom:30px}
.deal-section__copy .section-title,.cta-banner h2,.booking-form__title{font-size:1.78rem}
.booking-form__panel{padding:36px}
.booking-form__grid{grid-template-columns:1fr;gap:20px}
@media(max-width:640px){
.booking-form{padding:72px 0}
.booking-form__header{margin-bottom:36px}
.booking-form__title{font-size:1.65rem}
.booking-form__subtitle{font-size:.9rem}
.booking-form__panel{padding:28px 24px;border-radius:20px}
.booking-form__grid{gap:16px}
.booking-form__col{gap:16px}
.booking-form__col-title{font-size:.95rem}
.booking-field-row{grid-template-columns:1fr;gap:12px}
.booking-submit{padding:16px 24px;font-size:.95rem}
.booking-destinations{gap:8px}
.booking-destination span{padding:8px 14px;font-size:.8rem}
}
.plan-hero{min-height:460px;padding:112px 0 70px}
.plan-hero__content{padding-left:18px}
.plan-hero h1{font-size:2.35rem}
.plan-page{padding-top:42px}
.plan-layout{grid-template-columns:1fr;gap:24px;transform:none}
.plan-aside{position:static;top:auto}
.plan-choice-grid,.plan-choice-grid--destinations{grid-template-columns:repeat(2,1fr)}
.plan-fields{grid-template-columns:1fr}
.form-row{grid-template-columns:1fr}
.dest-grid,.dest-grid--featured{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.dest-slider{grid-auto-columns:minmax(180px,74vw);gap:12px}
.tour-grid{grid-template-columns:1fr}
.review-source{flex-direction:column;align-items:flex-start;padding:20px}
.review-source__brand{flex-direction:column;align-items:flex-start}
.review-source__logo{width:100%}
.review-source__rating{width:100%}
.trust-bar__inner{grid-template-columns:repeat(2,1fr);row-gap:22px}
.trust-item:nth-child(3)::before{display:none}
.home-intro{padding:52px 0}
.home-intro__inner{gap:26px}
.home-intro__copy{padding-left:18px}
.home-intro__copy .section-title{font-size:1.82rem}
.home-intro__text{padding-top:22px}
.footer__inner{grid-template-columns:1fr}
.collections-grid{grid-template-columns:1fr}
.tour-contact-btns{grid-template-columns:1fr}
.itinerary-summary{align-items:flex-start}
.itinerary-detail{padding:0 14px 14px}
.itinerary-day-gallery{padding:10px}
.itinerary-day-gallery__head{align-items:center;flex-direction:row;gap:10px;margin-bottom:9px}
.itinerary-day-gallery__controls{display:flex}
.itinerary-day-gallery__grid{display:flex;grid-template-columns:none;gap:0;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;scrollbar-width:none}
.itinerary-day-gallery__grid::-webkit-scrollbar{display:none}
.itinerary-day-photo{flex:0 0 100%;scroll-snap-align:start;aspect-ratio:4/3;border-radius:9px}
.itinerary-day-photo::after{content:'Map';opacity:1;transform:none;font-size:.58rem;padding:4px 7px}
.tour-map-card__canvas,.tour-map-card__empty,.route-map-card__canvas{height:230px}
.route-map-card__head{align-items:flex-start}
.route-map-modal{padding:12px}
.route-map-modal__panel{width:calc(100vw - 24px);height:calc(100dvh - 24px);border-radius:12px}
.route-map-modal__canvas{min-height:320px}
.floating-contact{bottom:16px;right:16px}
.floating-btn{width:44px;height:44px}
.cookie-consent{left:12px;right:12px;bottom:max(12px,env(safe-area-inset-bottom));width:auto;max-height:calc(100dvh - 24px)}
.cookie-consent__card{padding:18px}
.cookie-consent__eyebrow{font-size:.66rem;margin-bottom:6px}
.cookie-consent h2{font-size:1.12rem;margin-bottom:8px}
.cookie-consent p{font-size:.86rem;line-height:1.55;margin-bottom:10px}
.cookie-consent__actions{flex-direction:column}
.cookie-consent__btn{width:100%;min-height:48px}
.hotel-options{grid-template-columns:1fr}
.incl-excl{grid-template-columns:1fr}
.home-style-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.home-style-card__media{min-height:220px}
.home-style-card__head{flex-direction:column}
.home-style-card__stat{min-width:0}
.style-grid{grid-template-columns:repeat(2,1fr)}
.style-intro__layout{grid-template-columns:1fr}
.style-showcase__grid{grid-template-columns:1fr}
.style-gallery{grid-template-columns:1fr 1fr}
.style-gallery__item--main{grid-row:auto;min-height:260px}
.style-tips__layout{grid-template-columns:1fr}
.style-dest-grid{grid-template-columns:repeat(2,1fr)}
.style-hero__title{font-size:1.8rem}
.blog-grid{grid-template-columns:1fr}
.blog-card{flex-direction:column;gap:14px}
.blog-card__img{width:100%;min-height:220px}
.hero__title strong{font-size:2.2rem;line-height:1.1}
}
@media(max-width:380px){
.logo__mark{width:112px;height:47px}
.logo__slogan{font-size:.7rem;max-width:150px}
.home-style-grid{grid-template-columns:1fr}
}

/* === PREMIUM EUROPEAN REDESIGN OVERRIDES === */
:root{
--c-primary:#0B1F3A;
--c-primary-dark:#08162b;
--c-primary-soft:#eef2f6;
--c-accent:#C8A96A;
--c-accent-dark:#aa8950;
--c-bg:#FAFAFA;
--c-white:#ffffff;
--c-dark:#1A1A1A;
--c-text:#3d4652;
--c-text-light:#667085;
--c-border:rgba(11,31,58,.12);
--c-green:#16a34a;
--c-blue:#2A6FDB;
--radius:10px;
--shadow:0 18px 48px rgba(11,31,58,.08);
--shadow-lg:0 26px 72px rgba(11,31,58,.14);
--transition:all .35s cubic-bezier(.22,1,.36,1)
}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;background:linear-gradient(180deg,#faf8f4 0%,#fafafa 22%,#f5f2ed 100%);color:var(--c-text);line-height:1.7}
h1,h2,h3,h4,h5,h6,.section-title,.hero__title strong,.tour-hero__content h1,.dest-hero__content h1,.style-hero__title,.plan-hero__content h1,.blog-story__title{font-family:'Playfair Display',serif;color:var(--c-primary);letter-spacing:-.03em}
p{color:var(--c-text)}
.container{max-width:1200px;padding:0 24px}
[data-animate]{transition:opacity .7s ease,transform .7s cubic-bezier(.22,1,.36,1)}
.site-header,.nav,.btn,.tour-card__img img,.tour-card__cta,.dest-card__img img,.review-source__logo,.floating-btn,.btn-submit{transition:var(--transition)!important}
.section-header{margin-bottom:48px}
.section-eyebrow{font-size:.72rem;letter-spacing:.26em;color:var(--c-accent);font-weight:700}
.section-title{font-size:clamp(2rem,3.4vw,3.4rem);line-height:1.08;margin-bottom:14px}
.section-subtitle{font-size:1rem;line-height:1.85;color:var(--c-text-light);max-width:720px}
.home-intro,.destinations,.tours,.why-us,.collections-home,.travel-styles,.blog-preview,.reviews-section,.cta-banner,.deal-section,.booking-form,.tour-detail-section,.dest-detail,.style-intro,.style-showcase,.style-expect,.style-destinations,.style-tours,.style-tips,.style-others,.plan-page{padding-top:96px;padding-bottom:96px}
.site-header{background:rgba(250,250,250,.72);backdrop-filter:blur(18px);border-bottom:1px solid rgba(255,255,255,.28);box-shadow:0 10px 28px rgba(11,31,58,.06)}
.site-header--overlay{background:transparent;border-bottom-color:transparent;box-shadow:none}
.site-header--overlay .nav__links{background:rgba(8,22,43,.14);border-color:rgba(255,255,255,.16);backdrop-filter:blur(16px)}
.site-header--overlay .nav a,.site-header--overlay .logo__slogan{color:#fff}
.site-header--overlay.is-solid{background:rgba(250,250,250,.86);border-bottom-color:rgba(11,31,58,.08);box-shadow:0 18px 36px rgba(11,31,58,.08)}
.site-header--overlay.is-solid .nav__links{background:rgba(255,255,255,.82);border-color:rgba(11,31,58,.08)}
.site-header--overlay.is-solid .nav a,.site-header--overlay.is-solid .logo__slogan{color:var(--c-text)}
.header__inner{min-height:92px;gap:28px}
.logo{color:var(--c-primary)}
.logo__mark{max-height:58px}
.logo__slogan{font-family:'Inter',sans-serif;font-size:.78rem;letter-spacing:.08em;text-transform:uppercase;color:#7b8795}
.nav{gap:18px}
.nav__links{gap:24px;padding:10px 16px;border-radius:999px;background:rgba(255,255,255,.8);border:1px solid rgba(11,31,58,.08);box-shadow:0 10px 30px rgba(11,31,58,.04)}
.nav a{font-size:.84rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--c-primary)}
.nav a::after{height:1px;background:var(--c-accent);bottom:-6px}
.nav__cta{background:linear-gradient(135deg,var(--c-accent) 0%,#b99559 100%)!important;color:#fff!important;box-shadow:0 16px 36px rgba(200,169,106,.28)}
.nav__cta:hover{transform:translateY(-1px)}
.hero{min-height:100vh;background:#08162b}
.hero::before{display:none}
.hero__media::after{background:linear-gradient(90deg,rgba(8,22,43,.84) 0%,rgba(8,22,43,.58) 34%,rgba(8,22,43,.34) 68%,rgba(8,22,43,.55) 100%)}
.hero__overlay{background:linear-gradient(180deg,rgba(8,22,43,.08) 0%,rgba(8,22,43,.14) 40%,rgba(8,22,43,.58) 100%)}
.hero__content{max-width:860px;padding:84px 0 68px;text-align:left;margin:0}
.hero__eyebrow{font-family:'Inter',sans-serif;color:rgba(255,255,255,.82);font-size:.76rem;letter-spacing:.26em;text-transform:uppercase;margin-bottom:22px}
.hero__title{gap:12px;margin-bottom:26px;text-shadow:none}
.hero__title span{font-size:.95rem;letter-spacing:.24em;color:rgba(255,255,255,.72)}
.hero__title strong{font-size:clamp(3.6rem,6.4vw,6.4rem);line-height:.98;color:#fff;max-width:11ch}
.hero__subtitle{font-size:1.08rem;line-height:1.9;color:rgba(255,255,255,.82);max-width:40rem;margin:0 0 34px}
.hero__actions{justify-content:flex-start;gap:14px;margin-bottom:28px}
.hero__meta{justify-content:flex-start;gap:20px;font-size:.8rem;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.66)}
.btn{border-radius:999px;padding:14px 28px;font-size:.85rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase}
.btn--primary{background:linear-gradient(135deg,var(--c-accent) 0%,#b99559 100%);border-color:transparent;color:#fff;box-shadow:0 16px 34px rgba(200,169,106,.22)}
.btn--primary:hover{transform:translateY(-2px);box-shadow:0 22px 40px rgba(200,169,106,.28);background:linear-gradient(135deg,#d4b57b 0%,var(--c-accent-dark) 100%)}
.btn--outline{background:transparent;border-color:rgba(11,31,58,.18);color:var(--c-primary)}
.hero .btn--outline,.tour-hero .btn--outline,.dest-hero .btn--outline,.style-hero .btn--outline{border-color:rgba(255,255,255,.32);color:#fff;background:rgba(255,255,255,.04)}
.btn--outline:hover{background:var(--c-primary);border-color:var(--c-primary);color:#fff}
.trust-bar{padding:28px 0;background:rgba(255,255,255,.78);backdrop-filter:blur(12px);border-top:1px solid rgba(11,31,58,.06);border-bottom:1px solid rgba(11,31,58,.06)}
.trust-num{font-family:'Playfair Display',serif;font-size:2rem;color:var(--c-primary)}
.trust-item span:last-child{font-size:.74rem;letter-spacing:.18em;color:var(--c-text-light)}
.home-intro{background:transparent}.home-intro__inner{gap:90px}.home-intro__copy .section-title{font-family:'Poppins',sans-serif;font-size:clamp(2.3rem,3.7vw,3.8rem);line-height:1.1;color:var(--c-dark)}.home-intro__copy::before{width:1px;background:linear-gradient(180deg,var(--c-accent),transparent)}.home-intro__text{border-top:1px solid rgba(11,31,58,.1)}.home-intro__text p{font-size:1rem;line-height:2;color:#4c5563}.home-intro__text p:first-child::first-letter{font-family:'Poppins',sans-serif;color:var(--c-accent)}
.destinations,.collections-home,.reviews-section,.dest-detail,.style-showcase,.style-others{background:linear-gradient(180deg,rgba(255,255,255,.65) 0%,rgba(245,241,235,.92) 100%)}
.tours,.why-us,.travel-styles,.blog-preview,.booking-form,.tour-detail-section,.style-destinations,.style-tours,.style-tips,.plan-page{background:linear-gradient(180deg,#fff 0%,#f7f4ef 100%)}
.dest-grid,.tour-grid,.why-grid,.collections-grid,.home-style-grid,.blog-grid,.reviews-grid,.style-dest-grid,.style-grid{gap:24px}
.dest-card,.tour-card,.why-card,.collection-card,.home-style-card,.review-card,.style-dest-card,.style-card,.hotel-card,.dest-fact-card,.dest-practical-card,.tour-price-card,.tour-contact-btns a,.tour-contact-btns button,.dest-cta-card,.blog-card{border-radius:18px;border:1px solid rgba(11,31,58,.08);background:rgba(255,255,255,.92);box-shadow:var(--shadow)}
.dest-card:hover,.tour-card:hover,.why-card:hover,.collection-card:hover,.home-style-card:hover,.style-dest-card:hover,.style-card:hover,.blog-card:hover{transform:translateY(-4px);box-shadow:0 28px 60px rgba(11,31,58,.12)}
.dest-card__img,.tour-card__img,.home-style-card__media,.style-dest-card__img,.blog-card__img{background:#dfe5eb}
.dest-card__img{height:248px}.tour-card__img{height:240px}.home-style-card__media{min-height:300px}.style-dest-card__img{height:240px}.blog-card__img{min-height:260px;border-radius:18px;overflow:hidden}
.dest-card__img img,.tour-card__img img,.home-style-card__image,.style-dest-card__img img,.blog-card__img img,.blog-story__related-card img,.dest-gallery__item img,.style-gallery img,.tour-card__img img,.style-card__bg{width:100%;height:100%;object-fit:cover;transition:transform .9s ease}
.dest-card:hover .dest-card__img img,.tour-card:hover .tour-card__img img,.home-style-card:hover .home-style-card__image,.style-dest-card:hover .style-dest-card__img img,.blog-card:hover .blog-card__img img,.style-card:hover .style-card__bg{transform:scale(1.06)}
.dest-card__info,.tour-card__body,.collection-card,.review-card,.home-style-card__body,.style-dest-card__body,.blog-card__content{padding:22px}
.dest-card__info h3,.tour-card__body h3,.why-card h3,.collection-card h3,.review-card__title,.home-style-card__body h3,.style-dest-card__body h3,.blog-card__content h3{font-family:'Playfair Display',serif;font-size:1.4rem;line-height:1.15;color:var(--c-primary);margin-bottom:10px}
.dest-card__info p,.tour-card__desc,.collection-card p,.review-card__text,.home-style-card__subtitle,.style-dest-card__body p,.blog-card__content p{font-size:.95rem;line-height:1.8;color:var(--c-text-light)}
.tour-card__meta,.tour-card__price del,.review-card__provider,.home-style-card__link-copy,.collection-card__pill,.tour-card__badge,.style-hero__label{letter-spacing:.12em;text-transform:uppercase;font-size:.72rem}
.tour-card__badge,.collection-card__pill{background:#f9f2e6;color:var(--c-accent);border:1px solid rgba(200,169,106,.24)}
.tour-card__footer{border-top:1px solid rgba(11,31,58,.08);padding-top:18px;margin-top:18px}
.tour-card__footer{display:flex;flex-direction:column;gap:12px;align-items:stretch}
.tour-card__price{display:flex;align-items:baseline;gap:6px;justify-content:space-between}
.tour-card__price del{color:var(--c-text-light);font-size:.78rem;font-weight:500;white-space:nowrap}
.tour-card__price strong{color:var(--c-accent);font-size:.86rem;font-weight:700;white-space:nowrap}
.tour-card__actions{width:100%}
.tour-card__cta{display:flex;align-items:center;justify-content:center;width:100%;text-align:center;background:var(--c-primary);padding:10px 16px;border-radius:8px;letter-spacing:.02em;text-transform:uppercase;font-size:.72rem;line-height:1.2;font-weight:600;min-width:100%;box-sizing:border-box}
.tour-card__cta:hover{background:var(--c-accent);transform:translateY(-1px)}
.why-card{padding:28px 24px;background:rgba(255,255,255,.74)}.why-card__icon{width:52px;height:52px;border-radius:14px;background:#f9f3e7;border:1px solid rgba(200,169,106,.22);color:var(--c-accent)}.why-card p{font-size:.94rem}
.home-style-card{overflow:hidden}.home-style-card__media-overlay{background:linear-gradient(180deg,transparent 0%,rgba(11,31,58,.08) 55%,rgba(11,31,58,.58) 100%)}.home-style-card__body{background:#fff}.home-style-card__icon{background:rgba(255,255,255,.92);color:var(--c-primary);box-shadow:0 10px 30px rgba(11,31,58,.12)}.home-style-card__link-copy{color:var(--c-accent);font-weight:700}
.blog-grid{grid-template-columns:1fr}.blog-card{display:grid;grid-template-columns:220px minmax(0,1fr);gap:0;overflow:hidden;background:#fff}.blog-card__content{display:flex;flex-direction:column;justify-content:center;padding:24px 26px}.blog-card__tag{color:var(--c-accent);font-size:.72rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;margin-bottom:12px}
.review-source,.deal-section__panel,.plan-aside,.plan-form,.style-quick-card,.tour-facts,.route-map-card,.dest-other,.dest-map-card,.cookie-consent__card{border-radius:22px;border:1px solid rgba(11,31,58,.08);background:rgba(255,255,255,.92);box-shadow:var(--shadow)}
.review-source{padding:28px 30px}.review-source__score{font-family:'Playfair Display',serif;color:var(--c-primary)}.review-card{padding:24px}.review-card__text{font-style:normal}
.cta-banner__inner{padding:52px;border-radius:28px;background:linear-gradient(135deg,#0b1f3a 0%,#132c4f 100%);box-shadow:0 26px 70px rgba(11,31,58,.18)}.cta-banner__inner h2,.cta-banner__inner p{color:#fff}.cta-banner__inner p{opacity:.82;max-width:660px;margin:0 auto 22px}.cta-banner__inner .btn--primary{box-shadow:none}
.deal-section__inner,.booking-form .form-layout,.tour-layout,.dest-detail__inner,.style-intro__layout,.style-showcase__grid,.style-tips__layout,.plan-layout{gap:32px}
.form-panel,.plan-form,.dest-cta-card,.tour-price-card{padding:28px;background:rgba(255,255,255,.95);border:1px solid rgba(11,31,58,.08);box-shadow:var(--shadow)}
.form-field span,.plan-block legend span,.plan-block p,.plan-aside p,.tour-facts span,.dest-fact-card__label{letter-spacing:.08em;text-transform:uppercase;font-size:.74rem;color:var(--c-text-light)}
.form-field input,.form-field select,.form-field textarea,.plan-fields input,.plan-fields select,.plan-fields textarea,.tour-price-card input,.tour-price-card select,.tour-price-card textarea,.dest-cta-card input{border-radius:12px;border:1px solid rgba(11,31,58,.12);background:#fff;padding:14px 16px;font-family:'Inter',sans-serif;color:var(--c-dark)}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus,.plan-fields input:focus,.plan-fields select:focus,.plan-fields textarea:focus,.tour-price-card input:focus,.tour-price-card select:focus,.tour-price-card textarea:focus,.dest-cta-card input:focus{outline:none;border-color:rgba(200,169,106,.72);box-shadow:0 0 0 4px rgba(200,169,106,.12)}
.btn-submit,.plan-submit{border-radius:999px;background:linear-gradient(135deg,var(--c-accent) 0%,#b99559 100%);letter-spacing:.1em;text-transform:uppercase;box-shadow:0 16px 36px rgba(200,169,106,.24)}
.plan-hero,.tour-hero,.dest-hero,.style-hero{position:relative;min-height:72vh;display:flex;align-items:flex-end;background:#08162b}
.plan-hero::before,.tour-hero::before,.dest-hero::before,.style-hero::before{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(8,22,43,.2) 0%,rgba(8,22,43,.72) 100%);z-index:1}
.tour-hero__bg,.dest-hero__bg,.style-hero__bg{transform:scale(1.02)}
.tour-hero__overlay,.dest-hero__overlay,.style-hero__overlay{background:linear-gradient(180deg,rgba(8,22,43,.08) 0%,rgba(8,22,43,.66) 100%)}
.tour-hero__content,.dest-hero__content,.style-hero__content,.plan-hero__content{position:relative;z-index:2;padding-bottom:78px;color:#fff}
.tour-hero__content h1,.dest-hero__content h1,.style-hero__title,.plan-hero__content h1{font-size:clamp(3rem,5vw,5.4rem);line-height:1;color:#fff;margin-bottom:16px}
.tour-hero__content p,.dest-hero__content p,.style-hero__subtitle,.plan-hero__content p{font-size:1.05rem;line-height:1.9;color:rgba(255,255,255,.82);max-width:44rem}
.tour-main h2,.dest-main h2,.style-intro__content h2,.style-showcase__lead .section-title,.style-tips__header .section-title,.dest-description h2,.blog-story__section h2{font-family:'Playfair Display',serif;font-size:clamp(1.9rem,3vw,2.8rem);color:var(--c-primary);margin-bottom:18px}
.tour-facts,.dest-facts-grid{gap:14px}.tour-facts div,.dest-fact-card{padding:18px 20px;background:#fff;border-radius:16px;border:1px solid rgba(11,31,58,.08)}.tour-facts strong,.dest-fact-card strong{font-family:'Playfair Display',serif;font-size:1.2rem;color:var(--c-primary)}
.tour-highlights,.dest-highlights,.dest-tips-list,.deal-points{gap:14px}.tour-highlights li,.dest-highlights li,.dest-tips-list li,.deal-points li,.itinerary-detail__group li{background:rgba(255,255,255,.86);border:1px solid rgba(11,31,58,.08);border-radius:14px;padding:14px 18px;color:var(--c-text)}
.itinerary-item,.route-map-card,.tour-map-card__canvas,.route-map-modal__panel{border-radius:18px}.itinerary-summary{padding:20px 22px;background:#fff;border:1px solid rgba(11,31,58,.08)}.itinerary-item.is-active .itinerary-summary{border-color:rgba(200,169,106,.32);box-shadow:0 18px 36px rgba(11,31,58,.08)}.itinerary-num{background:#f9f2e6;color:var(--c-accent);border:1px solid rgba(200,169,106,.22)}.itinerary-detail{padding:22px;background:rgba(255,255,255,.92);border:1px solid rgba(11,31,58,.08);border-top:none}
.dest-gallery{grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}.dest-gallery__item{border-radius:20px;overflow:hidden;min-height:280px;box-shadow:var(--shadow)}.dest-chip{background:#f7f1e7;color:var(--c-primary);border:1px solid rgba(200,169,106,.2);border-radius:999px;padding:10px 14px}.related-tour-card{padding:18px 20px;background:#fff;border:1px solid rgba(11,31,58,.08);border-radius:18px}
.style-hero__breadcrumb,.style-hero__meta{position:relative;z-index:2}.style-hero__breadcrumb a,.style-hero__breadcrumb span{color:rgba(255,255,255,.78)}.style-hero__icon{animation:none;filter:none}.style-quick-card h3,.dest-other h4,.tour-price-card h3,.dest-cta-card h3{font-family:'Playfair Display',serif;color:var(--c-primary);font-size:1.55rem}.style-quick-card__list li,.style-tip-card,.style-expect__card,.style-showcase__point{border-radius:16px;border:1px solid rgba(11,31,58,.08);background:rgba(255,255,255,.9)}.style-expect__num{color:rgba(200,169,106,.1)}.style-card__overlay{background:linear-gradient(180deg,rgba(11,31,58,.08) 0%,rgba(11,31,58,.72) 100%)}.style-card__content h3,.style-card__content p,.style-card__icon{color:#fff}
.plan-hero{min-height:56vh}.plan-hero__inner{width:100%;padding:0 0 76px}.plan-aside{padding:30px;background:linear-gradient(180deg,#0b1f3a 0%,#102748 100%);color:#fff}.plan-aside h2{font-family:'Playfair Display',serif;color:#fff;font-size:2.2rem;line-height:1.12;margin:12px 0 18px}.plan-aside p,.plan-aside small{color:rgba(255,255,255,.78)}.plan-aside span{font-family:'Playfair Display',serif;font-size:3rem;color:#f5d18d}.plan-choice span{border-radius:999px;background:#fbfaf8;border:1px solid rgba(11,31,58,.08)}.plan-choice input:checked + span{background:#0b1f3a;border-color:#0b1f3a;color:#fff;box-shadow:0 14px 26px rgba(11,31,58,.18)}
.cookie-consent__card{background:rgba(255,255,255,.96)}.cookie-consent__btn--primary{background:#0b1f3a}.cookie-consent__btn--ghost{background:#f6f2ea;color:#0b1f3a}
.featured-trust{background:#fff;border-top:1px solid rgba(11,31,58,.08);border-bottom:1px solid rgba(11,31,58,.08);padding:18px 0}
.featured-trust__inner{display:flex;align-items:center;justify-content:center;gap:0;flex-wrap:wrap}
.featured-trust__block{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.featured-trust__label{font-size:.68rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:var(--c-text-light);white-space:nowrap;margin:0;min-width:150px}
.featured-trust__sep{width:1px;height:56px;background:rgba(11,31,58,.12);margin:0 28px}
.featured-trust__row{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.featured-trust__item{display:flex;align-items:center;justify-content:center}
.featured-trust__row svg{max-height:40px;width:auto;opacity:.88;transition:opacity .3s}
.featured-trust__row svg:hover{opacity:1}
.featured-trust__row img{max-height:36px;width:auto;object-fit:contain;opacity:.82;transition:opacity .3s}
.featured-trust__row img:hover{opacity:1}
.footer{background:linear-gradient(180deg,#0b1f3a 0%,#08162b 100%);color:rgba(255,255,255,.76);padding-top:84px}.footer__inner{gap:28px}.footer__brand-card,.footer__contact-item{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:20px;box-shadow:none}.footer__brand-title span,.footer h4{font-family:'Playfair Display',serif;color:#fff}.footer__brand-badges span,.footer__brand-cta{border-radius:999px}.footer__brand-badges span{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);color:rgba(255,255,255,.74)}.footer__brand-cta{background:linear-gradient(135deg,var(--c-accent) 0%,#b99559 100%);color:#fff}.footer__links a,.footer__destinations a{color:rgba(255,255,255,.8)}.footer__links a:hover,.footer__destinations a:hover{color:#f5d18d}.footer__bottom{border-top:1px solid rgba(255,255,255,.08);margin-top:44px;padding:18px 0;background:rgba(0,0,0,.12)}
@media(max-width:980px){
.hero__content{max-width:100%;padding-top:128px}
.hero__title strong,.tour-hero__content h1,.dest-hero__content h1,.style-hero__title,.plan-hero__content h1{font-size:clamp(2.7rem,8vw,4.8rem)}
.blog-card{grid-template-columns:1fr}
.home-intro__inner,.style-showcase__grid,.style-intro__layout,.tour-layout,.dest-detail__inner,.plan-layout{grid-template-columns:1fr}
.nav{position:fixed;top:90px;left:16px;right:16px;background:rgba(255,255,255,.96);border:1px solid rgba(11,31,58,.08);border-radius:22px;padding:16px;gap:16px;box-shadow:0 24px 60px rgba(11,31,58,.16)}
.nav__links{flex-direction:column;align-items:flex-start;border:none;box-shadow:none;padding:0;background:transparent}
.site-header--overlay .nav a{color:var(--c-primary)}
}
@media(max-width:768px){
.container{padding:0 18px}
.home-intro,.destinations,.tours,.why-us,.collections-home,.travel-styles,.blog-preview,.reviews-section,.cta-banner,.deal-section,.booking-form,.tour-detail-section,.dest-detail,.style-intro,.style-showcase,.style-expect,.style-destinations,.style-tours,.style-tips,.style-others,.plan-page{padding-top:72px;padding-bottom:72px}
.section-title{font-size:clamp(1.8rem,8vw,2.8rem)}
.hero__content{text-align:left;padding-bottom:54px}
.hero__meta{display:grid;gap:10px}.hero__meta span+span::before{display:none}
.dest-grid,.dest-grid--featured,.style-dest-grid,.style-grid,.home-style-grid{grid-template-columns:1fr}
.dest-card__img,.tour-card__img,.style-dest-card__img,.blog-card__img{height:220px}
.dest-gallery{grid-template-columns:1fr}
.cta-banner__inner{padding:36px 24px}
}

/* === AVT VIETNAM x EUROPE REBUILD === */
:root{
--c-primary:#102A43;
--c-primary-dark:#071A2F;
--c-accent:#B7793F;
--c-accent-dark:#8F552B;
--c-gold:#C8A96A;
--c-vietnam:#2F6F5E;
--c-bg:#FAFAF8;
--c-paper:#FFFFFF;
--c-cream:#F4EFE7;
--c-dark:#1B1F23;
--c-text:#3F4852;
--c-text-light:#6B7280;
--c-border:rgba(16,42,67,.12);
--radius:8px;
--shadow:0 14px 36px rgba(16,42,67,.08);
--shadow-lg:0 22px 54px rgba(16,42,67,.13);
--transition:all .25s ease
}
*{letter-spacing:0!important}
body{background:var(--c-bg);color:var(--c-text);font-size:16px}
h1,h2,h3,h4,h5,h6,.section-title,.hero__title strong,.tour-hero__content h1,.dest-hero__content h1,.style-hero__title,.plan-hero__content h1,.blog-story__title{letter-spacing:0!important}
.container{max-width:1180px}
.home-intro,.destinations,.tours,.why-us,.collections-home,.travel-styles,.blog-preview,.reviews-section,.cta-banner,.deal-section,.booking-form,.tour-detail-section,.dest-detail,.style-intro,.style-showcase,.style-expect,.style-destinations,.style-tours,.style-tips,.style-others,.plan-page{padding-top:78px;padding-bottom:78px}
.section-header{margin-bottom:34px}
.section-eyebrow{font-size:.72rem;color:var(--c-accent);text-transform:uppercase;font-weight:800}
.section-title{font-size:clamp(1.9rem,3vw,2.8rem);line-height:1.12}
.section-subtitle{font-size:.98rem;max-width:680px}
.site-header{background:rgba(250,250,248,.94);border-bottom:1px solid rgba(16,42,67,.08);box-shadow:0 10px 24px rgba(16,42,67,.06)}
.site-header--overlay{background:linear-gradient(180deg,rgba(7,26,47,.68),rgba(7,26,47,0));box-shadow:none;border-bottom:0}
.site-header--overlay.is-solid{background:rgba(250,250,248,.96);border-bottom:1px solid rgba(16,42,67,.08);box-shadow:0 10px 24px rgba(16,42,67,.08)}
.header__inner{min-height:78px}
.logo__mark{max-width:160px;max-height:52px}.logo__slogan{font-size:.68rem;color:#7A8591}
.nav{gap:12px}
.nav__links{display:flex;align-items:center;gap:4px;padding:6px;border-radius:8px;background:rgba(255,255,255,.88);border:1px solid rgba(16,42,67,.1);box-shadow:none}
.site-header--overlay .nav__links{background:rgba(7,26,47,.24);border-color:rgba(255,255,255,.16)}
.site-header--overlay.is-solid .nav__links{background:rgba(255,255,255,.9);border-color:rgba(16,42,67,.1)}
.nav__item{position:relative}
.nav__link,.nav a{display:flex;align-items:center;min-height:38px;padding:0 10px;border-radius:6px;font-size:.77rem;font-weight:750;text-transform:uppercase;color:var(--c-primary)}
.site-header--overlay:not(.is-solid) .nav__link,.site-header--overlay:not(.is-solid) .nav a{color:#fff}
.nav__link:hover,.nav__item:hover>.nav__link,.nav a:hover{background:rgba(183,121,63,.1);color:var(--c-accent)}
.nav a::after{display:none}
.nav__item--dropdown>.nav__link::after{content:"";display:inline-block;width:6px;height:6px;margin-left:7px;border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;transform:rotate(45deg) translateY(-2px)}
.nav__dropdown{position:absolute;top:calc(100% + 12px);left:0;z-index:1000;min-width:220px;padding:8px;border-radius:8px;background:#fff;border:1px solid rgba(16,42,67,.1);box-shadow:0 18px 42px rgba(16,42,67,.16);opacity:0;visibility:hidden;transform:translateY(8px);transition:var(--transition)}
.nav__dropdown--wide{min-width:310px}
.nav__item:hover .nav__dropdown,.nav__item:focus-within .nav__dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.nav__dropdown a{display:block;min-height:0;padding:9px 10px;border-radius:6px;color:var(--c-primary)!important;font-size:.82rem;font-weight:650;text-transform:none;line-height:1.35}
.nav__dropdown a:hover{background:#F7F1E9;color:var(--c-accent)!important}
.nav__cta{padding:11px 16px;border-radius:8px;background:var(--c-accent)!important;box-shadow:none;text-transform:uppercase;font-size:.76rem}
.hero{min-height:86vh;align-items:flex-end}
.hero__content{max-width:720px;padding:130px 0 72px}
.hero__title strong{font-size:clamp(2.7rem,5.2vw,4.8rem);line-height:1.03;max-width:12ch}
.hero__subtitle{font-size:1rem;max-width:38rem}
.btn{border-radius:8px;padding:12px 20px;font-size:.8rem}
.dest-card,.tour-card,.why-card,.collection-card,.home-style-card,.review-card,.style-dest-card,.style-card,.hotel-card,.dest-fact-card,.dest-practical-card,.tour-price-card,.tour-contact-btns a,.tour-contact-btns button,.dest-cta-card,.blog-card,.review-source,.deal-section__panel,.plan-aside,.plan-form,.style-quick-card,.tour-facts,.route-map-card,.dest-other,.dest-map-card,.cookie-consent__card,.form-panel{border-radius:8px;box-shadow:var(--shadow)}
.dest-card__img{height:220px}.tour-card__img{height:212px}.home-style-card__media{min-height:250px}.style-dest-card__img{height:220px}
.dest-card__info,.tour-card__body,.collection-card,.review-card,.home-style-card__body,.style-dest-card__body,.blog-card__content{padding:18px}
.dest-card__info h3,.tour-card__body h3,.why-card h3,.collection-card h3,.review-card__title,.home-style-card__body h3,.style-dest-card__body h3,.blog-card__content h3{font-size:1.2rem}
.tour-card__cta,.btn-submit,.plan-submit{border-radius:8px}
.trust-bar{background:#fff;padding:22px 0}
.cta-banner__inner{border-radius:8px;background:linear-gradient(135deg,var(--c-primary) 0%,var(--c-vietnam) 100%)}
.tour-hero,.dest-hero,.style-hero{min-height:58vh}.plan-hero{min-height:48vh}
.tour-hero__content h1,.dest-hero__content h1,.style-hero__title,.plan-hero__content h1{font-size:clamp(2.2rem,4vw,3.7rem)}
.footer-trust{background:#171715;color:#fff;border-top:1px solid rgba(255,255,255,.08)}
.footer-trust__inner{padding:30px 24px;display:grid;grid-template-columns:minmax(0,1fr) auto;gap:26px;align-items:center}
.footer-featured__eyebrow{margin:0 0 12px;color:var(--c-gold);font-size:.75rem;text-transform:uppercase;font-weight:800}
.footer-featured__logos{display:flex;flex-wrap:wrap;gap:10px}
.footer-featured__logos span{display:inline-flex;align-items:center;min-height:34px;padding:7px 12px;border:1px solid rgba(255,255,255,.14);border-radius:6px;color:rgba(255,255,255,.78);font-size:.78rem;background:rgba(255,255,255,.04)}
.footer-policy-nav{display:grid;gap:8px;min-width:220px}
.footer-policy-nav a{color:#fff;font-size:1rem;font-weight:750}
.footer-policy-nav a:hover{color:var(--c-gold)}
.footer{padding-top:58px;background:linear-gradient(180deg,#102A43 0%,#071A2F 100%)}
.footer__inner{grid-template-columns:1.35fr .8fr .9fr 1fr .9fr;gap:22px}
.footer__brand-card,.footer__contact-item{border-radius:8px}
.footer__brand-logo{width:72px;height:72px}
.footer__bottom{margin-top:30px}
.policy-page{min-height:100vh;padding:92px 0;background:linear-gradient(180deg,#FAFAF8 0%,#F4EFE7 100%)}
.policy-page__card{max-width:860px;background:#fff;border:1px solid rgba(16,42,67,.12);border-radius:8px;box-shadow:var(--shadow);padding:42px}
.policy-page__card h1{font-size:2.7rem;line-height:1.1;margin-bottom:18px;color:var(--c-primary)}
.policy-page__card h2{font-size:1.35rem;margin:28px 0 10px;color:var(--c-primary)}
.policy-page__card p{font-size:1rem;line-height:1.85;color:var(--c-text)}
.policy-page__card a{color:var(--c-accent);font-weight:700}
.policy-page__actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px}
.policy-faq{display:grid;gap:10px;margin:24px 0}
.policy-faq details{border:1px solid rgba(16,42,67,.12);border-radius:8px;background:#fff;padding:16px 18px}
.policy-faq summary{cursor:pointer;font-weight:800;color:var(--c-primary)}
.policy-faq p{margin:10px 0 0}
@media(max-width:1100px){.footer__inner{grid-template-columns:1fr 1fr}.footer-trust__inner{grid-template-columns:1fr}.footer-policy-nav{grid-template-columns:repeat(3,minmax(0,1fr));min-width:0}}
@media(max-width:980px){
.nav{top:78px;border-radius:8px}.nav__links{display:grid;width:100%;gap:4px}.nav__item{width:100%}.nav__link,.nav a{width:100%;justify-content:space-between;color:var(--c-primary)!important}.nav__dropdown{position:static;display:none;opacity:1;visibility:visible;transform:none;box-shadow:none;border:0;background:#F7F1E9;margin:4px 0 8px;min-width:0}.nav__item:hover .nav__dropdown,.nav__item:focus-within .nav__dropdown{display:block}.nav__dropdown--wide{min-width:0}
}
@media(max-width:768px){
.home-intro,.destinations,.tours,.why-us,.collections-home,.travel-styles,.blog-preview,.reviews-section,.cta-banner,.deal-section,.booking-form,.tour-detail-section,.dest-detail,.style-intro,.style-showcase,.style-expect,.style-destinations,.style-tours,.style-tips,.style-others,.plan-page{padding-top:58px;padding-bottom:58px}
.hero{min-height:84vh}.hero__content{padding:118px 0 54px}.hero__title strong{font-size:2.55rem}.footer-policy-nav{grid-template-columns:1fr}.footer__inner{grid-template-columns:1fr}.policy-page{padding:68px 0}.policy-page__card{padding:28px 20px}.policy-page__card h1{font-size:2.2rem}
}

/* === HOME HERO BALANCE FIX === */
.site-header--overlay{background:linear-gradient(180deg,rgba(6,22,38,.78) 0%,rgba(6,22,38,.38) 52%,rgba(6,22,38,0) 100%);border-bottom:0;box-shadow:none}
.site-header--overlay .logo__mark{width:auto;height:auto;max-width:min(228px,38vw);max-height:clamp(56px,7.6vw,78px);object-fit:contain}
.site-header--overlay:not(.is-solid) .logo__mark{filter:drop-shadow(0 14px 32px rgba(0,0,0,.42)) drop-shadow(0 2px 10px rgba(255,255,255,.14))}
.site-header--overlay:not(.is-solid) .logo__slogan{color:rgba(255,255,255,.88);font-weight:650}
.hero{
min-height:100svh;
min-height:100dvh;
align-items:center;
overflow:hidden;
display:flex;
flex-direction:column;
justify-content:center;
padding-bottom:env(safe-area-inset-bottom,0)
}
.hero__media::after{background:linear-gradient(90deg,rgba(6,19,34,.62) 0%,rgba(6,19,34,.42) 32%,rgba(6,19,34,.12) 62%,rgba(6,19,34,.22) 100%)}
.hero__overlay{background:linear-gradient(180deg,rgba(6,19,34,.12) 0%,rgba(6,19,34,.06) 42%,rgba(6,19,34,.36) 100%)}
.hero__slide{background-position:center center}
.hero .container.hero__content{
width:100%;
max-width:min(1180px,100%);
margin:0 auto;
padding:clamp(88px,min(12svh,120px),132px) clamp(20px,5vw,48px) clamp(44px,min(14vmin,96px),140px);
text-align:center;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:0;
box-sizing:border-box
}
.hero .container.hero__content > *{max-width:min(54rem,96vw)}
.hero__eyebrow{
font-size:clamp(.82rem,.42vmin + .74rem,.98rem);
margin-bottom:clamp(12px,2.2svh,18px);
color:rgba(255,255,255,.9);
letter-spacing:.14em;
width:100%
}
.hero__title{
margin:0 0 clamp(12px,2.2svh,22px);
gap:clamp(8px,1.6svh,14px);
display:flex;
flex-direction:column;
align-items:center;
width:100%
}
.hero__title span{
font-size:clamp(1rem,.48vmin + .88rem,1.22rem);
color:rgba(255,255,255,.88);
letter-spacing:.12em
}
.hero__title strong{
font-size:clamp(2.75rem,5.6vmin + 1.25rem,5.65rem);
line-height:1.06;
max-width:26ch;
color:#fff
}
.hero__subtitle{
font-size:clamp(1.06rem,.45vmin + .94rem,1.32rem);
line-height:1.72;
max-width:46rem;
margin:0 auto clamp(22px,3.4svh,32px);
color:rgba(255,255,255,.92)
}
.hero__actions{
justify-content:center;
margin-bottom:clamp(18px,3svh,28px);
flex-wrap:wrap;
gap:clamp(14px,2.4vw,22px);
width:100%
}
.hero .hero__actions .btn{
font-size:clamp(.88rem,.32vmin + .82rem,1.02rem);
padding:clamp(15px,2.2vmin,18px) clamp(28px,4.5vmin,40px);
min-height:52px
}
.hero__meta{
display:flex;
flex-wrap:wrap;
justify-content:center;
align-items:center;
text-align:center;
gap:clamp(14px,2.6vw,26px);
max-width:56rem;
margin:0 auto;
padding:clamp(14px,3.4vmin,26px) clamp(10px,2.5vw,18px) clamp(22px,5.5vmin,44px);
font-size:clamp(.8rem,.32vmin + .74rem,.92rem);
line-height:1.5;
letter-spacing:.08em;
text-transform:uppercase;
color:rgba(255,255,255,.82);
border-top:1px solid rgba(255,255,255,.14);
width:min(56rem,100%)
}
.hero__meta span{white-space:normal}
.hero__meta span+span::before{display:none}
.trust-bar{margin-top:0}
@media(max-width:980px){
.hero{min-height:min(100svh,920px)}
.hero .container.hero__content{
max-width:100%;
padding:clamp(104px,18vw,122px) clamp(18px,4vw,28px) clamp(40px,12vmin,72px);
text-align:center;
align-items:center
}
.hero__title strong{font-size:clamp(2.55rem,8.2vw,4.35rem);max-width:26ch}
.hero__subtitle{max-width:42rem;margin-left:auto;margin-right:auto;font-size:clamp(1.02rem,.55vmin + .94rem,1.22rem)}
.hero__actions{justify-content:center}
.hero__meta{justify-content:center;flex-wrap:wrap;width:100%}
}
@media(max-width:768px){
.hero{min-height:min(100svh,840px)}
.hero .container.hero__content{padding:clamp(96px,22vw,118px) clamp(16px,5vw,22px) clamp(36px,14vmin,56px)}
.hero__eyebrow{font-size:.72rem;line-height:1.35}
.hero__title strong{font-size:clamp(2.15rem,10vw,3.15rem);max-width:22ch}
.hero__subtitle{font-size:clamp(1rem,.8vmin + .92rem,1.08rem);line-height:1.65}
.hero__actions{gap:12px}
.hero__actions .btn{width:min(100%,320px);justify-content:center}
.hero__meta{
display:flex;
font-size:.68rem;
gap:10px 14px;
padding:14px 12px 28px;
letter-spacing:.06em;
border-top-width:1px
}
}

/* === MENU REFINEMENT === */
.nav{gap:10px}
.site-header:not(.site-header--overlay) .nav__links,
.site-header--overlay.is-solid .nav__links{
padding:5px 8px;
border-radius:10px;
background:rgba(255,255,255,.94);
border:1px solid rgba(16,42,67,.08);
backdrop-filter:none;
box-shadow:0 14px 30px rgba(16,42,67,.08)
}
.site-header--overlay:not(.is-solid) .nav__links{
padding:4px 0;
border-radius:0;
background:transparent;
border:none;
backdrop-filter:none;
-webkit-backdrop-filter:none;
box-shadow:none;
gap:clamp(6px,1.1vw,16px)
}
@media(min-width:981px){
.site-header--overlay .header__inner{
position:relative;
display:grid;
grid-template-columns:auto minmax(0,1fr) auto;
align-items:center;
gap:clamp(12px,2vw,22px);
min-height:clamp(86px,10.5vh,108px)
}
.site-header--overlay .logo{
grid-column:1;
grid-row:1;
justify-self:start;
position:relative;
z-index:3;
min-width:0;
align-self:center
}
.site-header--overlay .logo__mark{
max-width:min(232px,22vw);
max-height:clamp(60px,7.8vh,80px)
}
.site-header--overlay .nav{
display:contents
}
.site-header--overlay .nav__links{
grid-column:2;
grid-row:1;
justify-self:center;
align-self:center;
position:static;
transform:none;
display:flex;
flex-wrap:nowrap;
align-items:center;
justify-content:center;
gap:clamp(3px,.75vw,11px);
min-width:0;
max-width:min(680px,calc(100vw - 400px));
width:max-content;
padding:2px 0;
margin:0
}
.site-header--overlay .nav__cta{
grid-column:3;
grid-row:1;
justify-self:end;
align-self:center;
position:relative;
z-index:3;
flex-shrink:0;
white-space:nowrap;
margin:0;
padding:10px 15px;
font-size:clamp(.68rem,.22vw + .66rem,.76rem)
}
.site-header--overlay .nav__links > .nav__item > .nav__link,
.site-header--overlay .nav__links > .nav__link,
.site-header--overlay .nav__links > a.nav__link{
white-space:nowrap
}
.nav__links{display:flex;flex-wrap:nowrap}
.nav__links > .nav__item,
.nav__links > .nav__link,
.nav__links > a.nav__link{
flex-shrink:0
}
.nav__links > .nav__item > .nav__link,
.nav__links > .nav__link,
.nav__links > a.nav__link{
white-space:nowrap
}
}
@media(min-width:981px) and (max-width:1200px){
.site-header--overlay .nav__link,
.site-header--overlay .nav a{
font-size:.68rem!important;
padding:0 8px!important;
min-height:34px!important
}
.site-header--overlay .nav__item--dropdown>.nav__link::after{margin-left:5px}
}
.nav__link,.nav a{
min-height:36px;
padding:0 14px;
border-radius:8px;
font-size:.75rem;
font-weight:800;
letter-spacing:.04em!important
}
.nav__link:hover,.nav__item:hover>.nav__link,.nav a:hover{
background:rgba(255,255,255,.08);
color:#fff
}
.site-header--overlay.is-solid .nav__link:hover,
.site-header--overlay.is-solid .nav__item:hover>.nav__link,
.site-header--overlay.is-solid .nav a:hover{
background:rgba(183,121,63,.1);
color:var(--c-accent)
}
.nav__item--dropdown>.nav__link::after{
width:5px;
height:5px;
margin-left:8px;
border-right:1.5px solid currentColor;
border-bottom:1.5px solid currentColor;
transform:rotate(45deg) translateY(-1px);
opacity:.82
}
.nav__dropdown{
top:calc(100% + 8px);
min-width:210px;
padding:6px;
border-radius:10px;
background:rgba(255,255,255,.98);
border:1px solid rgba(16,42,67,.08);
box-shadow:0 20px 40px rgba(16,42,67,.16);
transform:translateY(6px)
}
.nav__dropdown::before{display:none}
.nav__dropdown--wide{min-width:260px}
.nav__dropdown a{
padding:10px 12px;
border-radius:7px;
font-size:.84rem;
font-weight:700;
line-height:1.3;
color:var(--c-primary)!important
}
.nav__dropdown a:hover{
background:#f6efe5;
color:var(--c-accent)!important
}
.nav__cta{
padding:12px 18px;
border-radius:10px;
font-size:.75rem;
font-weight:800;
box-shadow:0 14px 28px rgba(183,121,63,.22)
}
@media(max-width:980px){
.nav{
top:82px;
border-radius:14px;
padding:14px;
background:rgba(255,255,255,.97);
box-shadow:0 22px 46px rgba(16,42,67,.16)
}
.nav__links{
display:grid;
width:100%;
gap:6px;
padding:0;
background:transparent;
border:0;
box-shadow:none;
backdrop-filter:none;
position:static;
transform:none;
max-width:none;
left:auto
}
.nav__link,.nav a{
min-height:42px;
padding:0 14px;
border-radius:10px;
justify-content:space-between;
color:var(--c-primary)!important;
background:#fff
}
.nav__item:hover>.nav__link,.nav__link:hover,.nav a:hover{
background:#f6efe5;
color:var(--c-accent)!important
}
.nav__dropdown{
margin:2px 0 8px;
padding:6px;
border:1px solid rgba(16,42,67,.08);
background:#f9f6f1;
border-radius:10px
}
.nav__dropdown a{
background:transparent;
padding:9px 10px
}
.nav__cta{
width:100%;
justify-content:center;
margin-top:2px
}
}

/* === MENU DECORATION CLEANUP === */
.nav a::before,
.nav a::after,
.nav__link::before,
.nav__link::after,
.nav__item::before,
.nav__item::after,
.nav__dropdown::before,
.nav__dropdown::after{
display:none!important;
content:none!important
}

/* === POLICY PAGES REBUILD === */
.policy-page{
min-height:100vh;
padding:34px 0 88px;
background:
radial-gradient(circle at top,rgba(200,169,106,.1) 0%,rgba(200,169,106,0) 24%),
linear-gradient(180deg,#f7f3ec 0%,#fbfaf7 28%,#fff 100%);
}
.policy-shell{
max-width:1120px;
display:grid;
gap:18px;
}
.policy-topbar{
display:grid;
grid-template-columns:auto 1fr auto;
gap:14px;
align-items:center;
padding:12px 18px;
border:1px solid rgba(16,42,67,.06);
border-radius:16px;
background:rgba(255,255,255,.94);
backdrop-filter:blur(18px);
box-shadow:0 14px 30px rgba(16,42,67,.06);
}
.policy-topbar__brand{
display:inline-flex;
align-items:center;
gap:14px;
min-width:0;
font-size:.74rem;
font-weight:700;
letter-spacing:.06em!important;
text-transform:uppercase;
color:var(--c-primary);
}
.policy-topbar__brand img{
width:auto;
height:38px;
object-fit:contain;
}
.policy-topbar__brand span{
white-space:nowrap;
opacity:.86;
}
.policy-topbar__nav{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:8px;
}
.policy-topbar__nav a,
.policy-topbar__cta{
display:inline-flex;
align-items:center;
justify-content:center;
min-height:40px;
padding:0 16px;
border-radius:12px;
border:1px solid rgba(16,42,67,.07);
background:rgba(255,255,255,.86);
font-size:.77rem;
font-weight:800;
letter-spacing:.04em!important;
color:var(--c-primary);
}
.policy-topbar__nav a:hover,
.policy-topbar__cta:hover{
background:#f5efe5;
border-color:rgba(200,169,106,.3);
color:var(--c-accent-dark);
}
.policy-topbar__nav a.is-active{
background:linear-gradient(135deg,#102a43 0%,#173a61 100%);
border-color:#102a43;
color:#fff;
box-shadow:0 10px 22px rgba(16,42,67,.14);
}
.policy-topbar__cta{
background:linear-gradient(135deg,var(--c-accent) 0%,#ba8a45 100%);
border-color:transparent;
color:#fff;
box-shadow:0 10px 20px rgba(186,138,69,.18);
}
.policy-topbar__cta:hover{
background:linear-gradient(135deg,#d4b57b 0%,var(--c-accent-dark) 100%);
color:#fff;
}
.policy-hero{
display:grid;
grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr);
gap:26px;
align-items:end;
padding:34px 36px 28px;
border:1px solid rgba(16,42,67,.06);
border-radius:16px;
background:linear-gradient(135deg,#fff 0%,#fbf8f2 100%);
box-shadow:0 16px 40px rgba(16,42,67,.05);
}
.policy-hero__copy h1{
font-family:'Playfair Display',serif;
font-size:clamp(2.45rem,4.3vw,3.7rem);
line-height:1.02;
color:var(--c-primary);
margin:10px 0 14px;
max-width:11ch;
}
.policy-hero__lead{
max-width:38rem;
font-size:1.04rem;
line-height:1.82;
color:var(--c-text);
}
.policy-hero__meta{
display:grid;
gap:10px;
align-content:end;
}
.policy-hero__meta span{
display:flex;
align-items:center;
min-height:54px;
padding:0 18px;
border-radius:12px;
background:rgba(255,255,255,.82);
border:1px solid rgba(16,42,67,.08);
font-size:.76rem;
font-weight:700;
letter-spacing:.12em!important;
text-transform:uppercase;
color:var(--c-primary);
}
.policy-content__card{
background:#fff;
border:1px solid rgba(16,42,67,.08);
border-radius:18px;
box-shadow:0 18px 40px rgba(16,42,67,.07);
}
.policy-content--single{
max-width:none;
margin:0;
width:100%;
}
.policy-panel{
background:#fff;
border:1px solid rgba(16,42,67,.06);
border-radius:22px;
box-shadow:0 22px 54px rgba(16,42,67,.07);
overflow:hidden;
}
.policy-panel__hero{
border:none;
border-radius:0;
box-shadow:none;
background:linear-gradient(135deg,#fff 0%,#fbf8f2 100%);
padding-bottom:24px;
border-bottom:1px solid rgba(16,42,67,.07);
}
.policy-panel__body{
border:none;
border-radius:0;
box-shadow:none;
padding-top:0;
}
.policy-content__card{
padding:30px 36px 36px;
border-radius:16px;
box-shadow:0 16px 38px rgba(16,42,67,.05);
}
.policy-inline-note{
display:flex;
align-items:center;
justify-content:space-between;
gap:16px;
padding:14px 18px;
margin:0 0 28px;
border-radius:14px;
background:linear-gradient(90deg,rgba(248,243,235,.96) 0%,rgba(255,255,255,.98) 100%);
border:1px solid rgba(200,169,106,.18);
}
.policy-inline-note strong{
font-size:.74rem;
font-weight:800;
letter-spacing:.16em!important;
text-transform:uppercase;
color:var(--c-accent);
}
.policy-inline-note span{
font-size:.94rem;
line-height:1.65;
color:var(--c-text);
text-align:right;
}
.policy-inline-note a{
color:var(--c-primary);
font-weight:700;
}
.policy-content__card h2{
font-family:'Playfair Display',serif;
font-size:1.78rem;
line-height:1.15;
color:var(--c-primary);
margin:34px 0 12px;
}
.policy-content__card p{
font-size:1rem;
line-height:1.9;
color:var(--c-text);
max-width:820px;
}
.policy-content__card p + p{
margin-top:14px;
}
.policy-faq{
display:grid;
gap:14px;
margin:0;
max-width:100%;
}
.policy-faq details{
border:1px solid rgba(16,42,67,.08);
border-radius:14px;
background:#fff;
padding:18px 22px;
box-shadow:0 10px 24px rgba(16,42,67,.04);
}
.policy-faq summary{
cursor:pointer;
list-style:none;
display:flex;
align-items:center;
justify-content:space-between;
gap:16px;
font-family:'Playfair Display',serif;
font-size:1.18rem;
line-height:1.2;
color:var(--c-primary);
}
.policy-faq summary::-webkit-details-marker{
display:none;
}
.policy-faq summary::after{
content:'+';
display:inline-flex;
align-items:center;
justify-content:center;
width:28px;
height:28px;
border-radius:50%;
background:#f7f1e8;
border:1px solid rgba(200,169,106,.28);
color:var(--c-accent);
font-family:'Inter',sans-serif;
font-size:1.05rem;
font-weight:700;
flex:0 0 28px;
}
.policy-faq details[open] summary::after{
content:'−';
}
.policy-faq details p{
margin:14px 0 0;
padding-top:14px;
border-top:1px solid rgba(16,42,67,.08);
}
.policy-page__actions{
display:flex;
flex-wrap:wrap;
gap:12px;
margin-top:34px;
padding-top:26px;
border-top:1px solid rgba(16,42,67,.08);
max-width:860px;
}
@media(max-width:980px){
.policy-page{
padding:28px 0 72px;
}
.policy-topbar{
grid-template-columns:1fr;
justify-items:start;
}
.policy-topbar__nav{
justify-content:flex-start;
}
.policy-hero{
grid-template-columns:1fr;
align-items:start;
padding:28px 28px 24px;
}
.policy-hero__copy h1{
max-width:none;
}
.policy-hero__meta{
grid-template-columns:repeat(3,minmax(0,1fr));
}
}
@media(max-width:768px){
.policy-shell{
gap:20px;
}
.policy-page{
padding:18px 0 56px;
}
.policy-topbar{
padding:16px;
border-radius:14px;
}
.policy-topbar__brand{
gap:10px;
font-size:.74rem;
}
.policy-topbar__brand img{
height:34px;
}
.policy-topbar__nav{
display:grid;
width:100%;
grid-template-columns:1fr;
}
.policy-topbar__nav a,
.policy-topbar__cta{
width:100%;
justify-content:flex-start;
}
.policy-hero{
padding:22px 20px 20px;
border-radius:16px;
gap:16px;
}
.policy-hero__copy h1{
font-size:2rem;
}
.policy-hero__lead{
font-size:.96rem;
line-height:1.75;
}
.policy-hero__meta{
grid-template-columns:1fr;
}
.policy-hero__meta span{
min-height:46px;
padding:0 14px;
font-size:.76rem;
}
.policy-content__card{
border-radius:16px;
padding:20px;
}
.policy-panel{
border-radius:18px;
}
.policy-panel__hero,
.policy-panel__body{
padding-left:20px;
padding-right:20px;
}
.policy-inline-note{
flex-direction:column;
align-items:flex-start;
padding:14px 16px;
margin-bottom:20px;
}
.policy-inline-note span{
text-align:left;
}
.policy-content__card h2{
font-size:1.45rem;
margin:24px 0 10px;
}
.policy-faq summary{
font-size:1.08rem;
}
.policy-page__actions .btn{
width:100%;
justify-content:center;
}
}

/* Travel Insurance page polish */
.insurance-page{
background:
radial-gradient(circle at 12% 10%,rgba(24,95,125,.12) 0%,rgba(24,95,125,0) 26%),
radial-gradient(circle at 88% 12%,rgba(200,169,106,.18) 0%,rgba(200,169,106,0) 24%),
linear-gradient(180deg,#f8f5ef 0%,#fbfaf7 42%,#fff 100%);
}
.insurance-page .policy-shell{
max-width:1180px;
}
.insurance-page .policy-panel{
border-color:rgba(16,42,67,.08);
box-shadow:0 28px 70px rgba(16,42,67,.1);
}
.insurance-page .policy-panel__hero{
position:relative;
overflow:hidden;
background:
linear-gradient(120deg,rgba(16,42,67,.96) 0%,rgba(23,58,97,.92) 52%,rgba(200,169,106,.22) 100%),
url('https://images.unsplash.com/photo-1528127269322-539801943592?auto=format&fit=crop&fm=jpg&q=82&w=1800') center/cover;
isolation:isolate;
}
.insurance-page .policy-panel__hero::before{
content:'';
position:absolute;
inset:0;
background:linear-gradient(90deg,rgba(9,31,52,.88) 0%,rgba(9,31,52,.72) 46%,rgba(9,31,52,.42) 100%);
z-index:-1;
}
.insurance-page .policy-hero__copy h1,
.insurance-page .policy-hero__lead,
.insurance-page .section-eyebrow{
color:#fff;
}
.insurance-page .section-eyebrow{
opacity:.82;
}
.insurance-page .policy-hero__copy h1{
max-width:13ch;
text-shadow:0 16px 34px rgba(0,0,0,.28);
}
.insurance-page .policy-hero__lead{
max-width:44rem;
opacity:.92;
}
.insurance-page .policy-hero__meta span{
background:rgba(255,255,255,.14);
border-color:rgba(255,255,255,.24);
color:#fff;
backdrop-filter:blur(12px);
}
.insurance-page .policy-panel__body{
padding:42px 46px 46px;
}
.insurance-page .policy-content__card h2{
font-size:clamp(1.8rem,3vw,2.45rem);
max-width:760px;
margin-top:0;
}
.insurance-page .policy-content__card p{
font-size:1.05rem;
max-width:880px;
}
.insurance-coverage-list{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:14px;
margin:18px 0 22px;
padding:0;
list-style:none;
max-width:920px;
}
.insurance-coverage-list li{
position:relative;
min-height:66px;
display:flex;
align-items:center;
padding:16px 18px 16px 50px;
border:1px solid rgba(16,42,67,.08);
border-radius:14px;
background:linear-gradient(135deg,#fff 0%,#fbf8f2 100%);
box-shadow:0 12px 28px rgba(16,42,67,.05);
font-weight:700;
line-height:1.45;
color:var(--c-primary);
}
.insurance-coverage-list li::before{
content:'';
position:absolute;
left:18px;
top:50%;
width:18px;
height:18px;
border-radius:50%;
transform:translateY(-50%);
background:linear-gradient(135deg,var(--c-accent) 0%,#ba8a45 100%);
box-shadow:0 0 0 5px rgba(200,169,106,.14);
}
.insurance-coverage-list li::after{
content:'';
position:absolute;
left:24px;
top:50%;
width:5px;
height:9px;
border:solid #fff;
border-width:0 2px 2px 0;
transform:translateY(-58%) rotate(45deg);
}
.insurance-minimum,
.insurance-local-note{
padding:18px 20px;
border-radius:16px;
}
.insurance-minimum{
border:1px solid rgba(200,169,106,.28);
background:linear-gradient(135deg,rgba(200,169,106,.16) 0%,rgba(255,255,255,.98) 100%);
font-weight:800;
color:var(--c-primary)!important;
}
.insurance-local-note{
border:1px solid rgba(24,95,125,.14);
background:linear-gradient(135deg,rgba(24,95,125,.08) 0%,rgba(255,255,255,.98) 100%);
}
.insurance-page .policy-faq{
margin-top:18px;
max-width:920px;
}
.insurance-page .policy-faq details{
border-radius:16px;
padding:0;
overflow:hidden;
box-shadow:0 14px 32px rgba(16,42,67,.06);
}
.insurance-page .policy-faq summary{
padding:20px 22px;
font-family:'Poppins',sans-serif;
font-size:1rem;
font-weight:800;
}
.insurance-page .policy-faq details p{
margin:0;
padding:0 22px 20px;
border-top:0;
font-size:.98rem;
line-height:1.78;
}
.insurance-page .policy-faq details[open]{
border-color:rgba(200,169,106,.24);
background:linear-gradient(135deg,#fff 0%,#fbf8f2 100%);
}
.insurance-contact-note{
margin-top:18px;
background:linear-gradient(135deg,#102a43 0%,#173a61 100%);
border-color:rgba(255,255,255,.12);
box-shadow:0 18px 40px rgba(16,42,67,.16);
}
.insurance-contact-note strong,
.insurance-contact-note span,
.insurance-contact-note a{
color:#fff;
}
.insurance-contact-note strong{
opacity:.82;
}
.insurance-contact-note a{
text-decoration:underline;
text-underline-offset:4px;
}
@media(max-width:900px){
.insurance-page .policy-panel__body{
padding:30px 24px 34px;
}
.insurance-coverage-list{
grid-template-columns:1fr;
}
}
@media(max-width:620px){
.insurance-page .policy-panel__hero{
background-position:center;
}
.insurance-page .policy-panel__body{
padding:24px 18px 28px;
}
.insurance-coverage-list li{
min-height:58px;
padding:14px 14px 14px 46px;
}
.insurance-contact-note span{
word-break:break-word;
}
}

/* Shared premium treatment for policy pages */
.policy-page--premium{
background:
radial-gradient(circle at 12% 10%,rgba(24,95,125,.12) 0%,rgba(24,95,125,0) 26%),
radial-gradient(circle at 88% 12%,rgba(200,169,106,.18) 0%,rgba(200,169,106,0) 24%),
linear-gradient(180deg,#f8f5ef 0%,#fbfaf7 42%,#fff 100%);
}
.policy-page--premium .policy-shell{
max-width:1180px;
}
.policy-page--premium .policy-panel{
border-color:rgba(16,42,67,.08);
box-shadow:0 28px 70px rgba(16,42,67,.1);
}
.policy-page--premium .policy-panel__hero{
position:relative;
overflow:hidden;
background:
linear-gradient(120deg,rgba(16,42,67,.96) 0%,rgba(23,58,97,.92) 54%,rgba(200,169,106,.22) 100%),
url('https://images.unsplash.com/photo-1560113781-cb0bddd6772b?auto=format&fit=crop&fm=jpg&q=82&w=1800') center/cover;
isolation:isolate;
}
.policy-page--premium .policy-panel__hero::before{
content:'';
position:absolute;
inset:0;
background:linear-gradient(90deg,rgba(9,31,52,.88) 0%,rgba(9,31,52,.72) 48%,rgba(9,31,52,.42) 100%);
z-index:-1;
}
.policy-page--premium .policy-hero__copy h1,
.policy-page--premium .policy-hero__lead,
.policy-page--premium .section-eyebrow{
color:#fff;
}
.policy-page--premium .section-eyebrow{
opacity:.82;
}
.policy-page--premium .policy-hero__copy h1{
max-width:13ch;
text-shadow:0 16px 34px rgba(0,0,0,.28);
}
.policy-page--premium .policy-hero__lead{
max-width:44rem;
opacity:.92;
}
.policy-page--premium .policy-hero__meta span{
background:rgba(255,255,255,.14);
border-color:rgba(255,255,255,.24);
color:#fff;
backdrop-filter:blur(12px);
}
.policy-page--premium .policy-panel__body{
padding:42px 46px 46px;
}
.policy-page--premium .policy-content__card h2{
font-size:clamp(1.45rem,2.25vw,2rem);
margin-top:32px;
}
.policy-page--premium .policy-content__card h2:first-child{
margin-top:0;
}
.policy-page--premium .policy-content__card p{
font-size:1.04rem;
max-width:900px;
}
.policy-page--premium .policy-inline-note{
background:linear-gradient(135deg,#102a43 0%,#173a61 100%);
border-color:rgba(255,255,255,.12);
box-shadow:0 18px 40px rgba(16,42,67,.14);
}
.policy-page--premium .policy-inline-note strong,
.policy-page--premium .policy-inline-note span,
.policy-page--premium .policy-inline-note a{
color:#fff;
}
.policy-page--premium .policy-inline-note strong{
opacity:.82;
}
.policy-page--premium .policy-faq{
margin-top:18px;
max-width:920px;
}
.policy-page--premium .policy-faq details{
border-radius:16px;
padding:0;
overflow:hidden;
box-shadow:0 14px 32px rgba(16,42,67,.06);
}
.policy-page--premium .policy-faq summary{
padding:20px 22px;
font-family:'Poppins',sans-serif;
font-size:1rem;
font-weight:800;
}
.policy-page--premium .policy-faq details p{
margin:0;
padding:0 22px 20px;
border-top:0;
font-size:.98rem;
line-height:1.78;
}
.policy-page--premium .policy-faq details[open]{
border-color:rgba(200,169,106,.24);
background:linear-gradient(135deg,#fff 0%,#fbf8f2 100%);
}
.policy-page--premium .policy-page__actions{
max-width:920px;
}
@media(max-width:900px){
.policy-page--premium .policy-panel__body{
padding:30px 24px 34px;
}
}
@media(max-width:620px){
.policy-page--premium .policy-panel__hero{
background-position:center;
}
.policy-page--premium .policy-panel__body{
padding:24px 18px 28px;
}
}

/* === HOME INTRO EUROPE x VIETNAM === */
.home-intro{
position:relative;
overflow:hidden;
background:
linear-gradient(180deg,#f9f5ee 0%,#fff 100%);
isolation:isolate;
}
.home-intro__backdrop{
position:absolute;
inset:0;
pointer-events:none;
}
.home-intro__world{
position:absolute;
top:0;
bottom:0;
width:50%;
overflow:hidden;
}
.home-intro__world--europe{
left:0;
background:
radial-gradient(circle at top left,rgba(11,31,58,.1) 0%,rgba(11,31,58,0) 38%),
linear-gradient(180deg,rgba(255,255,255,.1) 0%,rgba(255,255,255,0) 100%);
}
.home-intro__world--vietnam{
right:0;
background:
radial-gradient(circle at top right,rgba(199,71,89,.12) 0%,rgba(199,71,89,0) 34%),
radial-gradient(circle at bottom right,rgba(218,173,87,.16) 0%,rgba(218,173,87,0) 28%),
linear-gradient(180deg,rgba(255,250,246,.18) 0%,rgba(255,250,246,0) 100%);
}
.home-intro__world--vietnam::before{
content:'';
position:absolute;
right:-1%;
top:2%;
width:min(29vw,360px);
aspect-ratio:563/808;
background:url('https://banner2.cleanpng.com/20180224/jre/av18tiwpg.webp') top right/contain no-repeat;
opacity:0;
transform:translateX(84px) scale(.82);
transform-origin:right top;
transition:opacity .9s ease,transform 1.15s cubic-bezier(.22,1,.36,1);
filter:drop-shadow(0 20px 36px rgba(145,54,25,.12));
}
.home-intro__world--vietnam::after{
content:'';
position:absolute;
right:3%;
top:8%;
width:280px;
height:280px;
border-radius:50%;
background:radial-gradient(circle,rgba(255,214,119,.14) 0%,rgba(255,214,119,.05) 36%,rgba(255,214,119,0) 70%);
opacity:0;
transform:translateX(42px);
transition:opacity .85s ease .28s,transform 1s cubic-bezier(.22,1,.36,1) .28s;
}
.home-intro__world--europe.is-visible .home-intro__skyline,
.home-intro__world--vietnam.is-visible::before,
.home-intro__world--vietnam.is-visible::after{
opacity:1;
transform:none;
}
.home-intro__skyline,
.home-intro__branch,
.home-intro__petals{
position:absolute;
opacity:0;
transition:opacity .85s ease,transform 1.05s cubic-bezier(.22,1,.36,1);
}
.home-intro__skyline{
bottom:0;
background:linear-gradient(180deg,rgba(11,31,58,.12) 0%,rgba(11,31,58,.3) 100%);
border-radius:14px 14px 0 0;
transform:translateY(34px) scaleY(.08);
transform-origin:bottom center;
}
.home-intro__skyline--a{left:4%;width:6%;height:26%}
.home-intro__skyline--b{left:12%;width:8%;height:42%}
.home-intro__skyline--c{left:23%;width:11%;height:56%;border-radius:18px 18px 0 0}
.home-intro__skyline--d{left:38%;width:6%;height:34%}
.home-intro__skyline--e{left:47%;width:10%;height:46%;border-radius:18px 18px 0 0}
.home-intro__world--europe.is-visible .home-intro__skyline--a{transition-delay:.02s}
.home-intro__world--europe.is-visible .home-intro__skyline--b{transition-delay:.12s}
.home-intro__world--europe.is-visible .home-intro__skyline--c{transition-delay:.22s}
.home-intro__world--europe.is-visible .home-intro__skyline--d{transition-delay:.32s}
.home-intro__world--europe.is-visible .home-intro__skyline--e{transition-delay:.42s}
.home-intro__skyline--c::before,
.home-intro__skyline--e::before{
content:'';
position:absolute;
left:50%;
transform:translateX(-50%);
top:-14px;
width:20px;
height:14px;
background:rgba(11,31,58,.2);
clip-path:polygon(50% 0,0 100%,100% 100%);
}
.home-intro__branch{
transform:translateX(72px) scaleX(.08) rotate(-10deg);
transform-origin:right center;
display:none;
}
.home-intro__branch::before,
.home-intro__branch::after{
content:'';
position:absolute;
border-radius:999px;
background:linear-gradient(180deg,#8a5a31 0%,#5c3718 100%);
}
.home-intro__branch--one{
right:6%;
top:5%;
width:170px;
height:210px;
}
.home-intro__branch--one::before{
right:30px;
top:6px;
width:7px;
height:190px;
transform:rotate(24deg);
}
.home-intro__branch--one::after{
right:56px;
top:48px;
width:6px;
height:120px;
transform:rotate(72deg);
}
.home-intro__branch--two{
right:22%;
top:11%;
width:150px;
height:190px;
}
.home-intro__branch--two::before{
right:72px;
top:12px;
width:6px;
height:158px;
transform:rotate(-28deg);
}
.home-intro__branch--two::after{
right:44px;
top:48px;
width:5px;
height:104px;
transform:rotate(58deg);
}
.home-intro__branch--three{
right:10%;
bottom:4%;
width:220px;
height:180px;
}
.home-intro__branch--three::before{
left:24px;
bottom:16px;
width:7px;
height:168px;
transform:rotate(72deg);
}
.home-intro__branch--three::after{
left:78px;
bottom:38px;
width:5px;
height:114px;
transform:rotate(18deg);
}
.home-intro__petals{
width:110px;
height:110px;
border-radius:50%;
filter:blur(.2px);
transform:translateY(18px) scale(.65);
display:none;
}
.home-intro__petals::before,
.home-intro__petals::after{
content:'';
position:absolute;
inset:0;
border-radius:50%;
background:
radial-gradient(circle at 18% 22%,rgba(255,198,206,.95) 0 3px,transparent 4px),
radial-gradient(circle at 55% 20%,rgba(255,214,119,.96) 0 4px,transparent 5px),
radial-gradient(circle at 80% 34%,rgba(255,185,198,.92) 0 3px,transparent 4px),
radial-gradient(circle at 26% 58%,rgba(255,225,138,.96) 0 4px,transparent 5px),
radial-gradient(circle at 58% 56%,rgba(255,191,205,.95) 0 3px,transparent 4px),
radial-gradient(circle at 84% 72%,rgba(255,220,126,.92) 0 4px,transparent 5px),
radial-gradient(circle at 40% 82%,rgba(255,181,194,.92) 0 3px,transparent 4px);
}
.home-intro__petals--one{right:18%;top:4%}
.home-intro__petals--two{right:2%;top:24%}
.home-intro__petals--three{right:12%;bottom:4%}
.home-intro__petals--two::after{
transform:rotate(24deg) scale(1.08);
opacity:.92;
}
.home-intro__inner{
position:relative;
display:grid;
grid-template-columns:minmax(0,.96fr) minmax(0,1.04fr);
gap:54px;
align-items:center;
padding:48px 0;
z-index:1;
}
.home-intro__copy{
position:relative;
padding:24px 0 38px 28px;
background:none;
}
.home-intro__copy::before{
content:'';
position:absolute;
left:0;
top:10px;
width:46px;
height:1px;
background:var(--c-accent);
}
.home-intro__copy::after{
content:'';
position:absolute;
left:-12px;
bottom:0;
width:120px;
height:120px;
border-left:1px solid rgba(200,169,106,.22);
border-bottom:1px solid rgba(200,169,106,.12);
opacity:.55;
}
.home-intro__copy .section-eyebrow{
margin:0 0 20px;
padding-left:0;
font-size:.72rem;
font-weight:800;
letter-spacing:.24em!important;
color:var(--c-accent-dark);
}
.home-intro__copy .section-title{
max-width:10ch;
margin:0;
font-family:'Playfair Display',serif;
font-size:clamp(3rem,4.7vw,5rem);
line-height:.96;
letter-spacing:-.04em!important;
color:var(--c-primary);
text-wrap:balance;
text-shadow:0 18px 40px rgba(255,255,255,.3);
}
.home-intro__text{
position:relative;
display:grid;
align-content:center;
gap:24px;
padding:26px 0 24px 18px;
border-top:none;
background:none;
}
.home-intro__text::before{
content:'';
position:absolute;
left:0;
right:10%;
top:0;
height:1px;
background:linear-gradient(90deg,rgba(47,111,94,.22),rgba(47,111,94,.08),transparent);
pointer-events:none;
}
.home-intro__text::after{
content:'';
position:absolute;
right:5%;
bottom:-10px;
width:180px;
height:180px;
border-radius:50%;
background:
radial-gradient(circle,rgba(200,169,106,.14) 0%,rgba(200,169,106,.06) 34%,rgba(200,169,106,0) 70%);
pointer-events:none;
}
.home-intro__text p{
position:relative;
z-index:1;
max-width:37rem;
margin:0;
font-size:1.02rem;
line-height:2;
color:#425063;
}
.home-intro__text p:first-child{
padding-top:28px;
border-top:none;
}
.home-intro__text p:first-child::first-letter{
float:left;
margin:7px 12px 0 0;
font-family:'Playfair Display',serif;
font-size:3.35rem;
line-height:.85;
color:var(--c-vietnam);
}
@media(max-width:980px){
.home-intro__world{
width:100%;
}
.home-intro__world--europe{
left:0;
right:0;
top:0;
bottom:50%;
}
.home-intro__world--vietnam{
left:0;
right:0;
top:50%;
bottom:0;
}
.home-intro__inner{
grid-template-columns:1fr;
gap:26px;
padding:34px 0 30px;
}
.home-intro__copy{
padding:28px 34px 8px;
}
.home-intro__copy::before{
left:0;
top:12px;
}
.home-intro__copy::after{
display:none;
}
.home-intro__copy .section-title{
max-width:13ch;
font-size:clamp(2.5rem,6vw,4.1rem);
}
.home-intro__text{
padding:16px 34px 24px;
}
.home-intro__text::before{
right:24%;
}
.home-intro__text::after{
width:124px;
height:124px;
right:18px;
bottom:-8px;
}
.home-intro__world--vietnam::before{
right:2%;
top:8%;
width:min(44vw,320px);
}
.home-intro__world--vietnam::after{
right:8%;
top:14%;
width:200px;
height:200px;
}
}
@media(max-width:768px){
.home-intro__copy{
padding:22px 22px 6px;
}
.home-intro__copy::before{
left:0;
top:10px;
width:38px;
}
.home-intro__copy::after{
display:none;
}
.home-intro__copy .section-eyebrow{
margin-bottom:16px;
font-size:.68rem;
}
.home-intro__copy .section-title{
max-width:none;
font-size:2.55rem;
line-height:1;
}
.home-intro__text{
padding:14px 22px 24px;
gap:18px;
}
.home-intro__text::before{
right:16%;
}
.home-intro__text::after{
right:10px;
bottom:-4px;
width:88px;
height:88px;
}
.home-intro__text p{
font-size:.96rem;
line-height:1.86;
}
.home-intro__text p:first-child{
padding-top:20px;
}
.home-intro__text p:first-child::first-letter{
font-size:2.8rem;
margin:5px 10px 0 0;
}
.home-intro__skyline--a{left:6%;width:9%;height:20%}
.home-intro__skyline--b{left:18%;width:10%;height:26%}
.home-intro__skyline--c{left:31%;width:14%;height:34%}
.home-intro__skyline--d{left:48%;width:8%;height:20%}
.home-intro__skyline--e{left:59%;width:12%;height:28%}
.home-intro__world--vietnam::before{
right:0;
top:14%;
width:220px;
}
.home-intro__world--vietnam::after{
right:0;
top:18%;
width:140px;
height:140px;
}
}

/* === HOT DEAL BADGE === */
.tour-card__badge--hot{
display:inline-flex;
align-items:center;
gap:6px;
background:linear-gradient(135deg,#c96a2b 0%,#e2a23d 100%)!important;
border-color:rgba(201,106,43,.18)!important;
color:#fff!important;
box-shadow:0 12px 24px rgba(201,106,43,.26);
}
.tour-card__badge--hot::before{
content:'🔥';
font-size:.86em;
line-height:1;
}

/* === HOME INTRO RESET === */
.home-intro{
padding:82px 0 86px!important;
position:relative!important;
background:
radial-gradient(circle at 18% 18%,rgba(200,169,106,.12) 0%,rgba(200,169,106,0) 24%),
linear-gradient(180deg,#fbf8f2 0%,#ffffff 100%)!important;
overflow:hidden!important;
isolation:isolate!important;
}
.home-intro__backdrop,
.home-intro__world,
.home-intro__skyline,
.home-intro__branch,
.home-intro__petals{
display:none!important;
}
.home-intro__inner{
position:relative!important;
display:grid!important;
grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr)!important;
gap:34px!important;
align-items:start!important;
padding:24px!important;
overflow:visible!important;
border:1px solid rgba(11,31,58,.07)!important;
border-radius:30px!important;
background:
linear-gradient(135deg,rgba(255,255,255,.96) 0%,rgba(248,243,235,.94) 100%)!important;
box-shadow:0 28px 80px rgba(11,31,58,.08)!important;
z-index:1!important;
}
.home-intro__inner::before{
content:''!important;
position:absolute!important;
inset:18px!important;
border-radius:24px!important;
border:1px solid rgba(200,169,106,.12)!important;
pointer-events:none!important;
}
.home-intro__inner::after{
content:''!important;
position:absolute!important;
right:26px!important;
top:26px!important;
width:180px!important;
height:180px!important;
border-radius:50%!important;
background:radial-gradient(circle,rgba(200,169,106,.16) 0%,rgba(200,169,106,.05) 38%,rgba(200,169,106,0) 72%)!important;
pointer-events:none!important;
}
.home-intro__copy{
position:relative!important;
padding:42px 40px 44px 44px!important;
background:rgba(255,255,255,.84)!important;
border:1px solid rgba(11,31,58,.06)!important;
border-radius:24px!important;
box-shadow:0 16px 40px rgba(11,31,58,.05)!important;
backdrop-filter:blur(10px)!important;
min-height:100%!important;
}
.home-intro__copy::before{
content:''!important;
position:absolute!important;
left:44px!important;
top:28px!important;
width:58px!important;
height:1px!important;
max-height:none!important;
background:var(--c-accent)!important;
}
.home-intro__copy::after{
display:block!important;
content:''!important;
position:absolute!important;
left:22px!important;
bottom:20px!important;
width:96px!important;
height:96px!important;
border-left:1px solid rgba(11,31,58,.08)!important;
border-bottom:1px solid rgba(11,31,58,.08)!important;
opacity:.42!important;
}
.home-intro__copy .section-eyebrow{
color:var(--c-accent-dark)!important;
font-size:.72rem!important;
letter-spacing:.26em!important;
margin-bottom:18px!important;
padding-top:10px!important;
}
.home-intro__copy .section-title{
max-width:10ch!important;
font-family:'Playfair Display',serif!important;
font-size:clamp(3rem,4.5vw,4.75rem)!important;
font-weight:700!important;
line-height:.97!important;
letter-spacing:-.04em!important;
color:var(--c-primary)!important;
text-shadow:none!important;
text-wrap:balance!important;
}
.home-intro__text{
position:relative!important;
display:grid!important;
gap:20px!important;
padding:64px 42px 38px!important;
margin:56px 0 18px -12px!important;
border-top:0!important;
background:linear-gradient(180deg,#fff 0%,#f6f2ea 100%)!important;
border:1px solid rgba(11,31,58,.07)!important;
border-radius:26px!important;
box-shadow:0 22px 48px rgba(11,31,58,.07)!important;
}
.home-intro__text::before,
.home-intro__text::after{
display:block!important;
content:''!important;
position:absolute!important;
pointer-events:none!important;
}
.home-intro__text::before{
left:42px!important;
right:42px!important;
top:28px!important;
height:1px!important;
background:linear-gradient(90deg,rgba(11,31,58,.14),rgba(11,31,58,.04),transparent)!important;
}
.home-intro__text::after{
right:26px!important;
bottom:22px!important;
width:120px!important;
height:120px!important;
border-radius:50%!important;
background:radial-gradient(circle,rgba(47,111,94,.12) 0%,rgba(47,111,94,.04) 36%,rgba(47,111,94,0) 72%)!important;
}
.home-intro__text p{
position:relative!important;
z-index:1!important;
max-width:36rem!important;
font-size:1.02rem!important;
line-height:1.92!important;
color:#4b596d!important;
}
.home-intro__text p:first-child{
padding-top:0!important;
border-top:0!important;
}
.home-intro__text p:first-child::first-letter{
font-family:'Playfair Display',serif!important;
font-size:3.15rem!important;
line-height:.88!important;
color:var(--c-vietnam)!important;
float:left!important;
margin:8px 12px 0 0!important;
}
@media(max-width:980px){
.collections-grid{
grid-template-columns:repeat(2,minmax(0,1fr));
}
.home-intro__inner{
grid-template-columns:1fr!important;
gap:20px!important;
padding:18px!important;
}
.home-intro__copy{
padding:36px 28px 34px!important;
}
.home-intro__copy .section-title{
max-width:12ch!important;
font-size:clamp(2.4rem,6vw,3.6rem)!important;
}
.home-intro__text{
margin:0!important;
padding:52px 28px 30px!important;
}
}
@media(max-width:768px){
.collections-grid{
grid-template-columns:1fr;
}
.home-intro{
padding:56px 0!important;
}
.home-intro__inner{
padding:14px!important;
border-radius:22px!important;
}
.home-intro__inner::before{
inset:12px!important;
border-radius:18px!important;
}
.home-intro__copy .section-title{
font-size:2.18rem!important;
max-width:none!important;
}
.home-intro__copy{
padding:30px 20px 24px!important;
border-radius:18px!important;
}
.home-intro__copy::before{
left:20px!important;
top:22px!important;
width:42px!important;
}
.home-intro__copy::after{
left:14px!important;
bottom:14px!important;
width:62px!important;
height:62px!important;
}
.home-intro__text{
padding:46px 20px 24px!important;
border-radius:18px!important;
}
.home-intro__text::before{
left:20px!important;
right:20px!important;
top:22px!important;
}
.home-intro__text::after{
width:78px!important;
height:78px!important;
right:14px!important;
bottom:14px!important;
}
.home-intro__text p{
font-size:.96rem!important;
line-height:1.82!important;
}
.home-intro__text p:first-child::first-letter{
font-size:2.55rem!important;
}
}

/* === HOME VIEWPORT BALANCE === */
.hero{
min-height:100svh;
min-height:100dvh;
}
.hero__content,
.hero .container.hero__content{
padding-top:clamp(88px,min(12svh,120px),138px);
padding-bottom:clamp(40px,min(10svh,88px),120px);
text-align:center;
align-items:center;
}
.hero__title strong{
font-size:clamp(2.65rem,5.2vmin + 1.15rem,5.55rem);
max-width:26ch;
line-height:1.06;
}
.hero__subtitle{
max-width:min(46rem,96vw);
font-size:clamp(1.04rem,.42vmin + .92rem,1.28rem);
line-height:1.7;
margin-left:auto;
margin-right:auto;
}
.hero__meta{
display:flex;
justify-content:center;
flex-wrap:wrap;
max-width:min(56rem,98vw);
font-size:clamp(.78rem,.3vmin + .72rem,.9rem);
line-height:1.5;
padding-bottom:clamp(16px,4vmin,32px);
}
.trust-bar{
padding:clamp(16px,2.2svh,28px) 0;
}
@media (max-height:860px){
.header__inner{
min-height:72px;
}
.logo__mark{
max-height:50px;
}
.hero{
min-height:min(100svh,100dvh);
}
.hero__content,
.hero .container.hero__content{
padding-top:clamp(82px,11svh,112px);
padding-bottom:clamp(22px,5svh,40px);
}
.hero__title strong{
font-size:clamp(2.25rem,3.8vmin + .95rem,4.15rem);
max-width:24ch;
}
.hero__subtitle{
font-size:clamp(.96rem,.34vmin + .88rem,1.12rem);
line-height:1.62;
max-width:min(42rem,94vw);
margin-bottom:clamp(10px,2svh,16px);
}
.hero__actions{
margin-bottom:16px;
}
.hero__meta{
font-size:.72rem;
gap:10px;
}
.trust-bar{
padding:14px 0;
}
.trust-num{
font-size:1.7rem;
}
}
@media (max-height:760px){
.hero{
min-height:min(100svh,100dvh);
align-items:center;
}
.hero__content,
.hero .container.hero__content{
padding-top:clamp(76px,10svh,102px);
padding-bottom:clamp(18px,4svh,32px);
}
.hero__title{
margin-bottom:clamp(8px,1.5svh,12px);
}
.hero__title strong{
font-size:clamp(2rem,3.25vmin + .85rem,3.65rem);
line-height:1.05;
max-width:22ch;
}
.hero__subtitle{
font-size:clamp(.9rem,.3vmin + .84rem,1.06rem);
line-height:1.58;
max-width:min(40rem,94vw);
margin-bottom:clamp(8px,1.8svh,14px);
}
.hero__actions .btn{
padding:12px 20px;
}
.hero__meta{
font-size:.68rem;
max-width:min(620px,64vw);
}
.trust-bar__inner{
gap:10px;
}
}
@media (min-aspect-ratio: 16/9){
.hero__content,
.hero .container.hero__content{
max-width:1240px;
padding-left:24px;
padding-right:24px;
}
.hero__title strong{
font-size:clamp(2.75rem,5.2vmin + 1.1rem,5.45rem);
max-width:26ch;
}
.hero__subtitle{
max-width:min(46rem,58vw);
font-size:clamp(1.04rem,.42vmin + .92rem,1.26rem);
}
.hero__meta{
max-width:min(56rem,62vw);
font-size:clamp(.78rem,.28vmin + .72rem,.88rem);
}
}
@media (min-aspect-ratio: 21/9){
.hero{
min-height:min(100svh,960px);
}
.hero__content,
.hero .container.hero__content{
padding-top:clamp(96px,11svh,118px);
padding-bottom:clamp(24px,5svh,40px);
}
.hero__title strong{
font-size:clamp(2.65rem,4.4vmin + 1.05rem,5.15rem);
max-width:26ch;
}
.hero__subtitle{
max-width:min(44rem,50vw);
font-size:clamp(1.02rem,.4vmin + .9rem,1.22rem);
}
.hero__meta{
max-width:min(54rem,56vw);
font-size:clamp(.76rem,.26vmin + .7rem,.86rem);
}
.hero__media::after{
background:linear-gradient(90deg,rgba(6,19,34,.62) 0%,rgba(6,19,34,.42) 32%,rgba(6,19,34,.12) 62%,rgba(6,19,34,.22) 100%);
}
}
@media (max-width:980px){
.hero{
min-height:min(100svh,920px);
}
.hero__content,
.hero .container.hero__content{
max-width:100%;
padding-top:118px;
padding-bottom:42px;
}
.hero__title strong{
max-width:26ch;
}
.hero__subtitle{
max-width:min(42rem,92vw);
}
.hero__meta{
max-width:min(54rem,94vw);
}
.trust-bar__inner{
grid-template-columns:repeat(2,minmax(0,1fr));
row-gap:18px;
}
}
@media (max-width:768px){
.header__inner{
min-height:74px;
}
.logo__mark{
max-height:46px;
}
.hero{
min-height:min(100svh,820px);
}
.hero__content,
.hero .container.hero__content{
padding-top:104px;
padding-bottom:clamp(28px,8vmin,40px);
}
.hero__title strong{
font-size:clamp(2.05rem,7vw,3.15rem);
max-width:22ch;
}
.hero__subtitle{
font-size:.94rem;
line-height:1.62;
margin-bottom:16px;
}
.hero__actions{
gap:10px;
margin-bottom:0;
}
.hero__actions .btn{
width:min(320px,100%);
}
.trust-bar{
padding:14px 0;
}
.trust-bar__inner{
grid-template-columns:repeat(2,minmax(0,1fr));
gap:14px 10px;
}
.trust-item{
padding:0 8px;
}
.trust-num{
font-size:1.45rem;
}
.trust-item span:last-child{
font-size:.68rem;
letter-spacing:.1em;
}
}

/* === HOME INTRO PREMIUM REDESIGN === */
.home-intro {
    background: radial-gradient(circle at 0% 0%, rgba(200, 169, 106, 0.08) 0%, rgba(200, 169, 106, 0) 50%), linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%) !important;
    overflow: visible !important;
    padding: 110px 0 !important;
}
.home-intro__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.home-intro__visual {
    position: relative;
    padding: 20px 0;
}
.home-intro__images {
    position: relative;
    height: 620px;
    display: flex;
    align-items: center;
}
.home-intro__images .img-main {
    position: absolute;
    top: 0;
    right: 40px;
    width: 75%;
    height: 82%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 48px rgba(16, 42, 67, 0.12);
    z-index: 1;
}
.home-intro__images .img-sub {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 48%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 24px 54px rgba(16, 42, 67, 0.16);
    border: 6px solid #FAFAF8;
    z-index: 2;
}
.home-intro__experience-badge {
    position: absolute;
    bottom: 50px;
    right: 0;
    background: #fff;
    padding: 18px 24px;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(16, 42, 67, 0.12);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 16px;
}
.home-intro__experience-badge .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--c-accent);
    line-height: 1;
}
.home-intro__experience-badge .text {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-primary);
    line-height: 1.4;
}
.home-intro__content {
    display: flex;
    flex-direction: column;
}
.section-eyebrow-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.section-eyebrow-line {
    width: 48px;
    height: 2px;
    background: var(--c-accent);
}
.home-intro__copy {
    padding: 0 !important;
    background: none !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}
.home-intro__copy::before {
    display: none !important;
}
.home-intro__copy .section-eyebrow {
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.2em !important;
    color: var(--c-accent) !important;
}
.home-intro__copy .section-title {
    max-width: 100% !important;
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(2.4rem, 4vw, 3.2rem) !important;
    line-height: 1.1 !important;
    color: var(--c-primary) !important;
    margin-bottom: 28px !important;
}
.home-intro__text {
    display: grid !important;
    gap: 16px !important;
    padding: 0 !important;
    margin: 0 0 36px !important;
    background: none !important;
    border: 0 !important;
    box-shadow: none !important;
}
.home-intro__text::before, .home-intro__text::after {
    display: none !important;
}
.home-intro__text p {
    font-size: 1.05rem !important;
    line-height: 1.85 !important;
    color: var(--c-text) !important;
    max-width: 100% !important;
    padding: 0 !important;
}
.home-intro__text .intro-lead {
    font-size: 1.25rem !important;
    color: var(--c-primary) !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
}
.home-intro__text p:first-child::first-letter {
    display: inline !important;
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
    float: none !important;
    margin: 0 !important;
}
.home-intro__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
    padding-top: 36px;
    border-top: 1px solid rgba(16, 42, 67, 0.1);
}
.intro-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.intro-feature__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #F7F1E9;
    color: var(--c-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.intro-feature__icon svg {
    width: 24px;
    height: 24px;
}
.intro-feature__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.intro-feature__text strong {
    font-size: 1rem;
    font-weight: 750;
    color: var(--c-primary);
    line-height: 1.3;
}
.intro-feature__text span {
    font-size: 0.88rem;
    color: var(--c-text-light);
    line-height: 1.5;
}
.home-intro__action {
    display: flex;
}
.home-intro__action .btn {
    padding: 16px 32px;
    font-size: 0.85rem;
}
@media (max-width: 1024px) {
    .home-intro__layout {
        gap: 48px;
    }
    .home-intro__images {
        height: 500px;
    }
    .home-intro__features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .home-intro {
        padding: 72px 0 !important;
    }
    .home-intro__layout {
        grid-template-columns: 1fr;
        gap: 54px;
    }
    .home-intro__visual {
        padding-right: 0;
        max-width: 500px;
        margin: 0 auto;
    }
    .home-intro__images {
        height: 420px;
    }
    .home-intro__images .img-main {
        width: 90%;
        height: 90%;
    }
    .home-intro__images .img-sub {
        width: 60%;
        height: 50%;
    }
    .home-intro__experience-badge {
        top: -20px;
        right: 0;
        padding: 16px;
        gap: 12px;
    }
    .home-intro__experience-badge .num {
        font-size: 2.2rem;
    }
    .home-intro__experience-badge .text {
        font-size: 0.75rem;
    }
    .home-intro__copy .section-title {
        font-size: 2.2rem !important;
    }
    .home-intro__text p {
        font-size: 1rem !important;
    }
    .home-intro__text .intro-lead {
        font-size: 1.1rem !important;
    }
}

/* === SPECIAL COLLECTIONS — desktop one row, titles one line === */
@media (min-width: 1024px) {
    .collections-home .collections-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: clamp(10px, 1.2vw, 18px);
    }
    .collections-home .collection-card {
        min-width: 0;
        padding: 18px 16px;
    }
    .collections-home .collection-card h3 {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        font-size: clamp(0.98rem, 0.3vw + 0.9rem, 1.1rem);
        line-height: 1.3;
        letter-spacing: -0.02em;
    }
    .collections-home .collection-card p {
        font-size: 0.9rem;
        line-height: 1.65;
    }
    .collections-home .collection-card a {
        font-size: 0.82rem;
    }
}
@media (min-width: 641px) and (max-width: 1023px) {
    .collections-home .collections-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .collections-home .collection-card h3 {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }
}

/* === BLOG PREVIEW COMPACT === */
.blog-preview{
padding-top:62px!important;
padding-bottom:62px!important;
}
.blog-preview .section-header{
text-align:center!important;
max-width:760px!important;
margin:0 auto 28px!important;
}
.blog-preview .section-title{
font-size:clamp(1.75rem,2.6vw,2.15rem)!important;
text-transform:none!important;
}
.blog-preview .section-subtitle{
max-width:640px!important;
margin:0 auto!important;
line-height:1.55!important;
color:var(--c-text-light)!important;
display:-webkit-box!important;
-webkit-line-clamp:2!important;
-webkit-box-orient:vertical!important;
overflow:hidden!important;
}
.blog-preview .blog-grid{
display:grid!important;
grid-template-columns:repeat(3,minmax(0,1fr))!important;
gap:18px!important;
max-width:1120px!important;
}
.blog-preview .blog-card{
display:flex!important;
flex-direction:column!important;
align-items:stretch!important;
gap:0!important;
overflow:hidden!important;
min-height:0!important;
border-radius:8px!important;
}
.blog-preview .blog-card__img{
height:150px!important;
min-height:150px!important;
border-radius:0!important;
margin:0!important;
align-self:stretch!important;
}
.blog-preview .blog-card__img img{
display:block!important;
width:100%!important;
height:100%!important;
object-fit:cover!important;
object-position:center!important;
transform:scale(1.05)!important;
}
.blog-preview .blog-card:hover .blog-card__img img{
transform:scale(1.1)!important;
}
.blog-preview .blog-card__content{
justify-content:flex-start!important;
align-items:flex-start!important;
padding:16px 18px 18px!important;
}
.blog-preview .blog-card__tag{
margin-bottom:8px!important;
font-size:.66rem!important;
padding:4px 10px!important;
}
.blog-preview .blog-card__content h3{
font-size:1.08rem!important;
margin-bottom:8px!important;
line-height:1.25!important;
-webkit-line-clamp:2!important;
min-height:2.5em!important;
}
.blog-preview .blog-card__content p{
font-size:.84rem!important;
line-height:1.6!important;
margin:0!important;
-webkit-line-clamp:2!important;
max-width:none!important;
}
.blog-preview .blog-card[hidden]{
display:none!important;
}
@media(max-width:900px){
.blog-preview .blog-grid{
grid-template-columns:1fr!important;
max-width:680px!important;
}
.blog-preview .blog-card{
display:grid!important;
grid-template-columns:150px minmax(0,1fr)!important;
}
.blog-preview .blog-card__img{
height:100%!important;
min-height:150px!important;
}
}
@media(max-width:560px){
.blog-preview .blog-card{
grid-template-columns:1fr!important;
}
.blog-preview .blog-card__img{
height:160px!important;
min-height:160px!important;
}
.blog-preview .blog-card__content{
padding:16px!important;
}
}

/* === CTA AND DEALS FINAL REDESIGN === */
.cta-banner{
position:relative!important;
padding:0!important;
min-height:360px!important;
display:flex!important;
align-items:center!important;
overflow:hidden!important;
background:
linear-gradient(90deg,rgba(8,22,39,.82) 0%,rgba(8,22,39,.58) 46%,rgba(8,22,39,.18) 100%),
url('https://images.unsplash.com/photo-1528127269322-539801943592?auto=format&fit=crop&q=80&w=2400') center/cover!important;
color:#fff!important;
text-align:left!important;
}
.cta-banner::after{
content:''!important;
position:absolute!important;
left:0!important;
right:0!important;
bottom:0!important;
height:1px!important;
background:linear-gradient(90deg,transparent,rgba(200,169,106,.7),transparent)!important;
}
.cta-banner__inner{
position:relative!important;
z-index:1!important;
max-width:1200px!important;
padding:72px 24px!important;
border-radius:0!important;
background:transparent!important;
box-shadow:none!important;
}
.cta-banner__inner h2{
max-width:680px!important;
margin:0 0 16px!important;
font-family:'Playfair Display',serif!important;
font-size:2.8rem!important;
font-weight:700!important;
line-height:1.08!important;
letter-spacing:0!important;
color:#fff!important;
}
.cta-banner__inner p{
max-width:620px!important;
margin:0 0 26px!important;
font-size:1.05rem!important;
line-height:1.75!important;
color:rgba(255,255,255,.86)!important;
opacity:1!important;
}
.cta-banner__inner .btn{
border-radius:8px!important;
box-shadow:0 18px 38px rgba(0,0,0,.22)!important;
}
.deal-section{
padding:76px 0!important;
background:linear-gradient(180deg,#fff 0%,#f5f1eb 100%)!important;
color:var(--c-text)!important;
}
.deal-section__inner{
display:grid!important;
grid-template-columns:minmax(0,.88fr) minmax(0,1.12fr)!important;
gap:52px!important;
align-items:center!important;
}
.deal-section__copy{
position:relative!important;
padding-left:24px!important;
border-left:2px solid var(--c-accent)!important;
}
.deal-section__copy .section-eyebrow{
margin-bottom:14px!important;
color:var(--c-accent)!important;
font-size:.72rem!important;
font-weight:800!important;
letter-spacing:.16em!important;
text-transform:uppercase!important;
}
.deal-section__copy .section-title{
max-width:520px!important;
margin:0 0 16px!important;
font-family:'Playfair Display',serif!important;
font-size:2.55rem!important;
font-weight:700!important;
line-height:1.08!important;
letter-spacing:0!important;
color:var(--c-primary)!important;
}
.deal-section__copy .section-subtitle{
max-width:520px!important;
font-size:1rem!important;
line-height:1.85!important;
color:#536173!important;
}
.deal-section__panel{
position:relative!important;
padding:26px!important;
border-radius:8px!important;
background:#fff!important;
border:1px solid rgba(11,31,58,.08)!important;
box-shadow:0 24px 56px rgba(11,31,58,.1)!important;
overflow:hidden!important;
}
.deal-section__panel::before{
content:'Private Vietnam Offers'!important;
display:block!important;
margin-bottom:18px!important;
font-size:.72rem!important;
font-weight:800!important;
letter-spacing:.18em!important;
text-transform:uppercase!important;
color:var(--c-accent)!important;
}
.deal-points{
display:grid!important;
gap:12px!important;
margin:0 0 22px!important;
padding:0!important;
list-style:none!important;
}
.deal-points li{
position:relative!important;
display:flex!important;
align-items:flex-start!important;
gap:12px!important;
padding:16px 18px!important;
border-radius:8px!important;
background:#fafafa!important;
border:1px solid rgba(11,31,58,.08)!important;
color:#334155!important;
font-size:.96rem!important;
line-height:1.55!important;
}
.deal-points li::before{
content:'✓'!important;
display:inline-flex!important;
align-items:center!important;
justify-content:center!important;
flex:0 0 24px!important;
width:24px!important;
height:24px!important;
border-radius:50%!important;
background:#f5f1eb!important;
color:var(--c-accent)!important;
font-weight:900!important;
font-size:.78rem!important;
}
.deal-section__btn{
display:inline-flex!important;
align-items:center!important;
justify-content:center!important;
min-height:48px!important;
padding:0 22px!important;
border-radius:8px!important;
background:var(--c-primary)!important;
border-color:var(--c-primary)!important;
color:#fff!important;
box-shadow:0 14px 28px rgba(11,31,58,.16)!important;
}
.deal-section__btn:hover{
background:var(--c-accent)!important;
border-color:var(--c-accent)!important;
color:#fff!important;
transform:translateY(-1px)!important;
}
@media(max-width:980px){
.cta-banner{
min-height:320px!important;
}
.cta-banner__inner h2{
font-size:2.2rem!important;
}
.deal-section__inner{
grid-template-columns:1fr!important;
gap:28px!important;
}
}
@media(max-width:640px){
.cta-banner__inner{
padding:54px 20px!important;
}
.cta-banner__inner h2{
font-size:1.9rem!important;
}
.deal-section{
padding:54px 0!important;
}
.deal-section__copy{
padding-left:16px!important;
}
.deal-section__copy .section-title{
font-size:2rem!important;
}
.deal-section__panel{
padding:18px!important;
}
}

/* === BUTTON HOVER POLISH === */
.btn{
transition:background-color .2s ease,border-color .2s ease,color .2s ease,box-shadow .2s ease,transform .2s ease!important;
}
.btn--primary,
.hero__actions .btn--primary,
.cta-banner__inner .btn--primary{
background:linear-gradient(135deg,#c08a45 0%,#a66f34 100%)!important;
border:1px solid rgba(255,255,255,.18)!important;
color:#fff!important;
box-shadow:0 12px 26px rgba(61,39,18,.22)!important;
}
.btn--primary:hover,
.hero__actions .btn--primary:hover,
.cta-banner__inner .btn--primary:hover{
background:linear-gradient(135deg,#d09a54 0%,#b87b3b 100%)!important;
border-color:rgba(255,255,255,.28)!important;
color:#fff!important;
transform:translateY(-1px)!important;
box-shadow:0 16px 32px rgba(61,39,18,.28)!important;
}
.btn--outline:hover,
.section-more .btn--outline:hover{
background:var(--c-primary)!important;
border-color:var(--c-primary)!important;
color:#fff!important;
transform:translateY(-1px)!important;
box-shadow:0 12px 26px rgba(11,31,58,.14)!important;
}
.cta-banner__inner .btn--primary{
border-radius:8px!important;
}
.deal-section__btn:hover{
background:#c08a45!important;
border-color:#c08a45!important;
box-shadow:0 16px 32px rgba(61,39,18,.18)!important;
}

/* === FOOTER CONSOLIDATED REDESIGN === */
.footer-trust{
display:none!important;
}
.footer{
padding-top:46px!important;
background:linear-gradient(180deg,#0b1f3a 0%,#07182c 100%)!important;
color:rgba(255,255,255,.78)!important;
}
.footer .footer-featured{
display:grid!important;
grid-template-columns:auto minmax(0,1fr)!important;
align-items:center!important;
gap:22px!important;
padding:34px 24px 28px!important;
border-bottom:1px solid rgba(255,255,255,.09)!important;
}
.footer-featured__eyebrow{
margin:0!important;
color:#d5b46f!important;
font-size:.72rem!important;
font-weight:800!important;
letter-spacing:.16em!important;
text-transform:uppercase!important;
white-space:nowrap!important;
}
.footer-featured__logos{
display:flex!important;
flex-wrap:wrap!important;
gap:8px!important;
}
.footer-featured__logos span{
display:inline-flex!important;
align-items:center!important;
min-height:30px!important;
padding:6px 10px!important;
border-radius:999px!important;
border:1px solid rgba(255,255,255,.13)!important;
background:rgba(255,255,255,.045)!important;
color:rgba(255,255,255,.76)!important;
font-size:.76rem!important;
line-height:1!important;
}
.footer__inner{
display:grid!important;
grid-template-columns:minmax(260px,1.15fr) minmax(150px,.72fr) minmax(150px,.72fr) minmax(240px,1fr)!important;
gap:34px!important;
padding-top:0!important;
padding-bottom:42px!important;
}
.footer__brand-card{
padding:0!important;
border:0!important;
border-radius:0!important;
background:transparent!important;
box-shadow:none!important;
}
.footer__brand-title{
align-items:center!important;
gap:12px!important;
margin-bottom:12px!important;
}
.footer__brand-title span{
font-size:1.32rem!important;
line-height:1.15!important;
}
.footer__brand-logo{
width:62px!important;
height:62px!important;
}
.footer__brand-tagline{
max-width:280px!important;
margin:0 0 8px!important;
font-size:.95rem!important;
line-height:1.6!important;
color:#fff!important;
}
.footer__operated{
max-width:300px!important;
font-size:.86rem!important;
line-height:1.65!important;
color:rgba(255,255,255,.62)!important;
opacity:1!important;
}
.footer__brand-badges{
gap:8px!important;
margin-top:16px!important;
}
.footer__brand-badges span{
padding:6px 10px!important;
border-radius:999px!important;
background:rgba(255,255,255,.06)!important;
border:1px solid rgba(255,255,255,.1)!important;
color:rgba(255,255,255,.74)!important;
font-size:.72rem!important;
letter-spacing:0!important;
}
.footer__brand-cta{
margin-top:18px!important;
padding:10px 16px!important;
border-radius:8px!important;
background:#c08a45!important;
color:#fff!important;
box-shadow:none!important;
}
.footer__brand-cta:hover{
background:#d09a54!important;
}
.footer h4{
margin:0 0 14px!important;
font-family:'Playfair Display',serif!important;
font-size:1.02rem!important;
font-weight:700!important;
letter-spacing:0!important;
text-transform:none!important;
color:#fff!important;
}
.footer__links,
.footer__destinations,
.footer__contact{
padding-top:0!important;
}
.footer__links a,
.footer__destinations a{
display:block!important;
padding:6px 0!important;
font-size:.9rem!important;
line-height:1.45!important;
color:rgba(255,255,255,.72)!important;
opacity:1!important;
}
.footer__links a:hover,
.footer__destinations a:hover{
color:#d5b46f!important;
}
.footer__contact-list{
gap:10px!important;
}
.footer__contact-item{
padding:12px 14px!important;
border-radius:8px!important;
background:rgba(255,255,255,.045)!important;
border:1px solid rgba(255,255,255,.09)!important;
}
.footer__contact-item:hover{
background:rgba(255,255,255,.065)!important;
border-color:rgba(213,180,111,.28)!important;
}
.footer__contact-label{
color:#d5b46f!important;
font-size:.68rem!important;
letter-spacing:.12em!important;
}
.footer__contact-item strong{
font-size:.9rem!important;
color:#fff!important;
}
.footer__bottom{
margin-top:0!important;
padding:18px 0!important;
border-top:1px solid rgba(255,255,255,.08)!important;
background:rgba(0,0,0,.12)!important;
}
@media(max-width:640px){
.featured-trust__inner{flex-direction:column;gap:0}
.featured-trust__sep{width:80px;height:1px;margin:12px 0}
.featured-trust__label{min-width:unset}
}
@media(max-width:1100px){
.footer .footer-featured{
grid-template-columns:1fr!important;
gap:12px!important;
}
.footer__inner{
grid-template-columns:1fr 1fr!important;
}
}
@media(max-width:680px){
.footer .footer-featured{
padding:28px 20px 22px!important;
}
.footer__inner{
grid-template-columns:1fr!important;
gap:26px!important;
padding-top:34px!important;
}
}

/* === FOOTER FINAL VISUAL POLISH === */
.footer{
position:relative!important;
padding-top:54px!important;
background:
linear-gradient(180deg,rgba(7,26,47,.9) 0%,rgba(4,17,33,.97) 100%),
url("data:image/svg+xml,%3Csvg width='1600' height='620' viewBox='0 0 1600 620' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1600' height='620' fill='none'/%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.16' stroke-width='1.25'%3E%3Cellipse cx='800' cy='310' rx='690' ry='238'/%3E%3Cellipse cx='800' cy='310' rx='520' ry='180'/%3E%3Cellipse cx='800' cy='310' rx='330' ry='114'/%3E%3Cpath d='M115 310h1370M800 75v470M410 112c82 122 82 274 0 396M1190 112c-82 122-82 274 0 396'/%3E%3Cpath d='M70 354c150-86 293-120 438-88 160 35 230 127 392 121 183-7 270-126 443-105 67 8 128 31 190 70'/%3E%3Cpath d='M110 236c130-62 248-78 361-45 137 40 203 123 352 119 158-4 243-101 396-82 95 12 180 58 270 128'/%3E%3C/g%3E%3Cg fill='%23c8a96a' fill-opacity='.9'%3E%3Ccircle cx='328' cy='238' r='4'/%3E%3Ccircle cx='607' cy='353' r='4'/%3E%3Ccircle cx='930' cy='376' r='4'/%3E%3Ccircle cx='1240' cy='282' r='4'/%3E%3Ccircle cx='1438' cy='376' r='4'/%3E%3C/g%3E%3Cg stroke='%23c8a96a' stroke-opacity='.36' stroke-width='1' fill='none'%3E%3Cpath d='M328 238C454 298 507 336 607 353'/%3E%3Cpath d='M607 353C730 391 815 398 930 376'/%3E%3Cpath d='M930 376C1059 357 1140 306 1240 282'/%3E%3Cpath d='M1240 282C1332 299 1385 337 1438 376'/%3E%3C/g%3E%3C/svg%3E") center/cover!important;
overflow:hidden!important;
}
.footer::before{
content:''!important;
position:absolute!important;
inset:0!important;
height:auto!important;
background:
linear-gradient(180deg,rgba(200,169,106,.36) 0,rgba(200,169,106,0) 1px),
radial-gradient(ellipse at 50% 10%,rgba(255,255,255,.08),transparent 34%),
linear-gradient(90deg,rgba(255,255,255,.014) 0 1px,transparent 1px)!important;
background-size:auto,auto,88px 88px!important;
pointer-events:none!important;
}
.footer::after{
content:''!important;
position:absolute!important;
left:0!important;
right:0!important;
bottom:0!important;
height:160px!important;
background:linear-gradient(180deg,transparent,rgba(0,0,0,.26))!important;
pointer-events:none!important;
}
.footer__inner{
position:relative!important;
z-index:2!important;
grid-template-columns:minmax(280px,1.2fr) minmax(140px,.62fr) minmax(150px,.66fr) minmax(250px,.95fr)!important;
gap:44px!important;
padding-bottom:44px!important;
}
.footer__brand-title{
margin-bottom:18px!important;
}
.footer__brand-title span{
font-family:'Playfair Display',serif!important;
font-size:1.42rem!important;
font-weight:700!important;
}
.footer__brand-logo{
width:56px!important;
height:56px!important;
filter:drop-shadow(0 10px 24px rgba(0,0,0,.18))!important;
}
.footer__brand-tagline{
font-size:.98rem!important;
font-weight:700!important;
line-height:1.55!important;
}
.footer__operated{
margin-top:12px!important;
}
.footer__brand-badges{
max-width:300px!important;
}
.footer__brand-badges span{
background:rgba(255,255,255,.04)!important;
border-color:rgba(255,255,255,.12)!important;
}
.footer__brand-cta{
min-height:44px!important;
padding:0 18px!important;
font-weight:800!important;
}
.footer h4{
position:relative!important;
display:inline-flex!important;
margin-bottom:20px!important;
padding-bottom:10px!important;
font-size:1rem!important;
}
.footer h4::after{
content:''!important;
position:absolute!important;
left:0!important;
bottom:0!important;
width:34px!important;
height:1px!important;
background:#c08a45!important;
}
.footer__links a,
.footer__destinations a{
padding:5px 0!important;
font-size:.9rem!important;
}
.footer__links a:hover,
.footer__destinations a:hover{
padding-left:4px!important;
}
.footer__contact-list{
gap:8px!important;
}
.footer__contact-item{
padding:11px 13px!important;
background:rgba(255,255,255,.035)!important;
}
.footer__contact-label{
margin-bottom:2px!important;
}
.footer__bottom{
font-size:.8rem!important;
color:rgba(255,255,255,.46)!important;
}
@media(max-width:1100px){
.footer__inner{
grid-template-columns:1fr 1fr!important;
gap:34px!important;
}
}
@media(max-width:680px){
.footer{
padding-top:42px!important;
}
.footer__inner{
grid-template-columns:1fr!important;
gap:28px!important;
}
.footer__brand-title span{
font-size:1.3rem!important;
}
}

/* === FOOTER BRAND COLUMN POLISH === */
.footer__brand{
max-width:340px!important;
}
.footer__brand-card{
position:relative!important;
padding:22px!important;
border:1px solid rgba(255,255,255,.08)!important;
border-radius:8px!important;
background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.018))!important;
}
.footer__brand-title{
display:grid!important;
grid-template-columns:56px minmax(0,1fr)!important;
align-items:center!important;
gap:14px!important;
margin-bottom:18px!important;
}
.footer__brand-logo{
width:56px!important;
height:auto!important;
max-height:42px!important;
object-fit:contain!important;
}
.footer__brand-title span{
font-size:1.5rem!important;
line-height:1.08!important;
letter-spacing:0!important;
}
.footer__brand-tagline{
margin:0!important;
padding-top:16px!important;
border-top:1px solid rgba(255,255,255,.08)!important;
font-size:.98rem!important;
line-height:1.55!important;
}
.footer__operated{
margin:10px 0 0!important;
font-size:.88rem!important;
}
.footer__brand-badges{
display:grid!important;
grid-template-columns:repeat(2,minmax(0,max-content))!important;
gap:8px!important;
margin-top:18px!important;
}
.footer__brand-badges span{
justify-content:center!important;
padding:7px 11px!important;
font-size:.72rem!important;
font-weight:700!important;
}
.footer__brand-cta{
width:max-content!important;
margin-top:18px!important;
border:1px solid rgba(255,255,255,.18)!important;
}
@media(max-width:680px){
.footer__brand{
max-width:none!important;
}
.footer__brand-card{
padding:18px!important;
}
.footer__brand-badges{
grid-template-columns:repeat(2,minmax(0,1fr))!important;
}
.footer__brand-cta{
width:100%!important;
}
}

/* === FINAL FOOTER SIMPLIFICATION === */
.footer{
background:#0b1f33!important;
}
.footer::before,
.footer::after{
opacity:.08!important;
}
.footer__brands{
grid-template-columns:minmax(190px,.55fr) minmax(0,1.45fr)!important;
gap:32px!important;
padding-top:36px!important;
padding-bottom:30px!important;
border-bottom:1px solid rgba(255,255,255,.08)!important;
}
.footer__brands-copy span{
font-size:2rem!important;
}
.footer__brands-copy p{
max-width:250px!important;
font-size:.9rem!important;
color:rgba(255,255,255,.58)!important;
}
.footer__brands-grid{
gap:12px!important;
align-items:center!important;
}
.footer-brand-link{
min-height:76px!important;
padding:14px 18px!important;
background:rgba(255,255,255,.045)!important;
border:1px solid rgba(255,255,255,.1)!important;
box-shadow:none!important;
}
.footer-brand-link::after{
display:none!important;
}
.footer-brand-link--avt img{
max-height:42px!important;
}
.footer-brand-link--vtd img{
max-height:52px!important;
max-width:210px!important;
}
.footer-brand-link--stay img{
max-height:54px!important;
}
.footer-brand-link:hover{
transform:none!important;
background:rgba(255,255,255,.065)!important;
border-color:rgba(214,173,104,.24)!important;
}
.footer__inner{
grid-template-columns:minmax(260px,1fr) minmax(140px,.58fr) minmax(150px,.62fr) minmax(230px,.86fr)!important;
gap:34px!important;
padding-top:36px!important;
padding-bottom:36px!important;
}
.footer__brand-logo{
max-width:230px!important;
max-height:78px!important;
}
.footer__brand-tagline{
max-width:310px!important;
font-size:.94rem!important;
line-height:1.55!important;
}
.footer__operated{
max-width:300px!important;
font-size:.84rem!important;
}
.footer__brand-badges{
gap:6px!important;
margin-top:14px!important;
}
.footer__brand-badges span{
padding:6px 9px!important;
background:transparent!important;
font-size:.7rem!important;
}
.footer__brand-cta{
margin-top:16px!important;
padding:10px 14px!important;
background:#b98035!important;
}
.footer h4{
margin-bottom:14px!important;
font-size:1rem!important;
}
.footer h4::after{
width:26px!important;
height:1px!important;
margin-top:9px!important;
}
.footer__links a,
.footer__destinations a{
padding:5px 0!important;
font-size:.88rem!important;
color:rgba(255,255,255,.68)!important;
}
.footer__contact-list{
gap:8px!important;
}
.footer__contact-item{
padding:11px 12px!important;
background:transparent!important;
border-color:rgba(255,255,255,.1)!important;
}
.footer__contact-item:hover{
background:rgba(255,255,255,.04)!important;
}
.footer__contact-label{
font-size:.64rem!important;
}
.footer__contact-item strong{
font-size:.88rem!important;
}
@media(max-width:1100px){
.footer__brands{
grid-template-columns:1fr!important;
}
.footer__brands-copy p{
max-width:420px!important;
}
.footer__inner{
grid-template-columns:1fr 1fr!important;
}
}
@media(max-width:760px){
.footer__brands{
gap:18px!important;
}
.footer__brands-grid{
grid-template-columns:1fr!important;
}
.footer-brand-link{
min-height:70px!important;
}
.footer__inner{
grid-template-columns:1fr!important;
}
}

/* === EOF SINGLE-ROW SUBPAGE HEADER === */
@media(min-width:981px){
.site-header:not(.site-header--overlay) .header-promo,
.site-header--overlay.is-solid .header-promo{
display:block!important;
}
.site-header:not(.site-header--overlay) .header__inner,
.site-header--overlay.is-solid .header__inner{
display:flex!important;
flex-wrap:nowrap!important;
align-items:center!important;
justify-content:space-between!important;
min-height:82px!important;
gap:18px!important;
padding-top:0!important;
padding-bottom:0!important;
}
.site-header:not(.site-header--overlay) .logo,
.site-header--overlay.is-solid .logo{
flex:0 0 auto!important;
min-width:0!important;
}
.site-header:not(.site-header--overlay) .logo__mark,
.site-header--overlay.is-solid .logo__mark{
max-width:190px!important;
max-height:62px!important;
}
.site-header:not(.site-header--overlay) .nav,
.site-header--overlay.is-solid .nav{
display:flex!important;
flex:1 1 auto!important;
min-width:0!important;
align-items:center!important;
justify-content:flex-end!important;
gap:10px!important;
margin-left:18px!important;
}
.site-header:not(.site-header--overlay) .nav__links,
.site-header--overlay.is-solid .nav__links{
display:flex!important;
flex:0 1 auto!important;
flex-wrap:nowrap!important;
align-items:center!important;
width:auto!important;
min-width:0!important;
gap:5px!important;
padding:7px 9px!important;
}
.site-header:not(.site-header--overlay) .nav__item,
.site-header--overlay.is-solid .nav__item{
flex:0 0 auto!important;
width:auto!important;
}
.site-header:not(.site-header--overlay) .nav__link,
.site-header:not(.site-header--overlay) .nav a,
.site-header--overlay.is-solid .nav__link,
.site-header--overlay.is-solid .nav a{
white-space:nowrap!important;
width:auto!important;
justify-content:center!important;
font-size:.76rem!important;
padding:0 9px!important;
}
.site-header:not(.site-header--overlay) .nav__cta,
.site-header--overlay.is-solid .nav__cta{
flex:0 0 auto!important;
white-space:nowrap!important;
width:auto!important;
min-width:max-content!important;
padding:0 15px!important;
}
}

/* === FINAL RESPONSIVE HOME HERO === */
.hero{
min-height:86svh!important;
display:flex!important;
align-items:flex-end!important;
justify-content:center!important;
overflow:hidden!important;
background:#07121f!important;
}
.hero__slide{
background-size:cover!important;
background-repeat:no-repeat!important;
background-position:center 54%!important;
transform:scale(1.2)!important;
transform-origin:center center!important;
}
.hero__media::after{
background:
linear-gradient(90deg,rgba(5,15,26,.54) 0%,rgba(5,15,26,.32) 38%,rgba(5,15,26,.16) 64%,rgba(5,15,26,.26) 100%),
linear-gradient(180deg,rgba(5,15,26,.38) 0%,rgba(5,15,26,.05) 42%,rgba(5,15,26,.46) 100%)!important;
}
.hero__overlay{
background:linear-gradient(180deg,rgba(5,15,26,.04) 0%,rgba(5,15,26,.08) 45%,rgba(5,15,26,.36) 100%)!important;
}
.hero .container.hero__content,
.hero__content{
width:100%!important;
max-width:1120px!important;
margin:0 auto!important;
padding:132px 20px 72px!important;
display:flex!important;
flex-direction:column!important;
align-items:center!important;
justify-content:flex-end!important;
text-align:center!important;
color:#fff!important;
}
.hero__panel{
display:contents!important;
padding:0!important;
border:0!important;
border-radius:0!important;
background:transparent!important;
box-shadow:none!important;
backdrop-filter:none!important;
}
.hero .container.hero__content > *{
max-width:100%!important;
}
.hero__eyebrow{
display:block!important;
width:auto!important;
margin:0 0 18px!important;
padding:0!important;
border:0!important;
border-radius:0!important;
background:transparent!important;
font-size:.84rem!important;
line-height:1.5!important;
font-weight:700!important;
letter-spacing:.12em!important;
text-transform:uppercase!important;
color:rgba(255,255,255,.88)!important;
text-shadow:0 10px 24px rgba(0,0,0,.38)!important;
}
.hero__title{
width:100%!important;
max-width:850px!important;
margin:0 auto 22px!important;
display:flex!important;
flex-direction:column!important;
align-items:center!important;
gap:10px!important;
text-shadow:0 18px 42px rgba(0,0,0,.42)!important;
}
.hero__title span{
font-size:.95rem!important;
line-height:1.4!important;
font-weight:700!important;
letter-spacing:.1em!important;
text-transform:uppercase!important;
color:#f1d3a2!important;
}
.hero__title strong{
max-width:760px!important;
font-size:4.25rem!important;
line-height:.98!important;
letter-spacing:0!important;
color:#fff!important;
}
.hero__subtitle{
max-width:680px!important;
margin:0 auto 30px!important;
font-size:1.12rem!important;
line-height:1.7!important;
font-weight:600!important;
letter-spacing:0!important;
color:rgba(255,255,255,.9)!important;
text-shadow:0 12px 30px rgba(0,0,0,.45)!important;
}
.hero__actions{
width:auto!important;
margin:0 0 26px!important;
display:flex!important;
justify-content:center!important;
align-items:center!important;
gap:14px!important;
}
.hero .hero__actions .btn{
min-width:204px!important;
min-height:54px!important;
padding:15px 28px!important;
border-radius:8px!important;
font-size:.9rem!important;
letter-spacing:0!important;
box-shadow:0 18px 40px rgba(0,0,0,.26)!important;
}
.hero .hero__actions .btn--outline{
background:rgba(255,255,255,.08)!important;
border-color:rgba(255,255,255,.54)!important;
color:#fff!important;
backdrop-filter:blur(4px)!important;
}
.hero__highlights,
.hero-highlight{
display:none!important;
}
.hero__meta{
width:auto!important;
max-width:100%!important;
margin:0 auto!important;
padding:17px 0 0!important;
border-top:1px solid rgba(255,255,255,.26)!important;
display:flex!important;
flex-wrap:wrap!important;
align-items:center!important;
justify-content:center!important;
gap:10px 22px!important;
background:transparent!important;
}
.hero__meta span{
display:inline-flex!important;
align-items:center!important;
justify-content:center!important;
min-height:0!important;
padding:0!important;
border:0!important;
border-radius:0!important;
background:transparent!important;
box-shadow:none!important;
font-size:.8rem!important;
line-height:1.45!important;
font-weight:700!important;
letter-spacing:.08em!important;
text-transform:uppercase!important;
color:rgba(255,255,255,.82)!important;
text-shadow:0 10px 24px rgba(0,0,0,.42)!important;
}
.hero__meta span+span::before{
content:""!important;
display:inline-block!important;
width:4px!important;
height:4px!important;
margin-right:22px!important;
border-radius:50%!important;
background:rgba(241,211,162,.82)!important;
}
@media(min-width:1440px){
.hero{
min-height:88svh!important;
}
.hero__slide{
background-position:center 56%!important;
}
.hero .container.hero__content,
.hero__content{
padding-bottom:82px!important;
}
}
@media(max-width:1180px){
.hero__slide{
background-position:center 52%!important;
}
.hero .container.hero__content,
.hero__content{
max-width:920px!important;
padding:120px 20px 58px!important;
}
.hero__title strong{
font-size:3.45rem!important;
max-width:720px!important;
}
}
@media(max-width:768px){
.hero{
min-height:82svh!important;
}
.hero__slide{
background-position:center center!important;
}
.hero .container.hero__content,
.hero__content{
max-width:100%!important;
padding:104px 16px 42px!important;
}
.hero__eyebrow{
font-size:.7rem!important;
margin-bottom:14px!important;
}
.hero__title{
max-width:360px!important;
margin-bottom:18px!important;
gap:8px!important;
}
.hero__title span{
font-size:.78rem!important;
}
.hero__title strong{
font-size:2.35rem!important;
line-height:1.02!important;
max-width:360px!important;
}
.hero__subtitle{
font-size:.98rem!important;
line-height:1.62!important;
margin-bottom:22px!important;
max-width:360px!important;
}
.hero__actions{
width:100%!important;
gap:10px!important;
margin-bottom:20px!important;
}
.hero .hero__actions .btn{
width:100%!important;
min-width:0!important;
min-height:50px!important;
padding:13px 16px!important;
}
.hero__meta{
gap:8px 14px!important;
padding-top:14px!important;
}
.hero__meta span{
font-size:.66rem!important;
letter-spacing:.06em!important;
}
.hero__meta span+span::before{
display:none!important;
}
}
@media(max-width:420px){
.hero__slide{
background-position:52% center!important;
}
.hero__title strong{
font-size:2.05rem!important;
}
.hero__subtitle{
font-size:.92rem!important;
}
}
/* === ABSOLUTE EOF HERO WIDTH AND CLIPPING FIX === */
.hero .container.hero__content,
.hero__content{
max-width:100%!important;
padding-left:clamp(18px,4vw,56px)!important;
padding-right:clamp(18px,4vw,56px)!important;
overflow:visible!important;
}
.hero__title{
width:min(1120px,calc(100vw - 48px))!important;
max-width:none!important;
overflow:visible!important;
}
.hero__title strong{
display:block!important;
width:100%!important;
max-width:none!important;
font-size:clamp(3rem,5vw,5.35rem)!important;
line-height:.96!important;
overflow:visible!important;
}
.hero__title::after{
width:min(100%,980px)!important;
max-width:calc(100vw - 64px)!important;
height:4px!important;
}
.hero__subtitle{
width:min(860px,calc(100vw - 64px))!important;
max-width:none!important;
}
@media(max-width:980px){
.hero__title{
width:min(760px,calc(100vw - 40px))!important;
}
.hero__title strong{
font-size:clamp(2.6rem,7.2vw,4.25rem)!important;
line-height:.98!important;
}
.hero__title::after{
width:min(100%,680px)!important;
}
}
@media(max-width:620px){
.hero__title{
width:calc(100vw - 28px)!important;
}
.hero__title strong{
font-size:clamp(1.9rem,9vw,2.85rem)!important;
line-height:1.02!important;
}
.hero__title::after{
width:100%!important;
max-width:calc(100vw - 36px)!important;
height:3px!important;
}
.hero__subtitle{
width:calc(100vw - 36px)!important;
font-size:.94rem!important;
}
}

/* === ABSOLUTE EOF RED BUTTONS AND HERO CENTERING === */
:root{
--c-accent:#d72035!important;
--c-accent-dark:#a80f22!important;
}
.hero .container.hero__content,
.hero__content{
left:auto!important;
right:auto!important;
margin-left:auto!important;
margin-right:auto!important;
align-items:center!important;
text-align:center!important;
}
.hero__kicker,
.hero__title,
.hero__subtitle,
.hero__actions{
margin-left:auto!important;
margin-right:auto!important;
text-align:center!important;
}
.hero__subtitle{
display:block!important;
width:auto!important;
max-width:min(860px,calc(100vw - 64px))!important;
padding-left:0!important;
padding-right:0!important;
}
.hero__title{
width:min(1040px,calc(100vw - 72px))!important;
}
.hero__title::after{
width:100%!important;
max-width:100%!important;
margin-left:auto!important;
margin-right:auto!important;
background:linear-gradient(90deg,transparent,#d72035 14%,#ffb3bd 50%,#d72035 86%,transparent)!important;
box-shadow:0 12px 34px rgba(215,32,53,.36)!important;
}
.hero .hero__actions{
gap:14px!important;
margin-top:0!important;
}
.hero .hero__actions .btn{
min-width:205px!important;
min-height:50px!important;
padding:13px 24px!important;
border-radius:10px!important;
font-size:.82rem!important;
line-height:1.15!important;
letter-spacing:.01em!important;
}
.btn--primary,
.hero__actions .btn--primary,
.cta-banner__inner .btn--primary,
.nav__cta,
.tour-card__cta,
.btn-submit,
.plan-submit,
.footer__brand-cta,
.site-header:not(.site-header--overlay) .nav__cta,
.site-header--overlay.is-solid .nav__cta,
.site-header--overlay .nav__cta{
background:linear-gradient(135deg,#e33a4d 0%,#b91527 100%)!important;
border-color:#d72035!important;
color:#fff!important;
box-shadow:0 16px 34px rgba(215,32,53,.24)!important;
}
.btn--primary:hover,
.hero__actions .btn--primary:hover,
.cta-banner__inner .btn--primary:hover,
.nav__cta:hover,
.tour-card__cta:hover,
.btn-submit:hover,
.plan-submit:hover,
.footer__brand-cta:hover{
background:linear-gradient(135deg,#f04a5d 0%,#a80f22 100%)!important;
box-shadow:0 20px 42px rgba(215,32,53,.32)!important;
}
@media(max-width:980px){
.hero__title{
width:min(760px,calc(100vw - 48px))!important;
}
}
@media(max-width:620px){
.hero__title{
width:calc(100vw - 32px)!important;
}
.hero__subtitle{
max-width:calc(100vw - 36px)!important;
}
}
/* EOF final lock for centered hero subtitle */
.hero__subtitle{
display:block!important;
width:auto!important;
max-width:min(860px,calc(100vw - 64px))!important;
margin-left:auto!important;
margin-right:auto!important;
padding-left:0!important;
padding-right:0!important;
text-align:center!important;
}
@media(max-width:620px){
.hero__subtitle{
max-width:calc(100vw - 36px)!important;
}
}
/* EOF final lock for centered hero subtitle */
.hero__subtitle{
display:block!important;
width:auto!important;
max-width:min(860px,calc(100vw - 64px))!important;
margin-left:auto!important;
margin-right:auto!important;
padding-left:0!important;
padding-right:0!important;
text-align:center!important;
}
@media(max-width:620px){
.hero__subtitle{
max-width:calc(100vw - 36px)!important;
}
}
/* EOF final lock for centered hero subtitle */
.hero__subtitle{
display:block!important;
width:auto!important;
max-width:min(860px,calc(100vw - 64px))!important;
margin-left:auto!important;
margin-right:auto!important;
padding-left:0!important;
padding-right:0!important;
text-align:center!important;
}
@media(max-width:620px){
.hero__subtitle{
max-width:calc(100vw - 36px)!important;
}
}
/* Final lock for centered hero subtitle */
.hero__subtitle{
display:block!important;
width:auto!important;
max-width:min(860px,calc(100vw - 64px))!important;
margin-left:auto!important;
margin-right:auto!important;
padding-left:0!important;
padding-right:0!important;
text-align:center!important;
}
@media(max-width:620px){
.hero__subtitle{
max-width:calc(100vw - 36px)!important;
}
}

/* === ABSOLUTE EOF HERO SUBTITLE LINE BALANCE === */
.hero__subtitle{
width:min(1180px,calc(100vw - 72px))!important;
max-width:none!important;
font-size:clamp(1.08rem,1.18vw,1.24rem)!important;
line-height:1.58!important;
}
@media(min-width:1280px){
.hero__subtitle{
white-space:nowrap!important;
}
}
@media(max-width:980px){
.hero__subtitle{
width:min(760px,calc(100vw - 48px))!important;
white-space:normal!important;
}
}
@media(max-width:620px){
.hero__subtitle{
width:calc(100vw - 36px)!important;
font-size:.94rem!important;
line-height:1.56!important;
}
}

/* === ABSOLUTE EOF HERO WIDTH AND CLIPPING FIX === */
.hero .container.hero__content,
.hero__content{
max-width:100%!important;
padding-left:clamp(18px,4vw,56px)!important;
padding-right:clamp(18px,4vw,56px)!important;
overflow:visible!important;
}
.hero__title{
width:min(1120px,calc(100vw - 48px))!important;
max-width:none!important;
overflow:visible!important;
}
.hero__title strong{
display:block!important;
width:100%!important;
max-width:none!important;
font-size:clamp(3rem,5vw,5.35rem)!important;
line-height:.96!important;
overflow:visible!important;
}
.hero__title::after{
width:min(100%,980px)!important;
max-width:calc(100vw - 64px)!important;
height:4px!important;
}
.hero__subtitle{
width:min(860px,calc(100vw - 64px))!important;
max-width:none!important;
}
@media(max-width:980px){
.hero__title{
width:min(760px,calc(100vw - 40px))!important;
}
.hero__title strong{
font-size:clamp(2.6rem,7.2vw,4.25rem)!important;
line-height:.98!important;
}
.hero__title::after{
width:min(100%,680px)!important;
}
}
@media(max-width:620px){
.hero__title{
width:calc(100vw - 28px)!important;
}
.hero__title strong{
font-size:clamp(1.9rem,9vw,2.85rem)!important;
line-height:1.02!important;
}
.hero__title::after{
width:100%!important;
max-width:calc(100vw - 36px)!important;
height:3px!important;
}
.hero__subtitle{
width:calc(100vw - 36px)!important;
font-size:.94rem!important;
}
}

/* === ABSOLUTE FINAL HERO POSITION FIX === */
.hero{
height:clamp(600px,78svh,760px)!important;
min-height:0!important;
align-items:center!important;
justify-content:center!important;
}
.hero__slide{
background-size:cover!important;
background-position:center 58%!important;
}
.hero .container.hero__content,
.hero__content{
height:100%!important;
padding:112px 20px 44px!important;
justify-content:center!important;
}
.hero__title strong{
font-size:clamp(3rem,4vw,4.05rem)!important;
}
@media(min-aspect-ratio:16/9){
.hero{
height:clamp(570px,74svh,700px)!important;
}
.hero .container.hero__content,
.hero__content{
padding-top:104px!important;
padding-bottom:36px!important;
}
.hero__title strong{
font-size:clamp(2.8rem,3.6vw,3.7rem)!important;
}
}
@media(min-aspect-ratio:21/9){
.hero{
height:clamp(520px,70svh,640px)!important;
}
.hero__title strong{
font-size:clamp(2.6rem,3.2vw,3.35rem)!important;
}
}
@media(max-width:768px){
.hero{
height:clamp(620px,82svh,760px)!important;
}
.hero .container.hero__content,
.hero__content{
padding:104px 16px 38px!important;
}
.hero__title strong{
font-size:clamp(2.05rem,9vw,2.55rem)!important;
}
}

/* === TRUE EOF HERO VIEWPORT FIX === */
.hero{
height:clamp(620px,82svh,820px)!important;
min-height:0!important;
display:flex!important;
align-items:center!important;
justify-content:center!important;
overflow:hidden!important;
background:#07121f!important;
}
.hero__media,
.hero__slide,
.hero__overlay{
inset:0!important;
}
.hero__slide{
background-size:cover!important;
background-repeat:no-repeat!important;
background-position:center 56%!important;
transform:none!important;
}
.hero__media::after{
background:
linear-gradient(90deg,rgba(5,15,26,.7) 0%,rgba(5,15,26,.42) 38%,rgba(5,15,26,.18) 64%,rgba(5,15,26,.34) 100%),
linear-gradient(180deg,rgba(5,15,26,.58) 0%,rgba(5,15,26,.08) 42%,rgba(5,15,26,.56) 100%)!important;
}
.hero__overlay{
background:linear-gradient(180deg,rgba(5,15,26,.06) 0%,rgba(5,15,26,.08) 48%,rgba(5,15,26,.44) 100%)!important;
}
.hero .container.hero__content,
.hero__content{
height:100%!important;
width:100%!important;
max-width:1120px!important;
margin:0 auto!important;
padding:118px 20px 48px!important;
display:flex!important;
flex-direction:column!important;
align-items:center!important;
justify-content:center!important;
text-align:center!important;
color:#fff!important;
}
.hero .container.hero__content > *{
max-width:100%!important;
}
.hero__panel{
display:contents!important;
padding:0!important;
border:0!important;
border-radius:0!important;
background:transparent!important;
box-shadow:none!important;
backdrop-filter:none!important;
}
.hero__eyebrow{
display:block!important;
margin:0 0 16px!important;
padding:0!important;
border:0!important;
border-radius:0!important;
background:transparent!important;
font-size:.82rem!important;
line-height:1.45!important;
font-weight:700!important;
letter-spacing:.11em!important;
text-transform:uppercase!important;
color:rgba(255,255,255,.88)!important;
text-shadow:0 10px 24px rgba(0,0,0,.4)!important;
}
.hero__title{
width:100%!important;
max-width:850px!important;
margin:0 auto 20px!important;
display:flex!important;
flex-direction:column!important;
align-items:center!important;
gap:9px!important;
text-shadow:0 18px 42px rgba(0,0,0,.44)!important;
}
.hero__title span{
font-size:.92rem!important;
line-height:1.35!important;
font-weight:700!important;
letter-spacing:.1em!important;
text-transform:uppercase!important;
color:#f1d3a2!important;
}
.hero__title strong{
max-width:780px!important;
font-size:clamp(3rem,4vw,4.15rem)!important;
line-height:1!important;
letter-spacing:0!important;
color:#fff!important;
}
.hero__subtitle{
max-width:680px!important;
margin:0 auto 28px!important;
font-size:clamp(1rem,1vw,1.1rem)!important;
line-height:1.65!important;
font-weight:600!important;
letter-spacing:0!important;
color:rgba(255,255,255,.9)!important;
text-shadow:0 12px 30px rgba(0,0,0,.45)!important;
}
.hero__actions{
width:auto!important;
margin:0 0 24px!important;
display:flex!important;
justify-content:center!important;
align-items:center!important;
gap:14px!important;
}
.hero .hero__actions .btn{
min-width:204px!important;
min-height:52px!important;
padding:14px 28px!important;
border-radius:8px!important;
font-size:.88rem!important;
letter-spacing:0!important;
box-shadow:0 18px 40px rgba(0,0,0,.25)!important;
}
.hero .hero__actions .btn--outline{
background:rgba(255,255,255,.08)!important;
border-color:rgba(255,255,255,.54)!important;
color:#fff!important;
backdrop-filter:blur(4px)!important;
}
.hero__highlights,
.hero-highlight{
display:none!important;
}
.hero__meta{
width:auto!important;
max-width:100%!important;
margin:0 auto!important;
padding:16px 0 0!important;
border-top:1px solid rgba(255,255,255,.24)!important;
display:flex!important;
flex-wrap:wrap!important;
align-items:center!important;
justify-content:center!important;
gap:10px 22px!important;
background:transparent!important;
}
.hero__meta span{
display:inline-flex!important;
align-items:center!important;
justify-content:center!important;
min-height:0!important;
padding:0!important;
border:0!important;
border-radius:0!important;
background:transparent!important;
box-shadow:none!important;
font-size:.78rem!important;
line-height:1.45!important;
font-weight:700!important;
letter-spacing:.08em!important;
text-transform:uppercase!important;
color:rgba(255,255,255,.82)!important;
text-shadow:0 10px 24px rgba(0,0,0,.42)!important;
}
.hero__meta span+span::before{
content:""!important;
display:inline-block!important;
width:4px!important;
height:4px!important;
margin-right:22px!important;
border-radius:50%!important;
background:rgba(241,211,162,.82)!important;
}
@media(min-aspect-ratio:16/9){
.hero{
height:clamp(600px,78svh,760px)!important;
}
.hero .container.hero__content,
.hero__content{
padding-top:112px!important;
padding-bottom:44px!important;
}
.hero__slide{
background-position:center 58%!important;
}
}
@media(min-aspect-ratio:21/9){
.hero{
height:clamp(540px,74svh,680px)!important;
}
.hero__title strong{
font-size:clamp(2.75rem,3.4vw,3.65rem)!important;
}
.hero__subtitle{
font-size:.98rem!important;
}
}
@media(max-width:768px){
.hero{
height:clamp(620px,82svh,760px)!important;
}
.hero__slide{
background-position:center center!important;
}
.hero .container.hero__content,
.hero__content{
padding:104px 16px 38px!important;
}
.hero__eyebrow{
font-size:.7rem!important;
margin-bottom:14px!important;
}
.hero__title{
max-width:360px!important;
margin-bottom:18px!important;
gap:8px!important;
}
.hero__title span{
font-size:.78rem!important;
}
.hero__title strong{
font-size:clamp(2.05rem,9vw,2.55rem)!important;
line-height:1.02!important;
max-width:360px!important;
}
.hero__subtitle{
font-size:.96rem!important;
line-height:1.62!important;
margin-bottom:22px!important;
max-width:360px!important;
}
.hero__actions{
width:100%!important;
gap:10px!important;
margin-bottom:20px!important;
}
.hero .hero__actions .btn{
width:100%!important;
min-width:0!important;
min-height:50px!important;
padding:13px 16px!important;
}
.hero__meta{
gap:8px 14px!important;
padding-top:14px!important;
}
.hero__meta span{
font-size:.66rem!important;
letter-spacing:.06em!important;
}
.hero__meta span+span::before{
display:none!important;
}
}

/* === FINAL HERO RATIO STABILITY === */
.hero{
height:clamp(640px,78svh,860px)!important;
min-height:0!important;
max-height:none!important;
}
.hero__media,
.hero__slide,
.hero__overlay{
inset:0!important;
}
.hero__slide{
background-size:cover!important;
background-position:center 55%!important;
}
.hero .container.hero__content,
.hero__content{
height:100%!important;
padding:118px 20px 54px!important;
justify-content:flex-end!important;
}
.hero__title{
max-width:860px!important;
}
.hero__title strong{
font-size:clamp(3.1rem,4.1vw,4.35rem)!important;
max-width:780px!important;
}
.hero__subtitle{
font-size:clamp(1rem,1.05vw,1.12rem)!important;
max-width:680px!important;
}
@media(min-aspect-ratio:16/9){
.hero{
height:clamp(620px,74svh,790px)!important;
}
.hero__slide{
background-position:center 58%!important;
}
.hero .container.hero__content,
.hero__content{
padding-bottom:46px!important;
}
}
@media(min-aspect-ratio:21/9){
.hero{
height:clamp(560px,70svh,700px)!important;
}
.hero__slide{
background-position:center 60%!important;
}
.hero__title strong{
font-size:clamp(2.8rem,3.4vw,3.85rem)!important;
}
}
@media(max-aspect-ratio:4/5){
.hero{
height:clamp(640px,82svh,760px)!important;
}
.hero__slide{
background-position:center center!important;
}
.hero .container.hero__content,
.hero__content{
padding:104px 16px 38px!important;
}
}
@media(max-width:768px){
.hero{
height:clamp(620px,82svh,760px)!important;
}
.hero__title strong{
font-size:clamp(2.05rem,9vw,2.55rem)!important;
}
.hero__subtitle{
font-size:.96rem!important;
}
}

/* === EOF HOME HERO NO-PANEL REDESIGN === */
.hero{
min-height:86svh!important;
align-items:flex-end!important;
justify-content:center!important;
}
.hero__media::after{
background:
linear-gradient(90deg,rgba(5,15,26,.72) 0%,rgba(5,15,26,.45) 36%,rgba(5,15,26,.22) 64%,rgba(5,15,26,.36) 100%),
linear-gradient(180deg,rgba(5,15,26,.52) 0%,rgba(5,15,26,.1) 42%,rgba(5,15,26,.58) 100%)!important;
}
.hero__overlay{
background:linear-gradient(180deg,rgba(5,15,26,.08) 0%,rgba(5,15,26,.12) 46%,rgba(5,15,26,.48) 100%)!important;
}
.hero .container.hero__content,
.hero__content{
width:100%!important;
max-width:min(1120px,calc(100vw - 40px))!important;
padding:132px 20px 74px!important;
margin:0 auto!important;
display:flex!important;
flex-direction:column!important;
align-items:center!important;
justify-content:flex-end!important;
text-align:center!important;
color:#fff!important;
}
.hero__panel{
display:contents!important;
padding:0!important;
border:0!important;
border-radius:0!important;
background:transparent!important;
box-shadow:none!important;
backdrop-filter:none!important;
}
.hero__eyebrow{
display:block!important;
width:auto!important;
margin:0 0 18px!important;
padding:0!important;
border:0!important;
border-radius:0!important;
background:transparent!important;
font-size:.84rem!important;
line-height:1.5!important;
font-weight:700!important;
letter-spacing:.12em!important;
text-transform:uppercase!important;
color:rgba(255,255,255,.88)!important;
text-shadow:0 10px 24px rgba(0,0,0,.38)!important;
}
.hero__title{
width:min(850px,100%)!important;
margin:0 auto 22px!important;
display:flex!important;
flex-direction:column!important;
align-items:center!important;
gap:10px!important;
text-shadow:0 18px 42px rgba(0,0,0,.42)!important;
}
.hero__title span{
font-size:.95rem!important;
line-height:1.4!important;
font-weight:700!important;
letter-spacing:.1em!important;
text-transform:uppercase!important;
color:#f1d3a2!important;
}
.hero__title strong{
max-width:760px!important;
font-size:4.25rem!important;
line-height:.98!important;
letter-spacing:0!important;
text-wrap:balance!important;
color:#fff!important;
}
.hero__subtitle{
max-width:680px!important;
margin:0 auto 30px!important;
font-size:1.12rem!important;
line-height:1.7!important;
font-weight:600!important;
letter-spacing:0!important;
color:rgba(255,255,255,.9)!important;
text-shadow:0 12px 30px rgba(0,0,0,.45)!important;
}
.hero__actions{
width:auto!important;
margin:0 0 26px!important;
display:flex!important;
justify-content:center!important;
align-items:center!important;
gap:14px!important;
}
.hero .hero__actions .btn{
min-width:204px!important;
min-height:54px!important;
padding:15px 28px!important;
border-radius:8px!important;
font-size:.9rem!important;
letter-spacing:0!important;
box-shadow:0 18px 40px rgba(0,0,0,.26)!important;
}
.hero .hero__actions .btn--outline{
background:rgba(255,255,255,.08)!important;
border-color:rgba(255,255,255,.54)!important;
color:#fff!important;
backdrop-filter:blur(4px)!important;
}
.hero__highlights,
.hero-highlight{
display:none!important;
}
.hero__meta{
width:auto!important;
max-width:100%!important;
margin:0 auto!important;
padding:17px 0 0!important;
border-top:1px solid rgba(255,255,255,.26)!important;
display:flex!important;
flex-wrap:wrap!important;
align-items:center!important;
justify-content:center!important;
gap:10px 22px!important;
background:transparent!important;
}
.hero__meta span{
display:inline-flex!important;
min-height:0!important;
padding:0!important;
border:0!important;
border-radius:0!important;
background:transparent!important;
box-shadow:none!important;
font-size:.8rem!important;
line-height:1.45!important;
font-weight:700!important;
letter-spacing:.08em!important;
text-transform:uppercase!important;
color:rgba(255,255,255,.82)!important;
text-shadow:0 10px 24px rgba(0,0,0,.42)!important;
}
.hero__meta span+span::before{
content:""!important;
display:inline-block!important;
width:4px!important;
height:4px!important;
margin-right:22px!important;
border-radius:50%!important;
background:rgba(241,211,162,.82)!important;
}
@media(max-width:980px){
.hero{
min-height:84svh!important;
}
.hero .container.hero__content,
.hero__content{
max-width:min(820px,calc(100vw - 32px))!important;
padding:118px 16px 56px!important;
}
.hero__title strong{
font-size:3.35rem!important;
max-width:680px!important;
}
.hero__subtitle{
font-size:1.04rem!important;
max-width:620px!important;
}
}
@media(max-width:768px){
.hero{
min-height:82svh!important;
}
.hero .container.hero__content,
.hero__content{
padding:104px 16px 42px!important;
}
.hero__eyebrow{
font-size:.7rem!important;
margin-bottom:14px!important;
}
.hero__title{
margin-bottom:18px!important;
gap:8px!important;
}
.hero__title span{
font-size:.78rem!important;
}
.hero__title strong{
font-size:2.35rem!important;
line-height:1.02!important;
max-width:360px!important;
}
.hero__subtitle{
font-size:.98rem!important;
line-height:1.62!important;
margin-bottom:22px!important;
max-width:360px!important;
}
.hero__actions{
width:100%!important;
gap:10px!important;
margin-bottom:20px!important;
}
.hero .hero__actions .btn{
width:100%!important;
min-width:0!important;
min-height:50px!important;
padding:13px 16px!important;
}
.hero__meta{
gap:8px 14px!important;
padding-top:14px!important;
}
.hero__meta span{
font-size:.66rem!important;
letter-spacing:.06em!important;
}
.hero__meta span+span::before{
display:none!important;
}
}

/* === HERO CONTENT REFINEMENT === */
.hero{
align-items:flex-end;
justify-content:flex-end;
}
.hero__media::after{
background:
linear-gradient(90deg,rgba(7,18,31,.76) 0%,rgba(7,18,31,.54) 30%,rgba(7,18,31,.22) 58%,rgba(7,18,31,.34) 100%),
radial-gradient(circle at 50% 28%,rgba(221,165,92,.34) 0%,rgba(221,165,92,0) 32%);
}
.hero__overlay{
background:linear-gradient(180deg,rgba(6,18,30,.16) 0%,rgba(6,18,30,.08) 36%,rgba(6,18,30,.54) 100%);
}
.hero .container.hero__content{
max-width:min(1180px,100%);
padding:clamp(104px,min(14svh,140px),156px) clamp(20px,5vw,48px) clamp(42px,min(10vmin,82px),104px);
align-items:center;
}
.hero__panel{
width:min(760px,100%);
padding:clamp(28px,4.2vw,42px);
border-radius:28px;
background:linear-gradient(180deg,rgba(15,27,40,.42) 0%,rgba(10,20,31,.62) 100%);
border:1px solid rgba(255,255,255,.16);
backdrop-filter:blur(10px);
box-shadow:0 24px 70px rgba(0,0,0,.28);
display:flex;
flex-direction:column;
align-items:center;
text-align:center;
}
.hero .container.hero__content > *{
max-width:none;
}
.hero__eyebrow{
display:inline-flex;
align-items:center;
justify-content:center;
gap:10px;
margin:0 0 18px;
padding:8px 16px;
border-radius:999px;
background:rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.12);
color:rgba(255,248,238,.92);
letter-spacing:.18em;
}
.hero__title{
margin:0 0 18px;
gap:10px;
}
.hero__title span{
font-size:clamp(.96rem,.32vmin + .9rem,1.14rem);
letter-spacing:.2em;
text-transform:uppercase;
color:rgba(240,212,170,.96);
}
.hero__title strong{
font-size:clamp(2.9rem,5vw + 1rem,5.4rem);
line-height:.96;
max-width:11ch;
text-wrap:balance;
}
.hero__subtitle{
max-width:40rem;
margin:0 auto 28px;
font-size:clamp(1rem,.42vmin + .94rem,1.18rem);
line-height:1.7;
color:rgba(255,255,255,.88);
text-wrap:balance;
}
.hero__actions{
margin-bottom:24px;
gap:14px;
}
.hero .hero__actions .btn{
min-width:220px;
}
.hero__highlights{
width:100%;
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:14px;
}
.hero-highlight{
padding:16px 18px;
border-radius:20px;
background:rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.1);
text-align:left;
box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
}
.hero-highlight__kicker{
display:block;
margin-bottom:8px;
font-size:.76rem;
letter-spacing:.18em;
text-transform:uppercase;
color:rgba(240,212,170,.92);
}
.hero-highlight strong{
display:block;
font-size:.98rem;
line-height:1.55;
font-weight:600;
color:#fff;
}
.hero__meta{
width:min(760px,100%);
margin:18px auto 0;
padding:0;
border-top:0;
display:grid;
grid-template-columns:repeat(3,minmax(0,1fr));
gap:12px;
}
.hero__meta span{
display:flex;
align-items:center;
justify-content:center;
min-height:64px;
padding:14px 16px;
border-radius:18px;
background:rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.12);
font-size:.78rem;
line-height:1.45;
letter-spacing:.12em;
color:rgba(255,255,255,.84);
}
.trust-bar{
position:relative;
z-index:2;
margin-top:-1px;
background:linear-gradient(180deg,#fbf7f2 0%,#fff 100%);
border-top:1px solid rgba(16,42,67,.08);
}
@media(max-width:980px){
.hero .container.hero__content{
padding:clamp(102px,18vw,128px) clamp(18px,4vw,28px) clamp(38px,10vmin,62px);
}
.hero__panel{
width:min(720px,100%);
padding:26px 22px;
border-radius:24px;
}
.hero__title strong{
font-size:clamp(2.45rem,7.4vw,4.1rem);
max-width:12ch;
}
.hero__highlights{
grid-template-columns:1fr;
}
.hero__meta{
grid-template-columns:repeat(3,minmax(0,1fr));
}
}
@media(max-width:768px){
.hero{
min-height:min(100svh,860px);
}
.hero .container.hero__content{
padding:clamp(94px,22vw,116px) 16px 34px;
}
.hero__panel{
padding:22px 16px 18px;
border-radius:22px;
}
.hero__eyebrow{
margin-bottom:16px;
padding:7px 12px;
font-size:.68rem;
letter-spacing:.14em;
}
.hero__title strong{
font-size:clamp(2.05rem,10vw,3rem);
max-width:12ch;
}
.hero__subtitle{
margin-bottom:22px;
font-size:1rem;
line-height:1.62;
}
.hero__actions{
width:100%;
margin-bottom:18px;
}
.hero .hero__actions .btn{
width:100%;
min-width:0;
}
.hero__highlights{
gap:10px;
}
.hero-highlight{
padding:14px 14px;
border-radius:16px;
}
.hero__meta{
grid-template-columns:1fr;
gap:10px;
margin-top:14px;
}
.hero__meta span{
min-height:auto;
font-size:.72rem;
padding:12px 14px;
}
}

/* === EOF SUBPAGE HERO EDGE OVERRIDE === */
.tour-hero,
.dest-hero,
.style-hero{
overflow:hidden!important;
isolation:isolate!important;
}
.tour-hero__bg,
.dest-hero__bg,
.style-hero__bg{
inset:-5px!important;
background-size:cover!important;
background-repeat:no-repeat!important;
background-position:center center!important;
transform:scale(1.04)!important;
}
.tour-hero__overlay,
.dest-hero__overlay,
.style-hero__overlay,
.tour-hero::before,
.dest-hero::before,
.style-hero::before{
inset:-2px!important;
}

/* === FINAL HEADER CONSISTENCY === */
.site-header:not(.site-header--overlay),
.site-header--overlay.is-solid{
background:rgba(250,250,248,.96)!important;
border-bottom:1px solid rgba(16,42,67,.08)!important;
box-shadow:0 10px 24px rgba(16,42,67,.08)!important;
backdrop-filter:blur(18px)!important;
}
.site-header:not(.site-header--overlay) .header__inner,
.site-header--overlay.is-solid .header__inner{
min-height:78px!important;
gap:18px!important;
}
.site-header:not(.site-header--overlay) .logo__mark,
.site-header--overlay.is-solid .logo__mark{
max-width:180px!important;
max-height:58px!important;
width:auto!important;
height:auto!important;
}
.site-header:not(.site-header--overlay) .nav,
.site-header--overlay.is-solid .nav{
gap:10px!important;
}
.site-header:not(.site-header--overlay) .nav__links,
.site-header--overlay.is-solid .nav__links{
display:flex!important;
align-items:center!important;
gap:6px!important;
padding:7px 10px!important;
border-radius:8px!important;
background:rgba(255,255,255,.92)!important;
border:1px solid rgba(16,42,67,.1)!important;
box-shadow:0 8px 22px rgba(16,42,67,.06)!important;
}
.site-header:not(.site-header--overlay) .nav__link,
.site-header:not(.site-header--overlay) .nav a,
.site-header--overlay.is-solid .nav__link,
.site-header--overlay.is-solid .nav a{
min-height:36px!important;
padding:0 10px!important;
border-radius:6px!important;
font-size:.77rem!important;
font-weight:750!important;
text-transform:uppercase!important;
color:var(--c-primary)!important;
}
.site-header:not(.site-header--overlay) .nav__link:hover,
.site-header:not(.site-header--overlay) .nav__item:hover>.nav__link,
.site-header:not(.site-header--overlay) .nav a:hover,
.site-header--overlay.is-solid .nav__link:hover,
.site-header--overlay.is-solid .nav__item:hover>.nav__link,
.site-header--overlay.is-solid .nav a:hover{
background:rgba(183,121,63,.1)!important;
color:var(--c-accent)!important;
}
.site-header:not(.site-header--overlay) .nav__cta,
.site-header--overlay.is-solid .nav__cta{
min-height:40px!important;
padding:0 16px!important;
border-radius:8px!important;
background:var(--c-accent)!important;
box-shadow:none!important;
color:#fff!important;
font-size:.76rem!important;
font-weight:800!important;
line-height:1.15!important;
text-transform:uppercase!important;
}
.site-header:not(.site-header--overlay) .header-promo,
.site-header--overlay.is-solid .header-promo{
display:block!important;
}

/* === SINGLE-ROW SUBPAGE HEADER === */
@media(min-width:981px){
.site-header:not(.site-header--overlay) .header-promo,
.site-header--overlay.is-solid .header-promo{
display:block!important;
}
.site-header:not(.site-header--overlay) .header__inner,
.site-header--overlay.is-solid .header__inner{
display:flex!important;
flex-wrap:nowrap!important;
align-items:center!important;
justify-content:space-between!important;
min-height:82px!important;
gap:18px!important;
padding-top:0!important;
padding-bottom:0!important;
}
.site-header:not(.site-header--overlay) .logo,
.site-header--overlay.is-solid .logo{
flex:0 0 auto!important;
min-width:0!important;
}
.site-header:not(.site-header--overlay) .logo__mark,
.site-header--overlay.is-solid .logo__mark{
max-width:190px!important;
max-height:62px!important;
}
.site-header:not(.site-header--overlay) .nav,
.site-header--overlay.is-solid .nav{
display:flex!important;
flex:1 1 auto!important;
min-width:0!important;
align-items:center!important;
justify-content:flex-end!important;
gap:10px!important;
margin-left:18px!important;
}
.site-header:not(.site-header--overlay) .nav__links,
.site-header--overlay.is-solid .nav__links{
display:flex!important;
flex:0 1 auto!important;
flex-wrap:nowrap!important;
align-items:center!important;
width:auto!important;
min-width:0!important;
gap:5px!important;
padding:7px 9px!important;
}
.site-header:not(.site-header--overlay) .nav__item,
.site-header--overlay.is-solid .nav__item{
flex:0 0 auto!important;
width:auto!important;
}
.site-header:not(.site-header--overlay) .nav__link,
.site-header:not(.site-header--overlay) .nav a,
.site-header--overlay.is-solid .nav__link,
.site-header--overlay.is-solid .nav a{
white-space:nowrap!important;
width:auto!important;
justify-content:center!important;
font-size:.76rem!important;
padding:0 9px!important;
}
.site-header:not(.site-header--overlay) .nav__cta,
.site-header--overlay.is-solid .nav__cta{
flex:0 0 auto!important;
white-space:nowrap!important;
width:auto!important;
min-width:max-content!important;
padding:0 15px!important;
}
}

/* === SUBPAGE HERO IMAGE EDGE FIX === */
.tour-hero,
.dest-hero,
.style-hero{
overflow:hidden!important;
isolation:isolate!important;
}
.tour-hero__bg,
.dest-hero__bg,
.style-hero__bg{
inset:-4px!important;
background-size:cover!important;
background-repeat:no-repeat!important;
background-position:center center!important;
transform:scale(1.035)!important;
}
.tour-hero__overlay,
.dest-hero__overlay,
.style-hero__overlay,
.tour-hero::before,
.dest-hero::before,
.style-hero::before{
inset:-1px!important;
}

/* === FINAL SUBPAGE HERO EDGE OVERRIDE === */
.tour-hero,
.dest-hero,
.style-hero{
overflow:hidden!important;
isolation:isolate!important;
}
.tour-hero__bg,
.dest-hero__bg,
.style-hero__bg{
inset:-5px!important;
background-size:cover!important;
background-repeat:no-repeat!important;
background-position:center center!important;
transform:scale(1.04)!important;
}
.tour-hero__overlay,
.dest-hero__overlay,
.style-hero__overlay,
.tour-hero::before,
.dest-hero::before,
.style-hero::before{
inset:-2px!important;
}

/* === FOOTER CLARITY REFINEMENT === */
.footer{
background:#0b1f33!important;
}
.footer::before,
.footer::after{
opacity:.08!important;
}
.footer__brands{
grid-template-columns:minmax(190px,.55fr) minmax(0,1.45fr)!important;
gap:32px!important;
padding-top:36px!important;
padding-bottom:30px!important;
border-bottom:1px solid rgba(255,255,255,.08)!important;
}
.footer__brands-copy span{
font-size:2rem!important;
}
.footer__brands-copy p{
max-width:250px!important;
font-size:.9rem!important;
color:rgba(255,255,255,.58)!important;
}
.footer__brands-grid{
gap:12px!important;
align-items:center!important;
}
.footer-brand-link{
min-height:76px!important;
padding:14px 18px!important;
background:rgba(255,255,255,.045)!important;
border:1px solid rgba(255,255,255,.1)!important;
box-shadow:none!important;
}
.footer-brand-link::after{
display:none!important;
}
.footer-brand-link--avt img{
max-height:42px!important;
}
.footer-brand-link--vtd img{
max-height:52px!important;
max-width:210px!important;
}
.footer-brand-link--stay img{
max-height:54px!important;
}
.footer-brand-link:hover{
transform:none!important;
background:rgba(255,255,255,.065)!important;
border-color:rgba(214,173,104,.24)!important;
}
.footer__inner{
grid-template-columns:minmax(260px,1fr) minmax(140px,.58fr) minmax(150px,.62fr) minmax(230px,.86fr)!important;
gap:34px!important;
padding-top:36px!important;
padding-bottom:36px!important;
}
.footer__brand-logo{
max-width:230px!important;
max-height:78px!important;
}
.footer__brand-tagline{
max-width:310px!important;
font-size:.94rem!important;
line-height:1.55!important;
}
.footer__operated{
max-width:300px!important;
font-size:.84rem!important;
}
.footer__brand-badges{
gap:6px!important;
margin-top:14px!important;
}
.footer__brand-badges span{
padding:6px 9px!important;
background:transparent!important;
font-size:.7rem!important;
}
.footer__brand-cta{
margin-top:16px!important;
padding:10px 14px!important;
background:#b98035!important;
}
.footer h4{
margin-bottom:14px!important;
font-size:1rem!important;
}
.footer h4::after{
width:26px!important;
height:1px!important;
margin-top:9px!important;
}
.footer__links a,
.footer__destinations a{
padding:5px 0!important;
font-size:.88rem!important;
color:rgba(255,255,255,.68)!important;
}
.footer__contact-list{
gap:8px!important;
}
.footer__contact-item{
padding:11px 12px!important;
background:transparent!important;
border-color:rgba(255,255,255,.1)!important;
}
.footer__contact-item:hover{
background:rgba(255,255,255,.04)!important;
}
.footer__contact-label{
font-size:.64rem!important;
}
.footer__contact-item strong{
font-size:.88rem!important;
}
@media(max-width:1100px){
.footer__brands{
grid-template-columns:1fr!important;
}
.footer__brands-copy p{
max-width:420px!important;
}
.footer__inner{
grid-template-columns:1fr 1fr!important;
}
}
@media(max-width:760px){
.footer__brands{
gap:18px!important;
}
.footer__brands-grid{
grid-template-columns:1fr!important;
}
.footer-brand-link{
min-height:70px!important;
}
.footer__inner{
grid-template-columns:1fr!important;
}
}

/* === FOOTER WORLD MAP VISIBILITY FIX === */
.footer{
background:linear-gradient(180deg,#0a2038 0%,#06172b 58%,#041121 100%)!important;
}
.footer::before{
content:''!important;
position:absolute!important;
inset:0!important;
z-index:0!important;
height:auto!important;
background:
url("data:image/svg+xml,%3Csvg width='1600' height='620' viewBox='0 0 1600 620' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1600' height='620' fill='none'/%3E%3Cg fill='%23ffffff' fill-opacity='.17'%3E%3Cpath d='M168 190c42-34 108-44 168-27 42 12 82 8 119 28 31 16 42 43 19 64-28 25-79 17-116 37-43 23-53 72-99 86-52 15-114-20-132-68-15-40 3-90 41-120z'/%3E%3Cpath d='M430 130c58-23 132-17 181 18 47 34 35 83-13 102-36 14-74 5-107 27-34 22-39 65-77 79-39 15-85-7-105-41-24-40-10-95 28-124 27-21 59-47 93-61z'/%3E%3Cpath d='M665 214c72-39 179-43 258-12 57 22 104 68 86 111-16 39-79 48-133 45-47-3-91-19-138-8-48 11-83 51-134 46-58-5-101-61-85-108 11-32 62-58 146-74z'/%3E%3Cpath d='M905 118c88-38 213-29 296 19 57 33 84 80 57 118-31 44-116 38-174 68-49 25-55 75-107 95-70 27-170-13-194-74-23-58 17-112 122-226z'/%3E%3Cpath d='M1220 318c61-32 153-27 214 8 50 29 61 76 21 109-37 31-104 33-158 21-53-12-104-10-139-42-34-32 2-73 62-96z'/%3E%3C/g%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.22' stroke-width='1.2'%3E%3Cellipse cx='800' cy='310' rx='690' ry='238'/%3E%3Cellipse cx='800' cy='310' rx='520' ry='180'/%3E%3Cpath d='M115 310h1370M800 75v470M410 112c82 122 82 274 0 396M1190 112c-82 122-82 274 0 396'/%3E%3C/g%3E%3Cg stroke='%23c8a96a' stroke-opacity='.62' stroke-width='2' fill='none'%3E%3Cpath d='M328 238C454 298 507 336 607 353'/%3E%3Cpath d='M607 353C730 391 815 398 930 376'/%3E%3Cpath d='M930 376C1059 357 1140 306 1240 282'/%3E%3Cpath d='M1240 282C1332 299 1385 337 1438 376'/%3E%3C/g%3E%3Cg fill='%23c8a96a' fill-opacity='1'%3E%3Ccircle cx='328' cy='238' r='5'/%3E%3Ccircle cx='607' cy='353' r='5'/%3E%3Ccircle cx='930' cy='376' r='5'/%3E%3Ccircle cx='1240' cy='282' r='5'/%3E%3Ccircle cx='1438' cy='376' r='5'/%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat!important;
opacity:.72!important;
pointer-events:none!important;
}
.footer::after{
z-index:1!important;
background:linear-gradient(180deg,rgba(4,17,33,0) 0%,rgba(4,17,33,.68) 100%)!important;
}
.footer__inner,
.footer__bottom{
position:relative!important;
z-index:2!important;
}

/* === SCROLLED HEADER LAYOUT FIX === */
@media(min-width:981px){
.site-header--overlay .header__inner{
display:grid!important;
grid-template-columns:minmax(160px,230px) minmax(0,1fr) max-content!important;
align-items:center!important;
gap:18px!important;
max-width:1480px!important;
}
.site-header--overlay .logo{
min-width:0!important;
}
.site-header--overlay .logo__mark{
max-width:210px!important;
}
.site-header--overlay .nav{
display:contents!important;
}
.site-header--overlay .nav__links{
grid-column:2!important;
width:100%!important;
max-width:820px!important;
min-width:0!important;
justify-self:center!important;
justify-content:center!important;
gap:8px!important;
padding:8px 12px!important;
overflow:visible!important;
}
.site-header--overlay .nav__links > .nav__item,
.site-header--overlay .nav__links > .nav__link,
.site-header--overlay .nav__links > a.nav__link{
min-width:0!important;
}
.site-header--overlay .nav__link,
.site-header--overlay .nav a{
padding:0 9px!important;
font-size:.74rem!important;
letter-spacing:.02em!important;
}
.site-header--overlay .nav__cta{
grid-column:3!important;
min-width:max-content!important;
max-width:none!important;
margin-left:0!important;
padding:12px 18px!important;
font-size:.72rem!important;
white-space:nowrap!important;
overflow:visible!important;
}
}
@media(min-width:981px) and (max-width:1180px){
.site-header--overlay .header__inner{
grid-template-columns:minmax(120px,160px) minmax(0,1fr) max-content!important;
gap:8px!important;
}
.site-header--overlay .logo__mark{
max-width:138px!important;
}
.site-header--overlay .nav__links{
max-width:720px!important;
gap:3px!important;
padding:6px!important;
}
.site-header--overlay .nav__link,
.site-header--overlay .nav a{
padding:0 6px!important;
font-size:.64rem!important;
}
.site-header--overlay .nav__cta{
margin-left:0!important;
padding:10px 11px!important;
font-size:.64rem!important;
}
}

/* === NEW VIETNAM TRIP DEAL LOGO SIZING === */
.logo{
gap:0!important;
position:relative!important;
display:inline-flex!important;
align-items:center!important;
}
.logo__mark{
width:auto!important;
max-width:250px!important;
max-height:74px!important;
object-fit:contain!important;
object-position:left center!important;
}
.logo__mark--light{
display:none!important;
}

/* === CONSISTENT DESKTOP HEADER POSITIONS === */
@media(min-width:981px){
.site-header .header__inner{
display:grid!important;
grid-template-columns:260px minmax(0,1fr) max-content!important;
align-items:center!important;
gap:22px!important;
max-width:1480px!important;
min-height:104px!important;
}
.site-header .logo{
grid-column:1!important;
justify-self:start!important;
min-width:0!important;
}
.site-header .logo__mark{
max-width:238px!important;
max-height:74px!important;
}
.site-header .nav{
grid-column:2 / 4!important;
display:grid!important;
grid-template-columns:minmax(0,1fr) max-content!important;
align-items:center!important;
gap:22px!important;
width:100%!important;
margin-left:0!important;
}
.site-header .nav__links{
justify-self:end!important;
width:auto!important;
max-width:none!important;
display:flex!important;
align-items:center!important;
justify-content:flex-end!important;
gap:10px!important;
padding:8px 14px!important;
overflow:visible!important;
}
.site-header .nav__link,
.site-header .nav a{
padding:0 8px!important;
font-size:.74rem!important;
white-space:nowrap!important;
letter-spacing:.02em!important;
}
.site-header .nav__cta{
justify-self:end!important;
margin-left:0!important;
padding:12px 18px!important;
font-size:.72rem!important;
white-space:nowrap!important;
}
}
@media(min-width:981px) and (max-width:1180px){
.site-header .header__inner{
grid-template-columns:180px minmax(0,1fr) max-content!important;
gap:12px!important;
}
.site-header .logo__mark{
max-width:168px!important;
}
.site-header .nav{
gap:12px!important;
}
.site-header .nav__links{
gap:4px!important;
padding:6px 8px!important;
}
.site-header .nav__link,
.site-header .nav a{
padding:0 6px!important;
font-size:.64rem!important;
}
.site-header .nav__cta{
padding:10px 12px!important;
font-size:.64rem!important;
}
}
.logo__copy{
display:none!important;
}
.site-header--overlay .logo__mark{
max-width:270px!important;
max-height:82px!important;
}
.site-header--overlay:not(.is-solid) .logo__mark{
filter:drop-shadow(0 10px 24px rgba(0,0,0,.18))!important;
}
.site-header--overlay .logo{
padding:4px 0!important;
}
.footer__brand-title{
display:block!important;
}
.footer__brand-logo{
width:min(100%,300px)!important;
height:auto!important;
max-height:110px!important;
padding:0!important;
background:transparent!important;
object-fit:contain!important;
object-position:left center!important;
}
@media(min-width:981px) and (max-width:1180px){
.logo__mark,
.site-header--overlay .logo__mark{
max-width:190px!important;
max-height:64px!important;
}
}
@media(max-width:768px){
.logo__mark,
.site-header--overlay .logo__mark{
max-width:190px!important;
max-height:62px!important;
}
.footer__brand-logo{
max-width:260px!important;
}
}

/* === TRAVEL STYLES HANOI BACKGROUND === */
.travel-styles{
position:relative!important;
isolation:isolate!important;
overflow:hidden!important;
background:
linear-gradient(180deg,rgba(5,18,34,.78) 0%,rgba(5,18,34,.62) 48%,rgba(5,18,34,.34) 100%),
url('https://images.unsplash.com/photo-1772166876624-90ed0465fa87?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&ixlib=rb-4.1.0&q=60&w=3000') center 42%/cover fixed!important;
}
.travel-styles::before{
content:''!important;
position:absolute!important;
inset:0!important;
z-index:-1!important;
background:
linear-gradient(90deg,rgba(5,18,34,.42),rgba(5,18,34,.16),rgba(5,18,34,.42)),
radial-gradient(ellipse at 50% 20%,rgba(200,169,106,.16),transparent 38%)!important;
pointer-events:none!important;
}
.travel-styles .section-header{
position:relative!important;
z-index:1!important;
}
.travel-styles .section-eyebrow{
color:#d8b875!important;
}
.travel-styles .section-title{
color:#fff!important;
text-shadow:0 12px 30px rgba(0,0,0,.35)!important;
}
.travel-styles .section-subtitle{
color:rgba(255,255,255,.86)!important;
text-shadow:0 8px 18px rgba(0,0,0,.3)!important;
}
.travel-styles .section-header::after{
background:linear-gradient(90deg,transparent,#d8b875,transparent)!important;
}
.travel-styles .home-style-grid{
position:relative!important;
z-index:1!important;
grid-template-columns:repeat(5,minmax(0,1fr))!important;
max-width:1180px!important;
margin:0 auto!important;
}
.travel-styles .home-style-card{
background:rgba(255,255,255,.94)!important;
border-color:rgba(255,255,255,.45)!important;
box-shadow:0 24px 58px rgba(5,18,34,.22)!important;
}
.travel-styles .home-style-card:hover{
box-shadow:0 34px 72px rgba(5,18,34,.28)!important;
}
@media(max-width:980px){
.travel-styles{
background:
linear-gradient(180deg,rgba(5,18,34,.8) 0%,rgba(5,18,34,.64) 48%,rgba(5,18,34,.38) 100%),
url('https://images.unsplash.com/photo-1772166876624-90ed0465fa87?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&ixlib=rb-4.1.0&q=60&w=1800') center/cover!important;
}
}

/* === FOOTER REAL WORLD MAP BACKGROUND === */
.footer::before{
content:''!important;
position:absolute!important;
inset:0!important;
z-index:0!important;
height:auto!important;
background:url('https://upload.wikimedia.org/wikipedia/commons/thumb/0/0d/WorldMap.svg/3840px-WorldMap.svg.png') center 44%/78% auto no-repeat!important;
filter:invert(1) brightness(1.35) contrast(.95)!important;
mix-blend-mode:screen!important;
opacity:.18!important;
pointer-events:none!important;
}
.footer::after{
z-index:1!important;
background:
linear-gradient(180deg,rgba(4,17,33,.08) 0%,rgba(4,17,33,.52) 62%,rgba(4,17,33,.82) 100%),
linear-gradient(90deg,rgba(4,17,33,.72) 0%,rgba(4,17,33,.1) 50%,rgba(4,17,33,.72) 100%)!important;
}
@media(max-width:980px){
.footer::before{
background:url('https://upload.wikimedia.org/wikipedia/commons/thumb/0/0d/WorldMap.svg/2560px-WorldMap.svg.png') center 38%/130% auto no-repeat!important;
}
}

/* === NAV DROPDOWN POLISH === */
@media(min-width:981px){
.nav__item{
position:relative!important;
}
.nav__dropdown{
top:calc(100% + 10px)!important;
left:50%!important;
min-width:230px!important;
padding:8px!important;
border-radius:8px!important;
background:rgba(255,255,255,.96)!important;
border:1px solid rgba(11,31,58,.1)!important;
box-shadow:0 22px 48px rgba(11,31,58,.18)!important;
backdrop-filter:blur(12px)!important;
transform:translate(-50%,8px)!important;
overflow:hidden!important;
}
.nav__dropdown--wide{
min-width:340px!important;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown{
transform:translate(-50%,0)!important;
}
.nav__dropdown a{
display:flex!important;
align-items:center!important;
width:100%!important;
min-height:34px!important;
padding:8px 10px!important;
border-radius:6px!important;
font-size:.8rem!important;
font-weight:700!important;
line-height:1.25!important;
color:#17324d!important;
background:transparent!important;
white-space:normal!important;
}
.nav__dropdown a + a{
margin-top:2px!important;
}
.nav__dropdown a:hover{
background:#f3eee7!important;
color:#b7793f!important;
padding-left:13px!important;
}
.site-header--overlay:not(.is-solid) .nav__dropdown{
background:rgba(255,255,255,.94)!important;
}
.site-header--overlay:not(.is-solid) .nav__dropdown a{
color:#17324d!important;
}
}
@media(max-width:980px){
.nav__dropdown{
padding:6px!important;
border-radius:8px!important;
background:#f5efe6!important;
}
.nav__dropdown a{
min-height:36px!important;
padding:8px 10px!important;
border-radius:6px!important;
background:transparent!important;
font-size:.82rem!important;
}
.nav__dropdown a:hover{
background:#fff!important;
}
}

/* === OUR BRAND STRIP === */
.brand-strip{
position:relative;
overflow:hidden;
background:
linear-gradient(90deg,#101b52 0%,#172a8d 52%,#101b52 100%);
color:#fff;
}
.brand-strip::before{
content:'';
position:absolute;
inset:0;
background:
radial-gradient(ellipse at 18% 50%,rgba(255,255,255,.1),transparent 34%),
linear-gradient(90deg,rgba(255,255,255,.06) 0 1px,transparent 1px);
background-size:auto,80px 80px;
opacity:.8;
pointer-events:none;
}
.brand-strip__inner{
position:relative;
z-index:1;
min-height:92px;
display:grid;
grid-template-columns:auto minmax(0,1fr);
align-items:center;
gap:42px;
}
.brand-strip__label{
font-family:'Playfair Display',serif;
font-size:1.55rem;
font-weight:700;
color:rgba(255,255,255,.82);
white-space:nowrap;
}
.brand-strip__items{
display:grid;
grid-template-columns:repeat(3,minmax(0,1fr));
gap:18px;
align-items:center;
}
.brand-chip{
display:flex;
align-items:center;
gap:12px;
min-height:54px;
padding:10px 14px;
border-radius:8px;
background:rgba(255,255,255,.075);
border:1px solid rgba(255,255,255,.12);
box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
font-weight:800;
letter-spacing:.01em;
color:#fff;
}
.brand-chip__icon{
display:inline-flex;
align-items:center;
justify-content:center;
flex:0 0 34px;
width:34px;
height:34px;
border-radius:50%;
font-family:'Playfair Display',serif;
font-size:1rem;
font-weight:800;
color:#fff;
box-shadow:0 10px 22px rgba(0,0,0,.18);
}
.brand-chip__icon--avt{background:linear-gradient(135deg,#007a45,#0f9f6e)}
.brand-chip__icon--vtd{background:linear-gradient(135deg,#c08a45,#e0b165)}
.brand-chip__icon--stay{background:linear-gradient(135deg,#1e88b9,#54b7d3)}
.brand-chip span:last-child{
font-size:.98rem;
line-height:1.2;
}
@media(max-width:980px){
.brand-strip__inner{
grid-template-columns:1fr;
gap:16px;
padding-top:24px;
padding-bottom:24px;
}
.brand-strip__items{
grid-template-columns:1fr;
gap:10px;
}
.brand-strip__label{
font-size:1.35rem;
}
}

/* === CLIENT REQUESTED TYPOGRAPHY === */
:root{
--font-heading-1:'Cormorant Garamond',serif;
--font-heading-2:'Libre Baskerville',serif;
--font-heading-3:'EB Garamond',serif;
}
body,
p,
li,
a,
button,
input,
select,
textarea,
label,
.section-subtitle,
.hero__subtitle,
.tour-card__desc,
.home-style-card__subtitle,
.collection-card p,
.why-card p,
.review-card__text,
.blog-card__content p,
.footer__links a,
.footer__destinations a,
.footer__brand-card p,
.footer__contact-item,
.brand-chip span:last-child{
font-family:var(--font-heading-2)!important;
letter-spacing:0;
}
h1,
.hero__title strong,
.tour-hero__content h1,
.dest-hero__content h1,
.style-hero__title,
.plan-hero h1,
.plan-hero__content h1,
.blog-story__title,
.terms-page__card h1{
font-family:var(--font-heading-1)!important;
font-weight:700!important;
letter-spacing:-.015em!important;
}
h2,
.section-title,
.home-intro__copy .section-title,
.destinations .section-title,
.tours .section-title,
.why-us .section-title,
.collections-home .section-title,
.reviews-section .section-title,
.booking-form .section-title,
.travel-styles .section-title,
.blog-preview .section-title,
.cta-banner h2,
.deal-section__copy .section-title,
.form-info h2,
.plan-aside h2,
.tour-main h2,
.dest-main h2,
.style-intro__content h2,
.style-showcase__lead .section-title,
.style-tips__header .section-title,
.blog-story__section h2{
font-family:var(--font-heading-2)!important;
font-weight:700!important;
letter-spacing:-.01em!important;
}
h3,
h4,
h5,
h6,
.dest-card__info h3,
.tour-card__body h3,
.why-card h3,
.collection-card h3,
.review-card__title,
.home-style-card__head h3,
.home-style-card__body h3,
.blog-card__content h3,
.style-dest-card__body h3,
.style-quick-card h3,
.dest-other h4,
.tour-price-card h3,
.dest-cta-card h3,
.footer h4,
.footer__brand-title span,
.brand-strip__label,
.brand-chip__icon{
font-family:var(--font-heading-3)!important;
letter-spacing:-.005em!important;
}
.nav__link,
.nav__dropdown a,
.nav__cta,
.btn,
.tour-card__cta,
.section-eyebrow,
.hero__eyebrow,
.tour-card__badge,
.collection-card__pill,
.header-promo,
.footer__brand-cta,
.plan-block legend{
font-family:var(--font-heading-2)!important;
}
.hero__title strong{
line-height:.96!important;
}
.home-intro__text p:first-child::first-letter,
.trust-num,
.review-source__score,
.plan-aside span,
.dest-fact-card strong,
.tour-facts strong{
font-family:var(--font-heading-1)!important;
}

/* === DIRECT CLIENT LOGO IMAGE === */
.logo{
min-width:clamp(190px,15vw,252px)!important;
display:flex!important;
align-items:center!important;
}
.logo__mark{
display:block!important;
width:clamp(185px,14.2vw,246px)!important;
height:auto!important;
max-width:none!important;
max-height:78px!important;
object-fit:contain!important;
object-position:left center!important;
filter:none!important;
}
.site-header--overlay:not(.is-solid) .logo__mark{
filter:drop-shadow(0 10px 22px rgba(0,0,0,.24))!important;
}
.footer__brand-title{
align-items:center!important;
gap:0!important;
}
.footer__brand-logo{
display:block!important;
width:min(100%,300px)!important;
height:auto!important;
max-height:none!important;
object-fit:contain!important;
padding:12px 14px!important;
border-radius:8px!important;
background:rgba(255,255,255,.96)!important;
box-shadow:0 18px 38px rgba(0,0,0,.18)!important;
}
.terms-shell .policy-nav img,
.login-card__brand img,
.admin-mobile-bar img,
.sidebar-brand img,
.brand-logo{
object-fit:contain!important;
}
@media(max-width:980px){
.logo{
min-width:170px!important;
}
.logo__mark{
width:176px!important;
max-height:62px!important;
}
.footer__brand-logo{
width:250px!important;
}
}

/* === CINEMATIC BRAND STRIP === */
.brand-strip{
isolation:isolate!important;
padding:18px 0!important;
background:
radial-gradient(ellipse at 18% 0%,rgba(201,151,74,.28) 0%,rgba(201,151,74,0) 34%),
radial-gradient(ellipse at 86% 100%,rgba(28,143,116,.22) 0%,rgba(28,143,116,0) 38%),
linear-gradient(135deg,#061423 0%,#0a1d3d 42%,#111b5a 72%,#071527 100%)!important;
border-top:1px solid rgba(255,255,255,.08)!important;
border-bottom:1px solid rgba(200,169,106,.18)!important;
box-shadow:inset 0 1px 0 rgba(255,255,255,.08),inset 0 -60px 120px rgba(0,0,0,.26)!important;
}
.brand-strip::before{
background:
linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px),
linear-gradient(0deg,rgba(255,255,255,.03) 1px,transparent 1px),
radial-gradient(circle at 20% 48%,rgba(255,255,255,.16),transparent 2px),
radial-gradient(circle at 74% 42%,rgba(200,169,106,.24),transparent 2px)!important;
background-size:72px 72px,72px 72px,360px 120px,420px 120px!important;
opacity:.62!important;
mask-image:linear-gradient(90deg,transparent 0%,#000 13%,#000 87%,transparent 100%)!important;
}
.brand-strip::after{
content:''!important;
position:absolute!important;
inset:0!important;
z-index:0!important;
pointer-events:none!important;
background:
linear-gradient(105deg,transparent 0%,rgba(255,255,255,.11) 44%,rgba(255,255,255,.02) 52%,transparent 64%),
linear-gradient(180deg,rgba(255,255,255,.08),transparent 44%,rgba(0,0,0,.18))!important;
mix-blend-mode:screen!important;
opacity:.48!important;
}

/* === AVT ABOUT PAGE === */
.avt-about-page{
background:#fff;
color:#050505;
}
.avt-about-page .container{max-width:1180px}
.avt-about-hero-v2{
position:relative;
min-height:min(760px,calc(100vh - 96px));
display:flex;
align-items:center;
overflow:hidden;
background-image:var(--about-hero-image);
background-size:cover;
background-position:center;
isolation:isolate;
}
.avt-about-hero-v2__shade{
position:absolute;
inset:0;
z-index:0;
background:
linear-gradient(90deg,rgba(5,17,32,.86) 0%,rgba(5,17,32,.66) 38%,rgba(5,17,32,.18) 100%),
linear-gradient(180deg,rgba(0,0,0,.12),rgba(0,0,0,.32));
}
.avt-about-hero-v2__inner{
position:relative;
z-index:1;
max-width:760px!important;
margin-left:max(24px,calc((100vw - 1180px)/2));
padding:96px 0;
color:#fff;
}
.avt-kicker{
margin:0 0 14px;
font-family:Arial,Helvetica,sans-serif!important;
font-size:.82rem;
font-weight:800;
letter-spacing:.18em!important;
text-transform:uppercase;
color:#c99a4b;
}
.avt-about-hero-v2 h1{
margin:0 0 22px;
font-family:Arial,Helvetica,sans-serif!important;
font-size:clamp(3.2rem,6.4vw,6.8rem);
line-height:.96;
font-weight:900!important;
letter-spacing:-.045em!important;
color:#fff;
text-wrap:balance;
}
.avt-about-hero-v2 p:not(.avt-kicker){
max-width:660px;
margin:0;
font-family:Arial,Helvetica,sans-serif!important;
font-size:clamp(1.02rem,1.28vw,1.28rem);
line-height:1.72;
color:rgba(255,255,255,.9);
}
.avt-hero-actions{
display:flex;
flex-wrap:wrap;
gap:14px 18px;
align-items:center;
margin-top:34px;
}
.avt-hero-actions a,
.avt-hero-actions span{
font-family:Arial,Helvetica,sans-serif!important;
font-weight:800;
font-size:.9rem;
letter-spacing:.04em;
}
.avt-hero-actions a{
display:inline-flex;
min-height:48px;
align-items:center;
padding:0 24px;
color:#071527;
background:#fff;
box-shadow:0 18px 44px rgba(0,0,0,.24);
}
.avt-hero-actions span{
color:#fff;
opacity:.86;
}
.avt-stats-band{
position:relative;
z-index:3;
margin-top:-54px;
}
.avt-stats-grid{
display:grid;
grid-template-columns:repeat(4,minmax(0,1fr));
background:#fff;
box-shadow:0 26px 80px rgba(7,21,39,.18);
border:1px solid rgba(255,255,255,.56);
}
.avt-stat{
padding:28px 30px;
border-right:1px solid rgba(7,21,39,.08);
}
.avt-stat:last-child{border-right:0}
.avt-stat strong{
display:block;
font-family:Arial,Helvetica,sans-serif!important;
font-size:clamp(2rem,3vw,3.2rem);
line-height:1;
font-weight:900;
letter-spacing:-.04em;
color:#0059aa;
}
.avt-stat span{
display:block;
margin-top:8px;
font-family:Arial,Helvetica,sans-serif!important;
font-size:.86rem;
font-weight:800;
line-height:1.35;
letter-spacing:.08em;
text-transform:uppercase;
color:#263238;
}
.avt-journey-v2{
padding:112px 0 96px;
background:
radial-gradient(circle at 16% 20%,rgba(201,154,75,.16),transparent 28%),
linear-gradient(135deg,#061423 0%,#0a2740 48%,#071527 100%);
color:#fff;
}
.avt-section-lead{
display:grid;
grid-template-columns:minmax(0,.76fr) minmax(0,1fr);
gap:42px;
align-items:end;
margin-bottom:46px;
}
.avt-section-lead h2{
margin:0;
font-family:Arial,Helvetica,sans-serif!important;
font-size:clamp(2rem,4vw,4.6rem);
line-height:1;
font-weight:900!important;
letter-spacing:-.04em!important;
color:#fff;
}
.avt-section-lead p:not(.avt-kicker){
margin:0;
font-family:Arial,Helvetica,sans-serif!important;
font-size:1.05rem;
line-height:1.7;
color:rgba(255,255,255,.78);
}
.avt-section-lead--center{
display:block;
max-width:760px;
margin-left:auto;
margin-right:auto;
text-align:center;
}
.avt-section-lead--center h2{color:#071527}
.avt-milestone-v2-grid{
display:grid;
grid-template-columns:repeat(3,minmax(0,1fr));
gap:18px;
}
.avt-milestone-v2{
position:relative;
min-height:288px;
padding:28px;
overflow:hidden;
background:rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.14);
box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 22px 54px rgba(0,0,0,.18);
}
.avt-milestone-v2::after{
content:'';
position:absolute;
left:0;
right:0;
bottom:0;
height:4px;
background:linear-gradient(90deg,#c99a4b,#0ea5a4);
}
.avt-milestone-v2__year{
font-family:Arial,Helvetica,sans-serif!important;
font-size:3.6rem;
line-height:.9;
font-weight:900;
letter-spacing:-.06em;
color:#fff;
}
.avt-milestone-v2__icon{
position:absolute;
top:28px;
right:28px;
display:grid;
place-items:center;
width:58px;
height:58px;
border-radius:50%;
color:#c99a4b;
background:rgba(255,255,255,.1);
}
.avt-milestone-v2__icon svg{
width:34px;
height:34px;
fill:none;
stroke:currentColor;
stroke-width:2.2;
stroke-linecap:round;
stroke-linejoin:round;
}
.avt-milestone-v2 h3{
margin:64px 0 12px;
font-family:Arial,Helvetica,sans-serif!important;
font-size:1.24rem;
font-weight:900;
letter-spacing:0!important;
color:#fff;
}
.avt-milestone-v2 p{
margin:0;
font-family:Arial,Helvetica,sans-serif!important;
font-size:.98rem;
line-height:1.66;
color:rgba(255,255,255,.78);
}
.avt-founder-v2{
padding:96px 0;
background:#fff;
}
.avt-founder-v2__grid{
display:grid;
grid-template-columns:minmax(360px,.85fr) minmax(0,1.15fr);
gap:58px;
align-items:start;
}
.avt-founder-v2__quote{
position:relative;
padding:42px;
background:#f6f8f8;
border-left:6px solid #c99a4b;
box-shadow:0 28px 70px rgba(7,21,39,.1);
}
.avt-founder-v2__quote span{
position:absolute;
top:8px;
right:28px;
font-family:Georgia,serif;
font-size:8rem;
line-height:1;
color:rgba(0,89,170,.12);
}
.avt-founder-v2 h2{
margin:0 0 20px;
font-family:Arial,Helvetica,sans-serif!important;
font-size:clamp(1.8rem,2.8vw,3rem);
line-height:1.06;
font-weight:900!important;
letter-spacing:-.035em!important;
color:#071527;
}
.avt-founder-v2__quote p,
.avt-founder-v2__copy p,
.avt-founder-v2__copy li{
font-family:Arial,Helvetica,sans-serif!important;
font-size:1.03rem;
line-height:1.72;
color:#1b2a33;
}
.avt-founder-v2__quote strong,
.avt-founder-v2__quote small{
display:block;
font-family:Arial,Helvetica,sans-serif!important;
}
.avt-founder-v2__quote strong{margin-top:22px;font-size:1.05rem;color:#071527}
.avt-founder-v2__quote small{margin-top:4px;color:#69767c}
.avt-founder-v2__copy h3{
margin:0 0 14px;
font-family:Arial,Helvetica,sans-serif!important;
font-size:1rem;
font-weight:900;
letter-spacing:.1em!important;
text-transform:uppercase;
color:#0059aa;
}
.avt-founder-v2__copy h3:not(:first-child){margin-top:36px}
.avt-founder-v2__copy ul{margin:0;padding-left:20px;display:grid;gap:10px}
.avt-profile-v2{
padding:96px 0;
background:#eef3f3;
}
.avt-profile-v2__grid{
display:grid;
grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);
gap:58px;
align-items:start;
}
.avt-profile-v2 h2,
.avt-contact-v2 h2{
margin:0 0 18px;
font-family:Arial,Helvetica,sans-serif!important;
font-size:clamp(2rem,3.4vw,4rem);
line-height:1;
font-weight:900!important;
letter-spacing:-.04em!important;
color:#071527;
}
.avt-profile-v2 p,
.avt-contact-v2 p{
margin:0;
font-family:Arial,Helvetica,sans-serif!important;
font-size:1.04rem;
line-height:1.72;
color:#263238;
}
.avt-profile-table{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:14px;
}
.avt-profile-table div{
padding:24px;
min-height:130px;
background:#fff;
box-shadow:0 20px 46px rgba(7,21,39,.08);
}
.avt-profile-table span{
display:block;
font-family:Arial,Helvetica,sans-serif!important;
font-size:.75rem;
font-weight:900;
letter-spacing:.14em;
text-transform:uppercase;
color:#c99a4b;
margin-bottom:12px;
}
.avt-profile-table strong{
font-family:Arial,Helvetica,sans-serif!important;
font-size:1.04rem;
line-height:1.45;
color:#071527;
}
.avt-strength-v2{
padding:96px 0;
background:#fff;
}
.avt-strength-v2__grid{
display:grid;
grid-template-columns:repeat(4,minmax(0,1fr));
gap:18px;
}
.avt-strength-v2__grid article{
padding:26px;
background:#071527;
color:#fff;
}
.avt-strength-v2__grid span{
display:block;
font-family:Arial,Helvetica,sans-serif!important;
font-size:2.4rem;
font-weight:900;
color:#c99a4b;
margin-bottom:32px;
}
.avt-strength-v2__grid p{
margin:0;
font-family:Arial,Helvetica,sans-serif!important;
font-size:.98rem;
line-height:1.66;
color:rgba(255,255,255,.86);
}
.avt-contact-v2{
padding:88px 0;
background:#071527;
color:#fff;
}
.avt-contact-v2__grid{
display:grid;
grid-template-columns:minmax(0,.8fr) minmax(0,1fr);
gap:48px;
align-items:start;
}
.avt-contact-v2 h2,
.avt-contact-v2 p{color:#fff}
.avt-contact-card-v2{
padding:32px;
background:rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.14);
}
.avt-contact-card-v2 h3{
margin:0 0 16px;
font-family:Arial,Helvetica,sans-serif!important;
font-size:1.35rem;
font-weight:900;
color:#fff;
}
.avt-contact-card-v2 ul{list-style:none;margin:0;padding:0;display:grid;gap:12px}
.avt-contact-card-v2 li,
.avt-contact-card-v2 a,
.avt-contact-card-v2 span,
.avt-contact-card-v2 strong{
font-family:Arial,Helvetica,sans-serif!important;
font-size:1rem;
line-height:1.55;
color:#fff;
}
.avt-contact-card-v2 a{text-decoration:underline;text-underline-offset:3px}
@media(max-width:1100px){
.avt-milestone-v2-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.avt-strength-v2__grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:900px){
.avt-about-hero-v2{min-height:680px}
.avt-about-hero-v2__inner{margin-left:auto;padding:78px 22px}
.avt-stats-grid,
.avt-section-lead,
.avt-founder-v2__grid,
.avt-profile-v2__grid,
.avt-contact-v2__grid{grid-template-columns:1fr}
.avt-stats-band{margin-top:0}
.avt-milestone-v2-grid,
.avt-profile-table{grid-template-columns:1fr}
}
@media(max-width:620px){
.avt-about-hero-v2{min-height:620px}
.avt-about-hero-v2 h1{font-size:3.4rem}
.avt-stats-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.avt-stat{padding:22px 18px}
.avt-journey-v2,
.avt-founder-v2,
.avt-profile-v2,
.avt-strength-v2,
.avt-contact-v2{padding:64px 0}
.avt-milestone-v2{min-height:auto;padding:24px}
.avt-strength-v2__grid{grid-template-columns:1fr}
.avt-founder-v2__quote{padding:30px 24px}
.avt-hero-actions{align-items:flex-start;flex-direction:column}
}

/* === AVT ABOUT PAGE V3: balanced editorial layout === */
.avt-about-page-v3{
background:#fff;
color:#111827;
}
.avt-about-page-v3 .container{
max-width:1180px;
}
.avt-v3-hero{
position:relative;
min-height:460px;
display:grid;
place-items:center;
overflow:hidden;
background-image:var(--about-hero-image);
background-position:center 48%;
background-size:cover;
background-repeat:no-repeat;
isolation:isolate;
box-shadow:inset 0 -120px 120px rgba(0,0,0,.18);
animation:avtHeroDrift 18s ease-in-out infinite alternate;
}
.avt-v3-hero__shade{
position:absolute;
inset:0;
background:
radial-gradient(circle at 50% 45%,rgba(255,255,255,.12),transparent 28%),
linear-gradient(180deg,rgba(3,30,54,.42),rgba(3,30,54,.54)),
linear-gradient(90deg,rgba(0,0,0,.38),rgba(0,0,0,.08),rgba(0,0,0,.38));
z-index:0;
}
.avt-v3-hero::after{
content:'';
position:absolute;
inset:auto 0 0;
height:110px;
z-index:1;
background:linear-gradient(180deg,transparent,rgba(255,255,255,.96));
pointer-events:none;
}
.avt-v3-hero__inner{
position:relative;
z-index:2;
text-align:center;
padding:120px 0;
}
.avt-v3-hero p,
.avt-v3-contact p,
.avt-v3-heading p{
margin:0 0 10px;
font-family:Arial,Helvetica,sans-serif!important;
font-size:.78rem;
font-weight:800;
letter-spacing:.18em!important;
text-transform:uppercase;
color:#c99a4b;
}
.avt-v3-hero h1{
margin:0;
font-family:Arial,Helvetica,sans-serif!important;
font-size:clamp(3rem,5.2vw,5.4rem);
font-weight:900!important;
line-height:1;
letter-spacing:-.035em!important;
color:#fff;
text-shadow:0 10px 22px rgba(0,0,0,.36),0 28px 70px rgba(0,0,0,.32);
filter:drop-shadow(0 18px 18px rgba(0,0,0,.14));
}
.avt-v3-hero h1::after{
content:'';
display:block;
width:112px;
height:3px;
margin:24px auto 0;
background:linear-gradient(90deg,transparent,#c99a4b,#fff,#c99a4b,transparent);
border-radius:999px;
}
.avt-v3-main{
padding:86px 0 98px;
background:
radial-gradient(circle at 12% 8%,rgba(201,154,75,.12),transparent 22%),
radial-gradient(circle at 88% 12%,rgba(0,89,170,.10),transparent 24%),
#fff;
}
.avt-v3-heading{
max-width:720px;
margin:0 auto 52px;
text-align:center;
}
.avt-v3-heading h2{
margin:0;
font-family:Arial,Helvetica,sans-serif!important;
font-size:clamp(2rem,3vw,3.2rem);
font-weight:900!important;
line-height:1;
letter-spacing:-.02em!important;
color:#020617;
}
.avt-v3-heading::after{
content:'';
display:block;
width:128px;
height:2px;
margin:22px auto 0;
background:#111;
}
.avt-v3-layout{
display:grid;
grid-template-columns:minmax(360px,430px) minmax(0,1fr);
gap:68px;
align-items:start;
}
.avt-v3-years{
position:relative;
display:grid;
gap:18px;
}
.avt-v3-years::before{
content:'';
position:absolute;
left:34px;
top:20px;
bottom:20px;
width:2px;
background:linear-gradient(180deg,#0059aa,#c99a4b);
opacity:.28;
}
.avt-v3-year-card{
position:relative;
display:grid;
grid-template-columns:82px minmax(0,1fr);
gap:18px;
padding:22px 22px 22px 0;
border-radius:14px;
transition:transform .22s ease,background .22s ease,box-shadow .22s ease;
}
.avt-v3-year-card:hover{
transform:translateX(6px);
background:rgba(255,255,255,.72);
box-shadow:0 20px 48px rgba(7,21,39,.08);
}
.avt-v3-year-card::before{
content:'';
position:absolute;
left:25px;
top:29px;
width:20px;
height:20px;
border-radius:50%;
background:#0059aa;
box-shadow:0 0 0 8px #fff;
z-index:1;
}
.avt-v3-year-card__year{
position:relative;
z-index:2;
padding-top:36px;
font-family:Arial,Helvetica,sans-serif!important;
font-size:2rem;
font-weight:900;
line-height:1;
letter-spacing:-.02em;
color:#0059aa;
text-align:left;
}
.avt-v3-year-card__year::after{
content:'';
display:block;
width:42px;
height:2px;
margin-top:10px;
background:linear-gradient(90deg,#0059aa,#c99a4b);
}
.avt-v3-year-card h3{
margin:0 0 8px;
font-family:Arial,Helvetica,sans-serif!important;
font-size:1.05rem;
font-weight:900;
line-height:1.25;
letter-spacing:0!important;
color:#071527;
}
.avt-v3-year-card p{
margin:0;
font-family:Arial,Helvetica,sans-serif!important;
font-size:.96rem;
line-height:1.65;
color:#24323a;
}
.avt-v3-content{
display:grid;
gap:30px;
}
.avt-v3-copy-block{
padding-bottom:30px;
border-bottom:1px solid #e5ecec;
}
.avt-v3-copy-block h3,
.avt-v3-copy-grid h3{
margin:0 0 14px;
font-family:Arial,Helvetica,sans-serif!important;
font-size:1.08rem;
font-weight:900;
letter-spacing:.06em!important;
text-transform:uppercase;
color:#071527;
}
.avt-v3-founder{
padding:30px 34px;
border-left:4px solid #c99a4b;
background:
linear-gradient(135deg,rgba(255,255,255,.96),rgba(246,248,248,.98)),
radial-gradient(circle at 100% 0%,rgba(201,154,75,.18),transparent 34%);
box-shadow:0 28px 72px rgba(7,21,39,.12);
position:relative;
overflow:hidden;
}
.avt-v3-founder::after{
content:'';
position:absolute;
right:24px;
top:10px;
font-family:Georgia,serif;
font-size:7rem;
line-height:1;
content:'“';
color:rgba(0,89,170,.10);
}
.avt-v3-copy-block p,
.avt-v3-copy-block li,
.avt-v3-copy-grid p{
font-family:Arial,Helvetica,sans-serif!important;
font-size:1.02rem;
line-height:1.78;
color:#1f2d35;
}
.avt-v3-copy-block p{
margin:0 0 14px;
}
.avt-v3-copy-block ul{
margin:0;
padding-left:20px;
display:grid;
gap:10px;
}
.avt-v3-signature{
margin-top:20px!important;
font-style:italic;
}
.avt-v3-signature strong{
font-style:normal;
font-weight:900;
}
.avt-v3-copy-grid{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:18px;
}
.avt-v3-copy-grid article{
padding:26px;
background:
linear-gradient(135deg,#071527,#0b2b47);
box-shadow:0 18px 44px rgba(7,21,39,.18);
position:relative;
overflow:hidden;
}
.avt-v3-copy-grid article::after{
content:'';
position:absolute;
left:0;
right:0;
bottom:0;
height:4px;
background:linear-gradient(90deg,#0059aa,#c99a4b);
}
.avt-v3-copy-grid h3,
.avt-v3-copy-grid p{
color:#fff;
}
.avt-v3-contact{
padding:72px 0;
background:#eef3f3;
}
.avt-v3-contact__grid{
display:grid;
grid-template-columns:minmax(0,.8fr) minmax(0,1fr);
gap:42px;
align-items:start;
}
.avt-v3-contact h2{
margin:0;
font-family:Arial,Helvetica,sans-serif!important;
font-size:clamp(1.8rem,3vw,3rem);
font-weight:900!important;
line-height:1;
letter-spacing:-.03em!important;
color:#071527;
}
.avt-v3-contact article{
padding:30px;
background:#fff;
box-shadow:0 20px 54px rgba(7,21,39,.08);
}
.avt-v3-contact__offices{
display:grid;
gap:22px;
}

@keyframes avtHeroDrift{
from{background-position:center 48%}
to{background-position:center 42%}
}
@media(prefers-reduced-motion:reduce){
.avt-v3-hero{animation:none}
.avt-v3-year-card{transition:none}
}
.avt-v3-contact h3{
margin:0 0 16px;
font-family:Arial,Helvetica,sans-serif!important;
font-size:1.25rem;
font-weight:900;
color:#071527;
}
.avt-v3-contact ul{
list-style:none;
margin:0;
padding:0;
display:grid;
gap:10px;
}
.avt-v3-contact li,
.avt-v3-contact a,
.avt-v3-contact span,
.avt-v3-contact strong{
font-family:Arial,Helvetica,sans-serif!important;
font-size:1rem;
line-height:1.55;
color:#1f2d35;
}
.avt-v3-contact a{
text-decoration:underline;
text-underline-offset:3px;
}
@media(max-width:980px){
.avt-v3-layout,
.avt-v3-contact__grid{
grid-template-columns:1fr;
gap:42px;
}
.avt-v3-years{
max-width:680px;
margin:0 auto;
}
}
@media(max-width:640px){
.avt-v3-hero{
min-height:340px;
}
.avt-v3-main{
padding:56px 0 64px;
}
.avt-v3-layout{
gap:34px;
}
.avt-v3-year-card{
grid-template-columns:72px minmax(0,1fr);
gap:14px;
}
.avt-v3-years::before{
left:29px;
}
.avt-v3-year-card::before{
left:20px;
}
.avt-v3-year-card__year{
font-size:1.6rem;
}
.avt-v3-founder{
padding:24px 22px;
}
.avt-v3-copy-grid{
grid-template-columns:1fr;
}
}
.avt-about-page .container{
max-width:1180px;
}
.avt-about-hero{
position:relative;
min-height:clamp(260px,32vw,430px);
display:grid;
place-items:center;
overflow:hidden;
background-image:var(--about-hero-image);
background-size:cover;
background-position:center 45%;
isolation:isolate;
}
.avt-about-hero__overlay{
position:absolute;
inset:0;
z-index:0;
background:linear-gradient(180deg,rgba(5,42,72,.56),rgba(5,42,72,.36)),rgba(0,0,0,.12);
}
.avt-about-hero__inner{
position:relative;
z-index:1;
text-align:center;
padding:76px 0;
}
.avt-about-hero h1{
margin:0;
font-family:Arial,Helvetica,sans-serif!important;
font-size:clamp(2.4rem,5vw,4.7rem);
font-weight:800!important;
line-height:1;
letter-spacing:0!important;
color:#fff;
text-shadow:0 8px 24px rgba(0,0,0,.35);
}
.avt-journey-section{
padding:88px 0 78px;
background:#fff;
}
.avt-section-title{
text-align:center;
margin:0 auto 62px;
}
.avt-section-title h2{
margin:0;
font-family:Arial,Helvetica,sans-serif!important;
font-size:clamp(1.85rem,2.5vw,2.45rem);
font-weight:800!important;
letter-spacing:.035em!important;
color:#020202;
text-transform:uppercase;
}
.avt-section-title span{
display:block;
width:168px;
height:2px;
margin:20px auto 0;
background:#111;
}
.avt-section-title--compact{
margin-bottom:38px;
}
.avt-journey-layout{
display:grid;
grid-template-columns:minmax(0,1.08fr) minmax(380px,.92fr);
gap:54px;
align-items:start;
}
.avt-timeline{
position:relative;
width:100%;
max-width:610px;
min-height:0;
padding:0;
margin:0 auto;
}
.avt-timeline::before{
content:'';
position:absolute;
top:118px;
bottom:118px;
left:50%;
width:4px;
background:#0059aa;
transform:translateX(-50%);
border-radius:999px;
}
.avt-timeline__item{
position:relative;
display:grid;
grid-template-columns:minmax(0,1fr) 42px minmax(0,1fr);
min-height:236px;
padding:0;
align-items:center;
}
.avt-timeline__item:last-child{
padding-bottom:0;
}
.avt-timeline__item::before{
content:'';
position:absolute;
left:50%;
top:50%;
width:21px;
height:21px;
border-radius:50%;
background:#0059aa;
transform:translate(-50%,-50%);
box-shadow:0 0 0 10px #fff;
z-index:2;
}
.avt-timeline__content{
max-width:250px;
min-height:0;
display:flex;
flex-direction:column;
justify-content:center;
padding-top:0;
}
.avt-timeline__content strong{
display:block;
font-family:Arial,Helvetica,sans-serif!important;
font-size:2.05rem;
line-height:1;
font-weight:800;
color:#0059aa;
letter-spacing:.03em;
margin-bottom:12px;
}
.avt-timeline__content p{
margin:0;
font-family:Arial,Helvetica,sans-serif!important;
font-size:1rem;
line-height:1.62;
color:#050505;
}
.avt-timeline__icon{
display:flex;
justify-content:center;
align-items:center;
width:66px;
height:66px;
color:#c39a58;
margin-top:0;
}
.avt-timeline__icon svg{
width:54px;
height:54px;
fill:none;
stroke:currentColor;
stroke-width:2.15;
stroke-linecap:round;
stroke-linejoin:round;
}
.avt-timeline__item--left .avt-timeline__content{
grid-column:1;
justify-self:end;
text-align:right;
margin-right:30px;
}
.avt-timeline__item--left .avt-timeline__icon{
grid-column:3;
justify-self:start;
margin-left:30px;
}
.avt-timeline__item--right .avt-timeline__content{
grid-column:3;
justify-self:start;
text-align:left;
margin-left:30px;
}
.avt-timeline__item--right .avt-timeline__icon{
grid-column:1;
justify-self:end;
margin-right:30px;
}
.avt-about-copy{
padding-top:4px;
}
.avt-milestone-grid{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:18px;
align-items:stretch;
}
.avt-milestone-card{
position:relative;
min-height:212px;
padding:24px 24px 26px;
overflow:hidden;
background:
linear-gradient(180deg,rgba(255,255,255,.96),rgba(249,252,252,.96)),
radial-gradient(circle at 100% 0%,rgba(0,89,170,.08),transparent 38%);
border:1px solid rgba(0,89,170,.13);
border-radius:10px;
box-shadow:0 18px 42px rgba(11,38,58,.08);
}
.avt-milestone-card__top{
display:flex;
align-items:center;
justify-content:space-between;
gap:18px;
margin-bottom:18px;
}
.avt-milestone-card__top strong{
font-family:Arial,Helvetica,sans-serif!important;
font-size:2.35rem;
line-height:1;
font-weight:800;
letter-spacing:.02em;
color:#0059aa;
}
.avt-milestone-card__icon{
display:grid;
place-items:center;
width:62px;
height:62px;
flex:0 0 auto;
border-radius:50%;
background:#fff;
color:#c39a58;
box-shadow:inset 0 0 0 1px rgba(195,154,88,.22),0 12px 26px rgba(20,44,64,.08);
}
.avt-milestone-card__icon svg{
width:38px;
height:38px;
fill:none;
stroke:currentColor;
stroke-width:2.2;
stroke-linecap:round;
stroke-linejoin:round;
}
.avt-milestone-card p{
position:relative;
z-index:1;
margin:0;
font-family:Arial,Helvetica,sans-serif!important;
font-size:1rem;
line-height:1.64;
color:#132027;
}
.avt-milestone-card__line{
position:absolute;
left:24px;
right:24px;
bottom:0;
height:4px;
background:linear-gradient(90deg,#0059aa,#c39a58);
}
.avt-milestone-card:nth-child(2n){
transform:translateY(28px);
}
.avt-milestone-card:nth-child(2n) .avt-milestone-card__top{
flex-direction:row-reverse;
}
.avt-founder-note,
.avt-copy-section{
max-width:560px;
}
.avt-founder-note h3,
.avt-copy-section h3{
margin:0 0 8px;
font-family:Arial,Helvetica,sans-serif!important;
font-size:1.08rem;
font-weight:800;
letter-spacing:0!important;
color:#020202;
}
.avt-founder-note p,
.avt-copy-section p{
margin:0 0 14px;
font-family:Arial,Helvetica,sans-serif!important;
font-size:1rem;
line-height:1.68;
color:#050505;
}
.avt-copy-list{
margin:8px 0 0;
padding-left:24px;
display:grid;
gap:14px;
}
.avt-copy-list li,
.avt-copy-list strong{
font-family:Arial,Helvetica,sans-serif!important;
font-size:1.02rem;
line-height:1.62;
color:#050505;
}
.avt-copy-list strong{
font-weight:800;
}
.avt-founder-note__signature{
margin-top:4px!important;
font-style:italic;
}
.avt-founder-note__signature strong{
font-style:normal;
font-weight:800;
}
.avt-copy-section{
margin-top:28px;
}
.avt-copy-section h3{
margin-bottom:18px;
font-size:1rem;
text-transform:uppercase;
}
.avt-profile-section{
padding:70px 0;
background:#f6f8f8;
border-top:1px solid rgba(0,0,0,.06);
border-bottom:1px solid rgba(0,0,0,.06);
}
.avt-profile-grid{
display:grid;
grid-template-columns:minmax(0,.86fr) minmax(0,1.14fr);
gap:48px;
align-items:start;
}
.avt-eyebrow{
margin:0 0 10px;
font-family:Arial,Helvetica,sans-serif!important;
font-size:.78rem;
font-weight:800;
letter-spacing:.18em!important;
color:#0757a8;
text-transform:uppercase;
}
.avt-profile-copy h2,
.avt-office-grid h2{
margin:0 0 16px;
font-family:Arial,Helvetica,sans-serif!important;
font-size:clamp(1.6rem,2.4vw,2.25rem);
font-weight:800!important;
letter-spacing:0!important;
color:#07111a;
}
.avt-profile-copy p,
.avt-office-grid p{
margin:0;
font-family:Arial,Helvetica,sans-serif!important;
font-size:1.02rem;
line-height:1.7;
color:#263238;
}
.avt-facts{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:14px;
}
.avt-fact{
min-height:118px;
padding:22px;
background:#fff;
border:1px solid rgba(7,87,168,.12);
box-shadow:0 16px 38px rgba(20,44,64,.08);
}
.avt-fact span{
display:block;
margin-bottom:10px;
font-family:Arial,Helvetica,sans-serif!important;
font-size:.76rem;
font-weight:800;
letter-spacing:.12em;
text-transform:uppercase;
color:#c08a39;
}
.avt-fact strong{
display:block;
font-family:Arial,Helvetica,sans-serif!important;
font-size:1.05rem;
line-height:1.45;
color:#07111a;
}
.avt-strength-section{
padding:70px 0;
background:#fff;
}
.avt-strength-list{
display:grid;
grid-template-columns:repeat(4,minmax(0,1fr));
gap:18px;
}
.avt-strength-list article{
position:relative;
padding:28px 24px 24px;
border-top:4px solid #0757a8;
background:#f8fbfb;
box-shadow:0 16px 34px rgba(20,44,64,.07);
}
.avt-strength-list article::before{
content:'';
position:absolute;
top:15px;
right:18px;
width:28px;
height:28px;
border-radius:50%;
border:2px solid rgba(192,138,57,.5);
}
.avt-strength-list p{
margin:0;
font-family:Arial,Helvetica,sans-serif!important;
font-size:.98rem;
line-height:1.62;
color:#14202a;
}
.avt-office-section{
padding:74px 0;
background:#071e33;
color:#fff;
}
.avt-office-grid{
display:grid;
grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);
gap:44px;
align-items:start;
}
.avt-office-grid h2,
.avt-office-grid p{
color:#fff;
}
.avt-office-list{
display:grid;
gap:18px;
}
.avt-office{
padding:26px;
border:1px solid rgba(255,255,255,.18);
background:rgba(255,255,255,.06);
}
.avt-office h3{
margin:0 0 14px;
font-family:Arial,Helvetica,sans-serif!important;
font-size:1.2rem;
font-weight:800;
color:#fff;
}
.avt-office ul{
list-style:none;
padding:0;
margin:0;
display:grid;
gap:10px;
}
.avt-office li,
.avt-office a,
.avt-office span,
.avt-office strong{
font-family:Arial,Helvetica,sans-serif!important;
font-size:.98rem;
line-height:1.5;
color:#fff;
}
.avt-office a{
text-decoration:underline;
text-underline-offset:3px;
}
@media(max-width:1040px){
.avt-journey-layout,
.avt-profile-grid,
.avt-office-grid{
grid-template-columns:1fr;
gap:42px;
}
.avt-milestone-grid{
max-width:760px;
margin:0 auto;
}
.avt-timeline{
max-width:610px;
min-height:auto;
margin:0 auto;
}
.avt-about-copy{
max-width:720px;
margin:0 auto;
}
.avt-strength-list{
grid-template-columns:repeat(2,minmax(0,1fr));
}
}
@media(max-width:640px){
.avt-about-hero{
min-height:240px;
}
.avt-journey-section,
.avt-profile-section,
.avt-strength-section,
.avt-office-section{
padding:54px 0;
}
.avt-section-title{
margin-bottom:36px;
}
.avt-timeline::before{
left:18px;
}
.avt-timeline__item{
display:block;
min-height:0;
padding:0 0 34px 52px;
}
.avt-timeline__item::before{
left:18px;
top:8px;
transform:translate(-50%,0);
}
.avt-timeline__content,
.avt-timeline__item--left .avt-timeline__content,
.avt-timeline__item--right .avt-timeline__content{
max-width:none;
min-height:0;
padding:0;
margin:0;
text-align:left;
}
.avt-timeline__icon{
display:none;
}
.avt-timeline__content strong{
font-size:1.75rem;
}
.avt-timeline__content p{
font-size:1rem;
}
.avt-facts,
.avt-strength-list,
.avt-milestone-grid{
grid-template-columns:1fr;
}
.avt-milestone-card:nth-child(2n){
transform:none;
}
.avt-milestone-card:nth-child(2n) .avt-milestone-card__top{
flex-direction:row;
}
}
.brand-strip__inner{
min-height:86px!important;
gap:28px!important;
padding-top:0!important;
padding-bottom:0!important;
}
.brand-strip__label{
position:relative!important;
display:flex!important;
align-items:center!important;
gap:12px!important;
font-family:var(--font-heading-1)!important;
font-size:clamp(1.55rem,2.2vw,2.25rem)!important;
font-weight:700!important;
line-height:1!important;
color:#fff8ea!important;
text-shadow:0 12px 28px rgba(0,0,0,.42)!important;
}
.brand-strip__label::before{
content:''!important;
display:block!important;
width:42px!important;
height:1px!important;
background:linear-gradient(90deg,transparent,#d6ad68)!important;
box-shadow:0 0 20px rgba(214,173,104,.55)!important;
}
.brand-strip__label::after{
content:''!important;
position:absolute!important;
left:54px!important;
right:-20px!important;
bottom:-14px!important;
height:1px!important;
background:linear-gradient(90deg,rgba(214,173,104,.8),transparent)!important;
opacity:.75!important;
}
.brand-strip__items{
gap:16px!important;
}
.brand-chip{
position:relative!important;
overflow:hidden!important;
min-height:58px!important;
padding:11px 18px!important;
border-radius:10px!important;
background:
linear-gradient(135deg,rgba(255,255,255,.16),rgba(255,255,255,.055) 52%,rgba(255,255,255,.11)),
linear-gradient(135deg,rgba(8,22,45,.34),rgba(13,31,70,.15))!important;
border:1px solid rgba(245,224,180,.24)!important;
box-shadow:
0 18px 42px rgba(0,0,0,.24),
inset 0 1px 0 rgba(255,255,255,.16),
inset 0 -1px 0 rgba(0,0,0,.18)!important;
backdrop-filter:blur(14px) saturate(125%)!important;
color:#fff!important;
transition:transform .35s ease,border-color .35s ease,box-shadow .35s ease,background .35s ease!important;
}
.brand-chip::before{
content:''!important;
position:absolute!important;
inset:0!important;
background:linear-gradient(110deg,transparent 0%,rgba(255,255,255,.22) 45%,transparent 62%)!important;
transform:translateX(-120%) skewX(-18deg)!important;
transition:transform .7s ease!important;
pointer-events:none!important;
}
.brand-chip::after{
content:''!important;
position:absolute!important;
inset:1px!important;
border-radius:9px!important;
border:1px solid rgba(255,255,255,.055)!important;
pointer-events:none!important;
}
.brand-chip:hover{
transform:translateY(-3px)!important;
border-color:rgba(214,173,104,.52)!important;
box-shadow:0 24px 58px rgba(0,0,0,.32),0 0 34px rgba(214,173,104,.14),inset 0 1px 0 rgba(255,255,255,.22)!important;
}
.brand-chip:hover::before{
transform:translateX(120%) skewX(-18deg)!important;
}
.brand-chip__icon{
position:relative!important;
z-index:1!important;
flex-basis:38px!important;
width:38px!important;
height:38px!important;
border-radius:12px!important;
font-family:var(--font-heading-2)!important;
font-size:1rem!important;
font-weight:700!important;
box-shadow:0 12px 28px rgba(0,0,0,.26),inset 0 1px 0 rgba(255,255,255,.28)!important;
}
.brand-chip__icon::after{
content:''!important;
position:absolute!important;
inset:7px!important;
border-radius:8px!important;
border:1px solid rgba(255,255,255,.28)!important;
}
.brand-chip__icon--avt{
background:linear-gradient(135deg,#007a45 0%,#16b778 100%)!important;
}
.brand-chip__icon--vtd{
background:linear-gradient(135deg,#b98035 0%,#edc36f 100%)!important;
}
.brand-chip__icon--stay{
background:linear-gradient(135deg,#238bb8 0%,#63d4df 100%)!important;
}
.brand-chip span:last-child{
position:relative!important;
z-index:1!important;
font-family:var(--font-heading-2)!important;
font-size:1rem!important;
font-weight:700!important;
letter-spacing:.01em!important;
text-shadow:0 10px 24px rgba(0,0,0,.32)!important;
}
@media(max-width:980px){
.brand-strip{
padding:22px 0!important;
}
.brand-strip__inner{
min-height:0!important;
grid-template-columns:1fr!important;
gap:18px!important;
}
.brand-strip__label{
justify-content:center!important;
font-size:1.65rem!important;
}
.brand-strip__label::after{
left:50%!important;
right:auto!important;
width:120px!important;
transform:translateX(-50%)!important;
}
.brand-strip__items{
grid-template-columns:1fr!important;
}
.brand-chip{
min-height:58px!important;
}
}

/* === HERO LOGO CONTRAST FIX === */
.site-header--overlay:not(.is-solid) .logo{
position:relative!important;
padding:0!important;
border-radius:0!important;
background:transparent!important;
border:0!important;
box-shadow:none!important;
backdrop-filter:none!important;
isolation:isolate!important;
}
.site-header--overlay:not(.is-solid) .logo::before{
content:''!important;
position:absolute!important;
left:-14px!important;
right:-14px!important;
top:-10px!important;
bottom:-10px!important;
z-index:0!important;
border-radius:999px!important;
background:radial-gradient(ellipse at center,rgba(255,255,255,.34) 0%,rgba(255,255,255,.16) 38%,rgba(255,255,255,0) 72%)!important;
filter:blur(10px)!important;
pointer-events:none!important;
opacity:.92!important;
}
.site-header--overlay:not(.is-solid) .logo__mark{
position:relative!important;
z-index:1!important;
filter:
contrast(1.08)
brightness(1.04)
drop-shadow(0 8px 18px rgba(0,0,0,.22))
drop-shadow(0 0 10px rgba(255,255,255,.08))!important;
}
.site-header--overlay:not(.is-solid) .logo__mark--default{
display:none!important;
}
.site-header--overlay:not(.is-solid) .logo__mark--light{
display:block!important;
filter:
drop-shadow(0 10px 22px rgba(0,0,0,.22))
drop-shadow(0 0 14px rgba(255,255,255,.14))!important;
}
.site-header.is-solid .logo,
.site-header:not(.site-header--overlay) .logo{
padding:0!important;
background:transparent!important;
border:0!important;
box-shadow:none!important;
backdrop-filter:none!important;
}
.site-header.is-solid .logo__mark--default,
.site-header:not(.site-header--overlay) .logo__mark--default{
display:block!important;
}
.site-header.is-solid .logo__mark--light,
.site-header:not(.site-header--overlay) .logo__mark--light{
display:none!important;
}
.site-header.is-solid .logo::before,
.site-header:not(.site-header--overlay) .logo::before{
display:none!important;
}
@media(max-width:980px){
.site-header--overlay:not(.is-solid) .logo{
padding:0!important;
}
.site-header--overlay:not(.is-solid) .logo::before{
left:-10px!important;
right:-10px!important;
top:-8px!important;
bottom:-8px!important;
}
}

/* === CINEMATIC BRAND CARD DETAIL === */
.brand-chip{
gap:15px!important;
padding:12px 18px!important;
}
.brand-chip__icon{
overflow:hidden!important;
isolation:isolate!important;
}
.brand-chip__icon::before{
content:''!important;
position:absolute!important;
inset:-45% -25%!important;
z-index:-1!important;
background:linear-gradient(120deg,transparent 0%,rgba(255,255,255,.42) 45%,transparent 70%)!important;
transform:translateX(-110%) rotate(18deg)!important;
transition:transform .75s ease!important;
}
.brand-chip:hover .brand-chip__icon::before{
transform:translateX(110%) rotate(18deg)!important;
}
.brand-chip__icon--avt::after{
content:'A'!important;
}
.brand-chip__icon--vtd::after{
content:'V'!important;
}
.brand-chip__icon--stay::after{
content:'T'!important;
}
.brand-chip__icon{
font-size:0!important;
}
.brand-chip__icon::after{
display:flex!important;
align-items:center!important;
justify-content:center!important;
inset:6px!important;
font-family:var(--font-heading-1)!important;
font-size:1.15rem!important;
font-weight:700!important;
line-height:1!important;
color:#fff!important;
text-shadow:0 2px 8px rgba(0,0,0,.28)!important;
}
.brand-chip__copy{
position:relative!important;
z-index:1!important;
display:grid!important;
gap:2px!important;
min-width:0!important;
}
.brand-chip__copy > span{
font-family:var(--font-heading-1)!important;
font-size:1.18rem!important;
font-weight:700!important;
line-height:1.05!important;
letter-spacing:.01em!important;
color:#fffaf0!important;
text-shadow:0 12px 24px rgba(0,0,0,.38)!important;
}
.brand-chip__copy small{
font-family:var(--font-heading-2)!important;
font-size:.62rem!important;
font-weight:400!important;
line-height:1.1!important;
letter-spacing:.18em!important;
text-transform:uppercase!important;
color:rgba(245,224,180,.72)!important;
white-space:nowrap!important;
}
.brand-chip:hover .brand-chip__copy > span{
color:#fff!important;
}
.brand-chip:hover .brand-chip__copy small{
color:#f1cc82!important;
}
.brand-chip:nth-child(1){
background:
radial-gradient(circle at 22% 50%,rgba(0,174,105,.25),transparent 34%),
linear-gradient(135deg,rgba(255,255,255,.16),rgba(255,255,255,.055) 55%,rgba(255,255,255,.1))!important;
}
.brand-chip:nth-child(2){
background:
radial-gradient(circle at 22% 50%,rgba(224,177,101,.28),transparent 34%),
linear-gradient(135deg,rgba(255,255,255,.16),rgba(255,255,255,.055) 55%,rgba(255,255,255,.1))!important;
}
.brand-chip:nth-child(3){
background:
radial-gradient(circle at 22% 50%,rgba(83,196,220,.25),transparent 34%),
linear-gradient(135deg,rgba(255,255,255,.16),rgba(255,255,255,.055) 55%,rgba(255,255,255,.1))!important;
}
@media(max-width:980px){
.brand-chip__copy > span{
font-size:1.1rem!important;
}
.brand-chip__copy small{
white-space:normal!important;
}
}

/* === BRAND WALL WITH REAL LOGOS === */
.brand-strip{
padding:0!important;
background:
radial-gradient(ellipse at 50% -10%,rgba(70,92,196,.38),transparent 46%),
linear-gradient(180deg,#111a58 0%,#111a58 calc(100% - 8px),#243fe1 calc(100% - 8px),#263fd7 100%)!important;
border-top:0!important;
border-bottom:0!important;
box-shadow:none!important;
}
.brand-strip::before{
background:
linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px),
linear-gradient(0deg,rgba(255,255,255,.035) 1px,transparent 1px),
radial-gradient(circle at 50% 42%,rgba(255,255,255,.08),transparent 42%)!important;
background-size:84px 84px,84px 84px,auto!important;
opacity:.38!important;
mask-image:none!important;
}
.brand-strip::after{
background:
linear-gradient(180deg,rgba(0,0,0,.06) 0%,rgba(0,0,0,.22) calc(100% - 8px),rgba(255,255,255,.08) calc(100% - 8px),rgba(0,0,0,.08) 100%),
radial-gradient(ellipse at 54% 32%,rgba(255,255,255,.16),transparent 42%)!important;
mix-blend-mode:normal!important;
opacity:1!important;
}
.brand-strip__inner{
min-height:148px!important;
display:grid!important;
grid-template-columns:minmax(150px,260px) 1fr!important;
gap:clamp(36px,6vw,92px)!important;
align-items:center!important;
}
.brand-strip__label{
justify-content:flex-start!important;
font-family:var(--font-heading-1)!important;
font-size:clamp(2rem,3vw,3rem)!important;
font-weight:700!important;
letter-spacing:-.02em!important;
color:rgba(124,139,214,.54)!important;
text-shadow:0 16px 34px rgba(0,0,0,.28)!important;
}
.brand-strip__label::before,
.brand-strip__label::after{
display:none!important;
}
.brand-strip__items{
display:grid!important;
grid-template-columns:repeat(3,minmax(0,1fr))!important;
gap:clamp(42px,7vw,110px)!important;
align-items:center!important;
}
.brand-logo-item{
position:relative!important;
display:flex!important;
align-items:center!important;
justify-content:center!important;
min-width:0!important;
min-height:92px!important;
padding:0!important;
background:transparent!important;
border:0!important;
box-shadow:none!important;
text-decoration:none!important;
opacity:.44!important;
filter:saturate(.7) brightness(.85)!important;
transition:opacity .35s ease,filter .35s ease,transform .35s ease!important;
}
.brand-logo-item::before{
content:''!important;
position:absolute!important;
left:50%!important;
top:50%!important;
width:160px!important;
height:68px!important;
transform:translate(-50%,-50%)!important;
background:radial-gradient(ellipse,rgba(105,125,220,.22),transparent 70%)!important;
filter:blur(10px)!important;
opacity:.45!important;
pointer-events:none!important;
}
.brand-logo-item img{
position:relative!important;
z-index:1!important;
display:block!important;
max-width:100%!important;
height:auto!important;
object-fit:contain!important;
filter:brightness(0) invert(1) sepia(14%) saturate(1260%) hue-rotate(190deg) brightness(.72)!important;
}
.brand-logo-item--avt img{
max-height:58px!important;
}
.brand-logo-item--vtd img{
max-height:68px!important;
max-width:230px!important;
}
.brand-logo-item--stay img{
max-height:72px!important;
}
.brand-logo-item:hover{
opacity:.9!important;
filter:saturate(1) brightness(1.05)!important;
transform:translateY(-2px)!important;
}
.brand-logo-item:hover img{
filter:brightness(0) invert(1) sepia(12%) saturate(1500%) hue-rotate(188deg) brightness(1)!important;
}
@media(max-width:980px){
.brand-strip{
padding:28px 0 0!important;
}
.brand-strip__inner{
min-height:0!important;
grid-template-columns:1fr!important;
gap:24px!important;
}
.brand-strip__label{
justify-content:center!important;
font-size:2.25rem!important;
}
.brand-strip__items{
grid-template-columns:1fr!important;
gap:22px!important;
padding-bottom:24px!important;
}
.brand-logo-item{
min-height:74px!important;
}
.brand-logo-item--vtd img{
max-width:250px!important;
}
}

/* === INTEGRATED PROFESSIONAL FOOTER === */
.brand-strip{
display:none!important;
}
.footer{
position:relative!important;
overflow:hidden!important;
padding-top:0!important;
background:
linear-gradient(180deg,rgba(255,255,255,.035) 0%,rgba(255,255,255,0) 18%),
linear-gradient(180deg,#0b2138 0%,#071625 100%)!important;
color:rgba(255,255,255,.76)!important;
}
.footer::before{
opacity:.22!important;
}
.footer__brands{
position:relative!important;
z-index:2!important;
display:grid!important;
grid-template-columns:minmax(220px,.9fr) minmax(0,1.8fr)!important;
align-items:center!important;
gap:clamp(24px,4vw,56px)!important;
padding-top:42px!important;
padding-bottom:34px!important;
border-bottom:1px solid rgba(255,255,255,.1)!important;
}
.footer__brands-copy span{
display:block!important;
font-family:'Playfair Display',serif!important;
font-size:clamp(1.7rem,2.8vw,2.45rem)!important;
font-weight:750!important;
line-height:1.05!important;
color:#fff!important;
}
.footer__brands-copy p{
max-width:310px!important;
margin:10px 0 0!important;
font-size:.92rem!important;
line-height:1.55!important;
color:rgba(255,255,255,.64)!important;
}
.footer__brands-grid{
display:grid!important;
grid-template-columns:repeat(3,minmax(0,1fr))!important;
gap:14px!important;
}
.footer-brand-link{
position:relative!important;
display:flex!important;
align-items:center!important;
justify-content:center!important;
min-height:104px!important;
padding:18px 22px!important;
border-radius:8px!important;
background:linear-gradient(180deg,rgba(255,255,255,.095),rgba(255,255,255,.045))!important;
border:1px solid rgba(255,255,255,.12)!important;
box-shadow:inset 0 1px 0 rgba(255,255,255,.09),0 18px 38px rgba(0,0,0,.16)!important;
transition:transform .25s ease,border-color .25s ease,background .25s ease!important;
}
.footer-brand-link::after{
content:''!important;
position:absolute!important;
inset:1px!important;
border-radius:7px!important;
background:linear-gradient(135deg,rgba(214,173,104,.12),rgba(255,255,255,0) 42%)!important;
pointer-events:none!important;
}
.footer-brand-link img{
position:relative!important;
z-index:1!important;
display:block!important;
width:auto!important;
max-width:100%!important;
height:auto!important;
object-fit:contain!important;
filter:none!important;
}
.footer-brand-link--avt img{
max-height:54px!important;
}
.footer-brand-link--vtd img{
max-height:68px!important;
max-width:240px!important;
}
.footer-brand-link--stay img{
max-height:72px!important;
}
.footer-brand-link:hover{
transform:translateY(-3px)!important;
border-color:rgba(214,173,104,.34)!important;
background:linear-gradient(180deg,rgba(255,255,255,.13),rgba(255,255,255,.06))!important;
}
.footer__inner{
position:relative!important;
z-index:2!important;
display:grid!important;
grid-template-columns:minmax(280px,1.1fr) minmax(150px,.62fr) minmax(165px,.7fr) minmax(250px,.95fr)!important;
gap:clamp(26px,3vw,44px)!important;
padding-top:42px!important;
padding-bottom:42px!important;
}
.footer__brand{
max-width:none!important;
}
.footer__brand-card{
padding:0!important;
border:0!important;
border-radius:0!important;
background:transparent!important;
box-shadow:none!important;
}
.footer__brand-title{
display:block!important;
margin:0 0 16px!important;
}
.footer__brand-logo{
display:block!important;
width:min(100%,260px)!important;
height:auto!important;
max-height:96px!important;
padding:0!important;
border-radius:0!important;
background:transparent!important;
box-shadow:none!important;
object-fit:contain!important;
object-position:left center!important;
}
.footer__brand-tagline{
max-width:360px!important;
margin:0 0 8px!important;
padding:0!important;
border:0!important;
font-size:1rem!important;
line-height:1.6!important;
color:#fff!important;
}
.footer__operated{
max-width:360px!important;
margin:0!important;
font-size:.88rem!important;
line-height:1.65!important;
color:rgba(255,255,255,.62)!important;
opacity:1!important;
}
.footer__brand-badges{
display:flex!important;
flex-wrap:wrap!important;
gap:8px!important;
margin-top:18px!important;
}
.footer__brand-badges span{
display:inline-flex!important;
align-items:center!important;
justify-content:center!important;
padding:7px 10px!important;
border-radius:999px!important;
background:rgba(255,255,255,.07)!important;
border:1px solid rgba(255,255,255,.1)!important;
color:rgba(255,255,255,.76)!important;
font-size:.72rem!important;
font-weight:750!important;
letter-spacing:0!important;
}
.footer__brand-cta{
display:inline-flex!important;
align-items:center!important;
justify-content:center!important;
width:auto!important;
margin-top:18px!important;
padding:11px 16px!important;
border-radius:8px!important;
border:1px solid rgba(255,255,255,.14)!important;
background:#c08a45!important;
color:#fff!important;
box-shadow:none!important;
font-size:.82rem!important;
font-weight:800!important;
}
.footer__brand-cta:hover{
background:#d09a54!important;
}
.footer h4{
margin:0 0 16px!important;
font-family:'Playfair Display',serif!important;
font-size:1.08rem!important;
font-weight:750!important;
line-height:1.2!important;
color:#fff!important;
}
.footer h4::after{
content:''!important;
display:block!important;
width:32px!important;
height:2px!important;
margin-top:10px!important;
background:#c08a45!important;
}
.footer__links,
.footer__destinations,
.footer__contact{
padding-top:0!important;
}
.footer__links a,
.footer__destinations a{
display:block!important;
padding:6px 0!important;
font-size:.92rem!important;
line-height:1.45!important;
color:rgba(255,255,255,.72)!important;
opacity:1!important;
}
.footer__links a:hover,
.footer__destinations a:hover{
color:#d6ad68!important;
}
.footer__contact-list{
display:grid!important;
gap:10px!important;
}
.footer__contact-item{
display:grid!important;
gap:4px!important;
padding:13px 14px!important;
border-radius:8px!important;
background:rgba(255,255,255,.06)!important;
border:1px solid rgba(255,255,255,.1)!important;
box-shadow:none!important;
}
.footer__contact-item:hover{
background:rgba(255,255,255,.085)!important;
border-color:rgba(214,173,104,.34)!important;
}
.footer__contact-label{
font-size:.68rem!important;
font-weight:850!important;
letter-spacing:.12em!important;
text-transform:uppercase!important;
color:#d6ad68!important;
}
.footer__contact-item strong{
font-size:.92rem!important;
line-height:1.45!important;
color:#fff!important;
word-break:break-word!important;
}
.footer__bottom{
position:relative!important;
z-index:2!important;
margin-top:0!important;
padding:18px 0!important;
border-top:1px solid rgba(255,255,255,.09)!important;
background:rgba(0,0,0,.16)!important;
}
.footer__bottom p{
margin:0!important;
font-size:.86rem!important;
color:rgba(255,255,255,.58)!important;
}
@media(max-width:1100px){
.footer__brands{
grid-template-columns:1fr!important;
}
.footer__brands-copy p{
max-width:560px!important;
}
.footer__inner{
grid-template-columns:1fr 1fr!important;
}
}
@media(max-width:760px){
.footer__brands{
padding-top:34px!important;
padding-bottom:28px!important;
}
.footer__brands-grid{
grid-template-columns:1fr!important;
gap:10px!important;
}
.footer-brand-link{
min-height:88px!important;
}
.footer__inner{
grid-template-columns:1fr!important;
gap:30px!important;
padding-top:34px!important;
}
.footer__brand-logo{
max-width:250px!important;
}
.footer__brand-cta{
width:100%!important;
}
}

/* === FINAL FOOTER SIMPLIFICATION === */
.footer{
background:#0b1f33!important;
}
.footer::before,
.footer::after{
opacity:.08!important;
}
.footer__brands{
grid-template-columns:minmax(190px,.55fr) minmax(0,1.45fr)!important;
gap:32px!important;
padding-top:36px!important;
padding-bottom:30px!important;
border-bottom:1px solid rgba(255,255,255,.08)!important;
}
.footer__brands-copy span{
font-size:2rem!important;
}
.footer__brands-copy p{
max-width:250px!important;
font-size:.9rem!important;
color:rgba(255,255,255,.58)!important;
}
.footer__brands-grid{
gap:12px!important;
align-items:center!important;
}
.footer-brand-link{
min-height:76px!important;
padding:14px 18px!important;
background:rgba(255,255,255,.045)!important;
border:1px solid rgba(255,255,255,.1)!important;
box-shadow:none!important;
}
.footer-brand-link::after{
display:none!important;
}
.footer-brand-link--avt img{
max-height:42px!important;
}
.footer-brand-link--vtd img{
max-height:52px!important;
max-width:210px!important;
}
.footer-brand-link--stay img{
max-height:54px!important;
}
.footer-brand-link:hover{
transform:none!important;
background:rgba(255,255,255,.065)!important;
border-color:rgba(214,173,104,.24)!important;
}
.footer__inner{
grid-template-columns:minmax(260px,1fr) minmax(140px,.58fr) minmax(150px,.62fr) minmax(230px,.86fr)!important;
gap:34px!important;
padding-top:36px!important;
padding-bottom:36px!important;
}
.footer__brand-logo{
max-width:230px!important;
max-height:78px!important;
}
.footer__brand-tagline{
max-width:310px!important;
font-size:.94rem!important;
line-height:1.55!important;
}
.footer__operated{
max-width:300px!important;
font-size:.84rem!important;
}
.footer__brand-badges{
gap:6px!important;
margin-top:14px!important;
}
.footer__brand-badges span{
padding:6px 9px!important;
background:transparent!important;
font-size:.7rem!important;
}
.footer__brand-cta{
margin-top:16px!important;
padding:10px 14px!important;
background:#b98035!important;
}
.footer h4{
margin-bottom:14px!important;
font-size:1rem!important;
}
.footer h4::after{
width:26px!important;
height:1px!important;
margin-top:9px!important;
}
.footer__links a,
.footer__destinations a{
padding:5px 0!important;
font-size:.88rem!important;
color:rgba(255,255,255,.68)!important;
}
.footer__contact-list{
gap:8px!important;
}
.footer__contact-item{
padding:11px 12px!important;
background:transparent!important;
border-color:rgba(255,255,255,.1)!important;
}
.footer__contact-item:hover{
background:rgba(255,255,255,.04)!important;
}
.footer__contact-label{
font-size:.64rem!important;
}
.footer__contact-item strong{
font-size:.88rem!important;
}
@media(max-width:1100px){
.footer__brands{
grid-template-columns:1fr!important;
}
.footer__brands-copy p{
max-width:420px!important;
}
.footer__inner{
grid-template-columns:1fr 1fr!important;
}
}
@media(max-width:760px){
.footer__brands{
gap:18px!important;
}
.footer__brands-grid{
grid-template-columns:1fr!important;
}
.footer-brand-link{
min-height:70px!important;
}
.footer__inner{
grid-template-columns:1fr!important;
}
}

/* === TRUE EOF SINGLE-ROW SUBPAGE HEADER === */
@media(min-width:981px){
.site-header:not(.site-header--overlay) .header-promo,
.site-header--overlay.is-solid .header-promo{
display:block!important;
}
.site-header:not(.site-header--overlay) .header__inner,
.site-header--overlay.is-solid .header__inner{
display:flex!important;
flex-wrap:nowrap!important;
align-items:center!important;
justify-content:space-between!important;
min-height:82px!important;
gap:18px!important;
padding-top:0!important;
padding-bottom:0!important;
}
.site-header:not(.site-header--overlay) .logo,
.site-header--overlay.is-solid .logo{
flex:0 0 auto!important;
min-width:0!important;
}
.site-header:not(.site-header--overlay) .logo__mark,
.site-header--overlay.is-solid .logo__mark{
max-width:190px!important;
max-height:62px!important;
}
.site-header:not(.site-header--overlay) .nav,
.site-header--overlay.is-solid .nav{
display:flex!important;
flex:1 1 auto!important;
min-width:0!important;
align-items:center!important;
justify-content:flex-end!important;
gap:10px!important;
margin-left:18px!important;
}
.site-header:not(.site-header--overlay) .nav__links,
.site-header--overlay.is-solid .nav__links{
display:flex!important;
flex:0 1 auto!important;
flex-wrap:nowrap!important;
align-items:center!important;
width:auto!important;
min-width:0!important;
gap:5px!important;
padding:7px 9px!important;
}
.site-header:not(.site-header--overlay) .nav__item,
.site-header--overlay.is-solid .nav__item{
flex:0 0 auto!important;
width:auto!important;
}
.site-header:not(.site-header--overlay) .nav__link,
.site-header:not(.site-header--overlay) .nav a,
.site-header--overlay.is-solid .nav__link,
.site-header--overlay.is-solid .nav a{
white-space:nowrap!important;
width:auto!important;
justify-content:center!important;
font-size:.76rem!important;
padding:0 9px!important;
}
.site-header:not(.site-header--overlay) .nav__cta,
.site-header--overlay.is-solid .nav__cta{
flex:0 0 auto!important;
white-space:nowrap!important;
width:auto!important;
min-width:max-content!important;
padding:0 15px!important;
}
}

/* === TRUE EOF RESPONSIVE HOME HERO === */
.hero{
height:100svh!important;
min-height:0!important;
display:flex!important;
align-items:center!important;
justify-content:center!important;
overflow:hidden!important;
background:#07121f!important;
}
.hero__slide{
background-size:cover!important;
background-repeat:no-repeat!important;
background-position:center 54%!important;
transform:scale(1.2)!important;
transform-origin:center center!important;
}
.hero__media::after{
background:
linear-gradient(90deg,rgba(5,15,26,.74) 0%,rgba(5,15,26,.48) 34%,rgba(5,15,26,.2) 62%,rgba(5,15,26,.34) 100%),
linear-gradient(180deg,rgba(5,15,26,.52) 0%,rgba(5,15,26,.1) 42%,rgba(5,15,26,.6) 100%)!important;
}
.hero__overlay{
background:linear-gradient(180deg,rgba(5,15,26,.08) 0%,rgba(5,15,26,.12) 45%,rgba(5,15,26,.46) 100%)!important;
}
.hero .container.hero__content,
.hero__content{
height:100%!important;
width:100%!important;
max-width:1120px!important;
margin:0 auto!important;
padding:112px 20px 44px!important;
display:flex!important;
flex-direction:column!important;
align-items:center!important;
justify-content:center!important;
text-align:center!important;
color:#fff!important;
}
.hero__panel{
display:contents!important;
padding:0!important;
border:0!important;
border-radius:0!important;
background:transparent!important;
box-shadow:none!important;
backdrop-filter:none!important;
}
.hero .container.hero__content > *{
max-width:100%!important;
}
.hero__eyebrow{
display:block!important;
width:auto!important;
margin:0 0 18px!important;
padding:0!important;
border:0!important;
border-radius:0!important;
background:transparent!important;
font-size:.84rem!important;
line-height:1.5!important;
font-weight:700!important;
letter-spacing:.12em!important;
text-transform:uppercase!important;
color:rgba(255,255,255,.88)!important;
text-shadow:0 10px 24px rgba(0,0,0,.38)!important;
}
.hero__title{
width:100%!important;
max-width:850px!important;
margin:0 auto 22px!important;
display:flex!important;
flex-direction:column!important;
align-items:center!important;
gap:10px!important;
text-shadow:0 18px 42px rgba(0,0,0,.42)!important;
}
.hero__title span{
font-size:.95rem!important;
line-height:1.4!important;
font-weight:700!important;
letter-spacing:.1em!important;
text-transform:uppercase!important;
color:#f1d3a2!important;
}
.hero__title strong{
max-width:760px!important;
font-size:clamp(3rem,4vw,4.05rem)!important;
line-height:.98!important;
letter-spacing:0!important;
color:#fff!important;
}
.hero__subtitle{
max-width:680px!important;
margin:0 auto 30px!important;
font-size:1.12rem!important;
line-height:1.7!important;
font-weight:600!important;
letter-spacing:0!important;
color:rgba(255,255,255,.9)!important;
text-shadow:0 12px 30px rgba(0,0,0,.45)!important;
}
.hero__actions{
width:auto!important;
margin:0 0 26px!important;
display:flex!important;
justify-content:center!important;
align-items:center!important;
gap:14px!important;
}
.hero .hero__actions .btn{
min-width:204px!important;
min-height:54px!important;
padding:15px 28px!important;
border-radius:8px!important;
font-size:.9rem!important;
letter-spacing:0!important;
box-shadow:0 18px 40px rgba(0,0,0,.26)!important;
}
.hero .hero__actions .btn--outline{
background:rgba(255,255,255,.08)!important;
border-color:rgba(255,255,255,.54)!important;
color:#fff!important;
backdrop-filter:blur(4px)!important;
}
.hero__highlights,
.hero-highlight{
display:none!important;
}
.hero__meta{
width:auto!important;
max-width:100%!important;
margin:0 auto!important;
padding:17px 0 0!important;
border-top:1px solid rgba(255,255,255,.26)!important;
display:flex!important;
flex-wrap:wrap!important;
align-items:center!important;
justify-content:center!important;
gap:10px 22px!important;
background:transparent!important;
}
.hero__meta span{
display:inline-flex!important;
align-items:center!important;
justify-content:center!important;
min-height:0!important;
padding:0!important;
border:0!important;
border-radius:0!important;
background:transparent!important;
box-shadow:none!important;
font-size:.8rem!important;
line-height:1.45!important;
font-weight:700!important;
letter-spacing:.08em!important;
text-transform:uppercase!important;
color:rgba(255,255,255,.82)!important;
text-shadow:0 10px 24px rgba(0,0,0,.42)!important;
}
.hero__meta span+span::before{
content:""!important;
display:inline-block!important;
width:4px!important;
height:4px!important;
margin-right:22px!important;
border-radius:50%!important;
background:rgba(241,211,162,.82)!important;
}
@media(min-width:1440px){
.hero{
height:100svh!important;
min-height:0!important;
}
.hero__slide{
background-position:center 58%!important;
}
.hero .container.hero__content,
.hero__content{
padding-top:104px!important;
padding-bottom:36px!important;
justify-content:center!important;
}
}
@media(max-width:1180px){
.hero__slide{
background-position:center 52%!important;
}
.hero .container.hero__content,
.hero__content{
max-width:920px!important;
padding:120px 20px 58px!important;
}
.hero__title strong{
font-size:3.45rem!important;
max-width:720px!important;
}
}
@media(max-width:768px){
.hero{
height:100svh!important;
min-height:0!important;
}
.hero__slide{
background-position:center center!important;
}
.hero .container.hero__content,
.hero__content{
max-width:100%!important;
padding:104px 16px 42px!important;
}
.hero__eyebrow{
font-size:.7rem!important;
margin-bottom:14px!important;
}
.hero__title{
max-width:360px!important;
margin-bottom:18px!important;
gap:8px!important;
}
.hero__title span{
font-size:.78rem!important;
}
.hero__title strong{
font-size:2.35rem!important;
line-height:1.02!important;
max-width:360px!important;
}
.hero__subtitle{
font-size:.98rem!important;
line-height:1.62!important;
margin-bottom:22px!important;
max-width:360px!important;
}
.hero__actions{
width:100%!important;
gap:10px!important;
margin-bottom:20px!important;
}
.hero .hero__actions .btn{
width:100%!important;
min-width:0!important;
min-height:50px!important;
padding:13px 16px!important;
}
.hero__meta{
gap:8px 14px!important;
padding-top:14px!important;
}
.hero__meta span{
font-size:.66rem!important;
letter-spacing:.06em!important;
}
.hero__meta span+span::before{
display:none!important;
}
}

/* === TRUE EOF SIMPLE HOME HERO CONTENT === */
.hero__title{
margin-bottom:22px!important;
gap:0!important;
}
.hero__title strong{
display:block!important;
}
.hero__subtitle{
margin-bottom:30px!important;
}
.hero__meta,
.hero__eyebrow{
display:none!important;
}

/* === TRUE EOF HOME HEADER CLEAR OVERLAY === */
.site-header--overlay:not(.is-solid){
background:transparent!important;
background-image:none!important;
border-bottom:0!important;
box-shadow:none!important;
backdrop-filter:none!important;
}
.site-header--overlay:not(.is-solid)::before,
.site-header--overlay:not(.is-solid)::after{
display:none!important;
content:none!important;
}
.site-header--overlay:not(.is-solid) .header__inner{
background:transparent!important;
box-shadow:none!important;
}
.site-header--overlay:not(.is-solid) .nav__links{
background:transparent!important;
border-color:transparent!important;
box-shadow:none!important;
backdrop-filter:none!important;
}

/* === TRUE EOF DESTINATION REGION MENU === */
.nav__dropdown--regions{
min-width:560px!important;
display:grid!important;
grid-template-columns:repeat(3,minmax(0,1fr))!important;
gap:10px!important;
padding:14px!important;
}
.nav-region{
min-width:0!important;
}
.nav-region__title{
display:block!important;
margin:0 0 8px!important;
padding:0 8px 8px!important;
border-bottom:1px solid rgba(16,42,67,.1)!important;
font-size:.76rem!important;
line-height:1.3!important;
font-weight:800!important;
letter-spacing:.06em!important;
text-transform:uppercase!important;
color:var(--c-accent)!important;
}
.nav-region__links{
display:grid!important;
gap:2px!important;
}
.nav__dropdown--regions .nav-region__links a{
padding:8px!important;
font-size:.8rem!important;
line-height:1.25!important;
}
@media(max-width:980px){
.nav__dropdown--regions{
min-width:0!important;
display:none!important;
grid-template-columns:1fr!important;
gap:8px!important;
padding:10px!important;
}
.nav__item:hover .nav__dropdown--regions,
.nav__item:focus-within .nav__dropdown--regions{
display:grid!important;
}
.nav-region__title{
padding:4px 8px 6px!important;
}
}

/* === TRUE EOF HERO TYPOGRAPHY UPGRADE === */
.hero__media::after{
background:
linear-gradient(90deg,rgba(2,10,18,.66) 0%,rgba(2,10,18,.42) 34%,rgba(2,10,18,.18) 62%,rgba(2,10,18,.3) 100%),
linear-gradient(180deg,rgba(2,10,18,.34) 0%,rgba(2,10,18,.08) 42%,rgba(2,10,18,.48) 100%)!important;
}
.hero__overlay{
background:linear-gradient(180deg,rgba(2,10,18,.02) 0%,rgba(2,10,18,.08) 42%,rgba(2,10,18,.34) 100%)!important;
}
.hero__title{
max-width:920px!important;
margin-bottom:24px!important;
}
.hero__title::after{
content:""!important;
display:block!important;
width:92px!important;
height:3px!important;
margin:22px auto 0!important;
border-radius:999px!important;
background:linear-gradient(90deg,transparent,#f3d091 18%,#fff0bc 50%,#f3d091 82%,transparent)!important;
box-shadow:0 10px 26px rgba(243,208,145,.32)!important;
}
.hero__title strong{
max-width:900px!important;
font-size:clamp(3.35rem,5.2vw,5.35rem)!important;
line-height:.96!important;
font-weight:700!important;
letter-spacing:0!important;
color:#fffdf6!important;
text-shadow:
0 2px 0 rgba(96,55,12,.18),
0 18px 38px rgba(0,0,0,.48),
0 0 34px rgba(255,238,192,.16)!important;
}
.hero__title strong::first-line{
font-style:italic!important;
color:#fff4cf!important;
}
.hero__subtitle{
max-width:720px!important;
font-size:clamp(1.06rem,1.25vw,1.22rem)!important;
line-height:1.72!important;
font-weight:700!important;
color:rgba(255,255,255,.94)!important;
text-shadow:
0 2px 14px rgba(0,0,0,.52),
0 12px 30px rgba(0,0,0,.36)!important;
}
.hero .hero__actions .btn{
border-radius:10px!important;
font-weight:800!important;
text-transform:uppercase!important;
box-shadow:0 18px 38px rgba(0,0,0,.26)!important;
}
.hero .hero__actions .btn--primary{
background:linear-gradient(135deg,#d49442 0%,#b8732e 100%)!important;
border-color:rgba(255,255,255,.12)!important;
}
.hero .hero__actions .btn--outline{
background:rgba(12,22,30,.16)!important;
border-color:rgba(255,255,255,.62)!important;
box-shadow:inset 0 0 0 1px rgba(255,255,255,.08),0 18px 38px rgba(0,0,0,.24)!important;
}
@media(max-width:768px){
.hero__title{
max-width:380px!important;
margin-bottom:18px!important;
}
.hero__title::after{
width:70px!important;
height:2px!important;
margin-top:16px!important;
}
.hero__title strong{
font-size:clamp(2.35rem,10.5vw,3.1rem)!important;
line-height:1!important;
max-width:380px!important;
}
.hero__subtitle{
font-size:1rem!important;
line-height:1.62!important;
max-width:380px!important;
}
}

/* === TRUE EOF HERO STRONGER FOCAL POINT === */
.hero .container.hero__content,
.hero__content{
isolation:isolate!important;
}
.hero__content::before{
content:""!important;
position:absolute!important;
left:50%!important;
top:50%!important;
width:min(920px,92vw)!important;
height:min(440px,52svh)!important;
transform:translate(-50%,-42%)!important;
z-index:-1!important;
border-radius:999px!important;
background:radial-gradient(ellipse at center,rgba(5,12,18,.5) 0%,rgba(5,12,18,.24) 48%,rgba(5,12,18,0) 74%)!important;
filter:blur(1px)!important;
pointer-events:none!important;
}
.hero__kicker{
display:inline-flex!important;
align-items:center!important;
justify-content:center!important;
margin:0 0 18px!important;
padding:8px 15px!important;
border-radius:999px!important;
border:1px solid rgba(255,232,176,.38)!important;
background:rgba(12,22,30,.22)!important;
box-shadow:0 12px 28px rgba(0,0,0,.22)!important;
font-size:.78rem!important;
line-height:1!important;
font-weight:800!important;
letter-spacing:.16em!important;
text-transform:uppercase!important;
color:#ffe4a8!important;
text-shadow:0 8px 20px rgba(0,0,0,.44)!important;
}
.hero__title strong{
white-space:pre-line!important;
font-size:clamp(3.85rem,6.6vw,6.45rem)!important;
line-height:.91!important;
font-weight:700!important;
color:#fff!important;
text-shadow:
0 2px 0 rgba(83,42,0,.28),
0 10px 24px rgba(0,0,0,.42),
0 24px 54px rgba(0,0,0,.5),
0 0 34px rgba(255,230,166,.24)!important;
}
.hero__title strong::first-line{
color:#ffe9ad!important;
font-style:italic!important;
text-shadow:
0 2px 0 rgba(83,42,0,.18),
0 16px 34px rgba(0,0,0,.48),
0 0 36px rgba(255,225,146,.34)!important;
}
.hero__title::after{
width:128px!important;
height:4px!important;
margin-top:24px!important;
background:linear-gradient(90deg,transparent,#d99138 14%,#fff2bd 50%,#d99138 86%,transparent)!important;
box-shadow:0 12px 34px rgba(255,211,126,.48)!important;
}
.hero__subtitle{
max-width:820px!important;
font-size:clamp(1.12rem,1.42vw,1.34rem)!important;
line-height:1.62!important;
font-weight:800!important;
color:#fffaf0!important;
text-shadow:
0 2px 14px rgba(0,0,0,.64),
0 14px 34px rgba(0,0,0,.42)!important;
}
.hero .hero__actions{
gap:18px!important;
margin-top:4px!important;
}
.hero .hero__actions .btn{
min-height:60px!important;
min-width:238px!important;
padding:17px 34px!important;
font-size:.94rem!important;
border-radius:11px!important;
}
.hero .hero__actions .btn--primary{
background:linear-gradient(135deg,#eea54a 0%,#c77b2b 100%)!important;
box-shadow:0 20px 42px rgba(178,96,26,.4),0 8px 22px rgba(0,0,0,.24)!important;
}
.hero .hero__actions .btn--outline{
background:rgba(8,16,22,.28)!important;
border-color:rgba(255,244,220,.72)!important;
box-shadow:inset 0 0 0 1px rgba(255,255,255,.14),0 20px 42px rgba(0,0,0,.28)!important;
}
@media(max-width:768px){
.hero__content::before{
width:100vw!important;
height:460px!important;
transform:translate(-50%,-45%)!important;
}
.hero__kicker{
font-size:.66rem!important;
letter-spacing:.12em!important;
padding:7px 12px!important;
margin-bottom:14px!important;
}
.hero__title strong{
font-size:clamp(2.65rem,12vw,3.65rem)!important;
line-height:.96!important;
max-width:400px!important;
}
.hero__title::after{
width:88px!important;
height:3px!important;
margin-top:18px!important;
}
.hero__subtitle{
font-size:1.02rem!important;
font-weight:750!important;
max-width:390px!important;
}
.hero .hero__actions .btn{
min-width:0!important;
min-height:54px!important;
padding:14px 18px!important;
}
}
@media(max-width:420px){
.hero__slide{
background-position:52% center!important;
}
.hero__title strong{
font-size:2.05rem!important;
}
.hero__subtitle{
font-size:.92rem!important;
}
}
/* === ABSOLUTE EOF HERO WIDTH AND CLIPPING FIX === */
.hero .container.hero__content,
.hero__content{
max-width:100%!important;
padding-left:clamp(18px,4vw,56px)!important;
padding-right:clamp(18px,4vw,56px)!important;
overflow:visible!important;
}
.hero__title{
width:min(1120px,calc(100vw - 48px))!important;
max-width:none!important;
overflow:visible!important;
}
.hero__title strong{
display:block!important;
width:100%!important;
max-width:none!important;
font-size:clamp(3rem,5vw,5.35rem)!important;
line-height:.96!important;
overflow:visible!important;
}
.hero__title::after{
width:min(100%,980px)!important;
max-width:calc(100vw - 64px)!important;
height:4px!important;
}
.hero__subtitle{
width:min(860px,calc(100vw - 64px))!important;
max-width:none!important;
}
@media(max-width:980px){
.hero__title{
width:min(760px,calc(100vw - 40px))!important;
}
.hero__title strong{
font-size:clamp(2.6rem,7.2vw,4.25rem)!important;
line-height:.98!important;
}
.hero__title::after{
width:min(100%,680px)!important;
}
}
@media(max-width:620px){
.hero__title{
width:calc(100vw - 28px)!important;
}
.hero__title strong{
font-size:clamp(1.9rem,9vw,2.85rem)!important;
line-height:1.02!important;
}
.hero__title::after{
width:100%!important;
max-width:calc(100vw - 36px)!important;
height:3px!important;
}
.hero__subtitle{
width:calc(100vw - 36px)!important;
font-size:.94rem!important;
}
}
/* === TRUE FINAL RED BUTTONS AND HERO CENTERING === */
:root{
--c-accent:#d72035!important;
--c-accent-dark:#a80f22!important;
}
.trust-bar{
position:relative!important;
z-index:4!important;
padding:34px 0 30px!important;
background:linear-gradient(180deg,#fff 0%,#fff7f4 100%)!important;
border-top:1px solid rgba(215,32,53,.10)!important;
border-bottom:1px solid rgba(16,42,67,.08)!important;
box-shadow:0 18px 44px rgba(16,42,67,.06)!important;
}
.trust-bar__inner{
display:grid!important;
grid-template-columns:repeat(4,minmax(0,1fr))!important;
gap:18px!important;
}
.trust-item{
display:flex!important;
flex-direction:column!important;
align-items:center!important;
justify-content:center!important;
min-height:118px!important;
gap:10px!important;
padding:18px 20px!important;
text-align:center!important;
background:rgba(255,255,255,.72)!important;
border:1px solid rgba(215,32,53,.10)!important;
border-radius:18px!important;
box-shadow:0 16px 32px rgba(16,42,67,.07)!important;
}
.trust-item::before{
display:none!important;
}
.trust-num{
font-family:var(--font-heading-1)!important;
font-size:3.15rem!important;
font-weight:900!important;
line-height:.88!important;
letter-spacing:0!important;
color:#d72035!important;
text-shadow:0 10px 24px rgba(215,32,53,.14)!important;
}
.trust-item span:last-child{
max-width:170px!important;
font-size:.78rem!important;
font-weight:750!important;
line-height:1.35!important;
letter-spacing:.08em!important;
text-transform:uppercase!important;
color:#5d6675!important;
}
.plan-other-destination{
display:flex!important;
flex-direction:column!important;
gap:8px!important;
margin-top:16px!important;
}
.plan-other-destination span{
font-size:.76rem!important;
font-weight:800!important;
letter-spacing:.08em!important;
text-transform:uppercase!important;
color:#111827!important;
}
.plan-other-destination input{
width:100%!important;
padding:14px 16px!important;
border:1px solid rgba(11,31,58,.12)!important;
border-radius:12px!important;
background:#fff!important;
color:#111827!important;
font:inherit!important;
font-size:.92rem!important;
}
.plan-other-destination input:focus{
outline:none!important;
border-color:rgba(215,32,53,.58)!important;
box-shadow:0 0 0 4px rgba(215,32,53,.10)!important;
}
.hero .container.hero__content,
.hero__content{
left:auto!important;
right:auto!important;
margin-left:auto!important;
margin-right:auto!important;
align-items:center!important;
text-align:center!important;
}
.hero__kicker,
.hero__title,
.hero__subtitle,
.hero__actions{
margin-left:auto!important;
margin-right:auto!important;
text-align:center!important;
}
.hero__subtitle{
display:block!important;
width:auto!important;
max-width:min(860px,calc(100vw - 64px))!important;
padding-left:0!important;
padding-right:0!important;
}
.hero__title{
width:min(1040px,calc(100vw - 72px))!important;
}
.hero__title::after{
width:100%!important;
max-width:100%!important;
margin-left:auto!important;
margin-right:auto!important;
background:linear-gradient(90deg,transparent,#d72035 14%,#ffb3bd 50%,#d72035 86%,transparent)!important;
box-shadow:0 12px 34px rgba(215,32,53,.36)!important;
}
.btn--primary,
.hero__actions .btn--primary,
.cta-banner__inner .btn--primary,
.nav__cta,
.tour-card__cta,
.btn-submit,
.plan-submit,
.footer__brand-cta,
.site-header:not(.site-header--overlay) .nav__cta,
.site-header--overlay.is-solid .nav__cta,
.site-header--overlay .nav__cta{
background:linear-gradient(135deg,#e33a4d 0%,#b91527 100%)!important;
border-color:#d72035!important;
color:#fff!important;
box-shadow:0 16px 34px rgba(215,32,53,.24)!important;
}
.btn--primary:hover,
.hero__actions .btn--primary:hover,
.cta-banner__inner .btn--primary:hover,
.nav__cta:hover,
.tour-card__cta:hover,
.btn-submit:hover,
.plan-submit:hover,
.footer__brand-cta:hover{
background:linear-gradient(135deg,#f04a5d 0%,#a80f22 100%)!important;
box-shadow:0 20px 42px rgba(215,32,53,.32)!important;
}
@media(max-width:980px){
.hero__title{
width:min(760px,calc(100vw - 48px))!important;
}
}
@media(max-width:620px){
.hero__title{
width:calc(100vw - 32px)!important;
}
.hero__subtitle{
max-width:calc(100vw - 36px)!important;
}
.hero .hero__actions{
gap:10px!important;
}
.hero .hero__actions .btn{
width:min(100%,280px)!important;
min-width:0!important;
min-height:48px!important;
padding:12px 18px!important;
font-size:.78rem!important;
}
.trust-bar{
padding:24px 0!important;
}
.trust-bar__inner{
grid-template-columns:repeat(2,minmax(0,1fr))!important;
gap:12px!important;
}
.trust-item{
min-height:102px!important;
padding:16px 12px!important;
border-radius:14px!important;
}
.trust-num{
font-size:2.45rem!important;
}
.trust-item span:last-child{
font-size:.68rem!important;
letter-spacing:.06em!important;
}
}
/* EOF hero button balance */
.hero .hero__actions{
gap:14px!important;
margin-top:0!important;
}
.hero .hero__actions .btn{
min-width:205px!important;
min-height:50px!important;
padding:13px 24px!important;
border-radius:10px!important;
font-size:.82rem!important;
line-height:1.15!important;
letter-spacing:.01em!important;
}
.hero .hero__actions .btn--primary{
background:linear-gradient(135deg,#e33a4d 0%,#b91527 100%)!important;
border-color:#d72035!important;
color:#fff!important;
box-shadow:0 16px 34px rgba(215,32,53,.24)!important;
}
.hero .hero__actions .btn--primary:hover{
background:linear-gradient(135deg,#f04a5d 0%,#a80f22 100%)!important;
box-shadow:0 20px 42px rgba(215,32,53,.32)!important;
}
@media(max-width:620px){
.hero .hero__actions{
gap:10px!important;
}
.hero .hero__actions .btn{
width:min(100%,280px)!important;
min-width:0!important;
min-height:48px!important;
padding:12px 18px!important;
font-size:.78rem!important;
}
}
/* EOF hero title line control */
.hero__title strong{
white-space:normal!important;
}
.hero__title .hero__title-line{
display:block!important;
line-height:.98!important;
font-weight:700!important;
letter-spacing:0!important;
text-transform:none!important;
text-shadow:
0 2px 0 rgba(83,42,0,.28),
0 10px 24px rgba(0,0,0,.42),
0 24px 54px rgba(0,0,0,.5),
0 0 34px rgba(255,230,166,.24)!important;
}
.hero__title .hero__title-line--top{
color:#ffe9ad!important;
font-style:italic!important;
font-size:clamp(3.35rem,5.2vw,5.35rem)!important;
}
.hero__title .hero__title-line--bottom{
color:#fff!important;
font-style:normal!important;
font-size:clamp(2.7rem,3.85vw,4.2rem)!important;
white-space:nowrap!important;
}
@media(max-width:980px){
.hero__title .hero__title-line--bottom{
font-size:clamp(2.25rem,6.4vw,3.65rem)!important;
white-space:normal!important;
}
}
@media(max-width:620px){
.hero__title .hero__title-line--top{
font-size:clamp(2rem,9vw,2.85rem)!important;
}
.hero__title .hero__title-line--bottom{
font-size:clamp(1.7rem,8vw,2.35rem)!important;
white-space:normal!important;
}
}

/* Final hero center lock: keep both title lines centered on every viewport width. */
.hero .container.hero__content,
.hero__content{
position:absolute!important;
inset:0!important;
width:100%!important;
max-width:none!important;
margin:0!important;
padding:clamp(96px,10vh,132px) clamp(18px,4vw,72px) clamp(48px,7vh,82px)!important;
display:flex!important;
align-items:center!important;
justify-content:center!important;
text-align:center!important;
}
.hero__title{
width:100%!important;
max-width:min(1420px,100%)!important;
margin-left:auto!important;
margin-right:auto!important;
display:flex!important;
flex-direction:column!important;
align-items:center!important;
text-align:center!important;
}
.hero__title strong{
width:100%!important;
max-width:none!important;
display:flex!important;
flex-direction:column!important;
align-items:center!important;
text-align:center!important;
}
.hero__title .hero__title-line{
width:fit-content!important;
max-width:100%!important;
margin-left:auto!important;
margin-right:auto!important;
text-align:center!important;
}
.hero__title .hero__title-line--top{
font-size:clamp(3.35rem,4.6vw,5.35rem)!important;
}
.hero__title .hero__title-line--bottom{
font-size:clamp(2.65rem,3.25vw,4.05rem)!important;
white-space:nowrap!important;
}
.hero__title::after{
display:none!important;
content:none!important;
}
.hero__title .hero__title-line--bottom::after{
content:""!important;
display:block!important;
width:100%!important;
height:4px!important;
margin:24px auto 0!important;
border-radius:999px!important;
background:linear-gradient(90deg,transparent,#d72035 12%,#ffb3bd 50%,#d72035 88%,transparent)!important;
box-shadow:0 12px 34px rgba(215,32,53,.36)!important;
}
@media(max-width:1180px){
.hero__title .hero__title-line--bottom{
white-space:normal!important;
}
}
@media(max-width:620px){
.hero .container.hero__content,
.hero__content{
position:relative!important;
inset:auto!important;
padding:clamp(96px,22vw,118px) 18px clamp(36px,14vmin,56px)!important;
}
.hero__title .hero__title-line--bottom::after{
height:3px!important;
margin-top:16px!important;
}
}

/* Final transparent logo lock: use the extracted PNG without a white box. */
.logo__mark,
.site-header--overlay .logo__mark,
.site-header:not(.site-header--overlay) .logo__mark,
.site-header--overlay.is-solid .logo__mark{
width:auto!important;
max-width:238px!important;
max-height:76px!important;
object-fit:contain!important;
object-position:left center!important;
border-radius:0!important;
background:transparent!important;
padding:0!important;
}
.site-header--overlay:not(.is-solid) .logo__mark{
filter:drop-shadow(0 12px 24px rgba(0,0,0,.38)) drop-shadow(0 0 8px rgba(255,255,255,.14))!important;
}
.footer-brand-link--vtd img,
.footer__brand-logo{
width:auto!important;
max-width:280px!important;
max-height:92px!important;
object-fit:contain!important;
border-radius:0!important;
background:transparent!important;
}
@media(max-width:768px){
.logo__mark,
.site-header--overlay .logo__mark,
.site-header:not(.site-header--overlay) .logo__mark,
.site-header--overlay.is-solid .logo__mark{
max-width:186px!important;
max-height:60px!important;
}
}

/* Final overlay logo visibility lock. */
.site-header--overlay:not(.is-solid) .header__inner{
display:grid!important;
grid-template-columns:minmax(190px,260px) minmax(0,1fr) max-content!important;
align-items:center!important;
}
.site-header--overlay:not(.is-solid) .logo{
display:flex!important;
grid-column:1!important;
justify-self:start!important;
align-items:center!important;
width:min(240px,24vw)!important;
min-width:170px!important;
height:84px!important;
opacity:1!important;
visibility:visible!important;
overflow:visible!important;
z-index:1003!important;
}
.site-header--overlay:not(.is-solid) .logo__mark--default{
display:none!important;
}
.site-header--overlay:not(.is-solid) .logo__mark--light{
display:block!important;
width:auto!important;
max-width:230px!important;
max-height:76px!important;
opacity:1!important;
visibility:visible!important;
object-fit:contain!important;
filter:drop-shadow(0 12px 24px rgba(0,0,0,.45)) drop-shadow(0 0 10px rgba(255,255,255,.16))!important;
}
@media(max-width:980px){
.site-header--overlay:not(.is-solid) .header__inner{
display:flex!important;
}
.site-header--overlay:not(.is-solid) .logo{
width:auto!important;
min-width:0!important;
height:auto!important;
}
.site-header--overlay:not(.is-solid) .logo__mark--light{
max-width:176px!important;
max-height:58px!important;
}
}

/* Final footer VietnamTripDeal logo lock. */
.footer-brand-link--vtd{
min-width:260px!important;
}
.footer-brand-link--vtd img{
display:block!important;
width:240px!important;
max-width:100%!important;
height:auto!important;
max-height:none!important;
object-fit:contain!important;
object-position:center!important;
opacity:1!important;
visibility:visible!important;
filter:drop-shadow(0 10px 22px rgba(0,0,0,.28))!important;
}
.footer__brand-title{
display:block!important;
min-height:96px!important;
}
.footer__brand-logo{
display:block!important;
width:280px!important;
max-width:100%!important;
height:auto!important;
max-height:none!important;
object-fit:contain!important;
object-position:left center!important;
opacity:1!important;
visibility:visible!important;
filter:drop-shadow(0 12px 24px rgba(0,0,0,.24))!important;
}
@media(max-width:768px){
.footer-brand-link--vtd{
min-width:0!important;
}
.footer-brand-link--vtd img,
.footer__brand-logo{
width:220px!important;
}
}

/* Final nav CTA contrast lock. */
.nav__cta,
.site-header:not(.site-header--overlay) .nav__cta,
.site-header--overlay.is-solid .nav__cta,
.site-header--overlay .nav__cta{
background:linear-gradient(135deg,#ff3048 0%,#d72035 58%,#b91527 100%)!important;
border:1px solid rgba(255,255,255,.18)!important;
color:#fff!important;
box-shadow:0 12px 28px rgba(215,32,53,.36),0 3px 10px rgba(16,42,67,.14)!important;
}
.nav__cta:hover,
.nav__cta:focus-visible,
.site-header:not(.site-header--overlay) .nav__cta:hover,
.site-header:not(.site-header--overlay) .nav__cta:focus-visible,
.site-header--overlay.is-solid .nav__cta:hover,
.site-header--overlay.is-solid .nav__cta:focus-visible,
.site-header--overlay .nav__cta:hover,
.site-header--overlay .nav__cta:focus-visible{
background:linear-gradient(135deg,#ff4f63 0%,#e3223a 56%,#a80f22 100%)!important;
box-shadow:0 16px 34px rgba(215,32,53,.44),0 5px 14px rgba(16,42,67,.18)!important;
transform:translateY(-1px)!important;
}

/* Final hero description readability lock. */
.hero__subtitle{
max-width:680px!important;
font-size:clamp(.96rem,.48vw + .86rem,1.06rem)!important;
line-height:1.9!important;
font-weight:600!important;
letter-spacing:0!important;
color:rgba(255,255,255,.88)!important;
}
.home-intro__copy .section-title{
max-width:640px!important;
font-size:clamp(1.82rem,2.35vw,2.62rem)!important;
line-height:1.28!important;
font-weight:700!important;
letter-spacing:0!important;
}
@media(max-width:768px){
.hero__subtitle{
max-width:calc(100vw - 40px)!important;
font-size:.96rem!important;
line-height:1.82!important;
}
.home-intro__copy .section-title{
font-size:clamp(1.58rem,7vw,2rem)!important;
line-height:1.3!important;
}
}

/* Final footer partner logo size lock. */
.footer__brands-grid{
align-items:center!important;
}
.footer-brand-link{
min-height:76px!important;
}
.footer-brand-link--vtd{
min-width:0!important;
}
.footer-brand-link img,
.footer-brand-link--avt img,
.footer-brand-link--vtd img,
.footer-brand-link--stay img{
width:auto!important;
max-width:170px!important;
max-height:46px!important;
height:auto!important;
object-fit:contain!important;
}

/* Final Authentic Value intro balance: keep image collage centered against editable text. */
@media (min-width: 769px){
.home-intro__layout{
align-items:stretch!important;
grid-template-columns:minmax(360px,.92fr) minmax(0,1fr)!important;
gap:clamp(44px,5.2vw,84px)!important;
}
.home-intro__visual{
display:flex!important;
align-items:center!important;
justify-content:center!important;
min-height:clamp(500px,45vw,660px)!important;
padding:0!important;
}
.home-intro__images{
display:block!important;
position:relative!important;
width:min(100%,640px)!important;
height:100%!important;
min-height:clamp(500px,45vw,660px)!important;
max-height:720px!important;
margin:auto!important;
overflow:visible!important;
}
.home-intro__images .img-main{
position:absolute!important;
top:50%!important;
right:clamp(18px,3vw,48px)!important;
left:auto!important;
bottom:auto!important;
transform:translateY(-52%)!important;
width:74%!important;
height:min(78%,560px)!important;
min-height:360px!important;
object-fit:cover!important;
object-position:center!important;
}
.home-intro__images .img-sub{
position:absolute!important;
left:0!important;
bottom:clamp(24px,5%,48px)!important;
top:auto!important;
right:auto!important;
width:50%!important;
height:min(44%,330px)!important;
min-height:230px!important;
object-fit:cover!important;
object-position:center!important;
}
.home-intro__experience-badge{
right:0!important;
bottom:clamp(54px,11%,92px)!important;
top:auto!important;
}
}
@media(max-width:768px){
.footer-brand-link img,
.footer-brand-link--avt img,
.footer-brand-link--vtd img,
.footer-brand-link--stay img{
max-width:150px!important;
max-height:42px!important;
}
}

/* Final scroll reveal responsiveness lock. */
[data-animate]{
--animate-y:14px!important;
transition:opacity .32s ease,transform .32s cubic-bezier(.22,1,.36,1)!important;
}
.dest-card[data-animate]{
--animate-x:-18px!important;
}

/* Final tour detail customer gallery. */
.tour-moments{
margin:34px 0 38px!important;
padding:26px!important;
border:1px solid rgba(16,42,67,.1)!important;
border-radius:12px!important;
background:linear-gradient(180deg,rgba(255,255,255,.92),rgba(255,247,244,.72))!important;
box-shadow:0 16px 34px rgba(16,42,67,.08)!important;
}
.tour-moments__head{
max-width:720px!important;
margin-bottom:18px!important;
}
.tour-moments__head span{
display:block!important;
margin-bottom:8px!important;
font-size:.72rem!important;
font-weight:800!important;
line-height:1.2!important;
text-transform:uppercase!important;
color:#d72035!important;
}
.tour-moments__head h2{
margin:0 0 8px!important;
}
.tour-moments__head p{
margin:0!important;
font-size:.94rem!important;
line-height:1.75!important;
color:var(--c-text-light)!important;
}
.tour-moments__grid{
display:grid!important;
grid-template-columns:1.2fr 1fr 1fr!important;
grid-auto-rows:178px!important;
gap:12px!important;
}
.tour-moment-card{
position:relative!important;
min-width:0!important;
min-height:0!important;
margin:0!important;
overflow:hidden!important;
border-radius:10px!important;
background:#e8eef5!important;
}
.tour-moment-card--featured{
grid-row:span 2!important;
}
.tour-moment-card img{
position:absolute!important;
inset:0!important;
width:100%!important;
height:100%!important;
object-fit:cover!important;
transition:transform .55s ease!important;
}
.tour-moment-card::after{
content:''!important;
position:absolute!important;
inset:0!important;
background:linear-gradient(180deg,rgba(6,18,36,.02) 24%,rgba(6,18,36,.74) 100%)!important;
z-index:1!important;
}
.tour-moment-card:hover img{
transform:scale(1.05)!important;
}
.tour-moment-card figcaption{
position:absolute!important;
left:14px!important;
right:14px!important;
bottom:14px!important;
z-index:2!important;
display:grid!important;
gap:4px!important;
color:#fff!important;
}
.tour-moment-card strong{
font-size:.94rem!important;
line-height:1.2!important;
font-weight:800!important;
color:#fff!important;
}
.tour-moment-card span{
font-size:.78rem!important;
line-height:1.45!important;
color:rgba(255,255,255,.84)!important;
}
.tour-moments__view-more{
position:relative!important;
min-width:0!important;
min-height:0!important;
margin:0!important;
overflow:hidden!important;
border-radius:10px!important;
background:linear-gradient(180deg,rgba(6,18,36,.4),rgba(6,18,36,.82))!important;
border:2px dashed rgba(255,255,255,.4)!important;
cursor:pointer!important;
transition:all .3s ease!important;
display:flex!important;
flex-direction:column!important;
align-items:center!important;
justify-content:center!important;
gap:6px!important;
}
.tour-moments__view-more:hover{
background:linear-gradient(180deg,rgba(6,18,36,.6),rgba(6,18,36,.92))!important;
border-color:rgba(255,255,255,.7)!important;
transform:scale(1.02)!important;
}
.tour-moments__view-more-count{
font-family:'Poppins',sans-serif!important;
font-size:2rem!important;
font-weight:800!important;
color:#fff!important;
line-height:1!important;
}
.tour-moments__view-more-text{
font-size:.78rem!important;
font-weight:600!important;
color:rgba(255,255,255,.9)!important;
text-transform:uppercase!important;
letter-spacing:.06em!important;
}
.tour-gallery-modal{
display:none;
position:fixed;
inset:0;
z-index:9999;
}
.tour-gallery-modal.is-active{
display:flex;
}
.tour-gallery-modal__backdrop{
position:absolute;
inset:0;
background:rgba(0,0,0,.85);
backdrop-filter:blur(4px);
}
.tour-gallery-modal__content{
position:relative;
margin:auto;
width:90vw;
max-width:1200px;
max-height:90vh;
background:#fff;
border-radius:16px;
overflow:hidden;
display:flex;
flex-direction:column;
}
.tour-gallery-modal__header{
display:flex;
align-items:center;
gap:16px;
padding:20px 24px;
border-bottom:1px solid rgba(0,0,0,.1);
flex-shrink:0;
}
.tour-gallery-modal__header h3{
font-family:'Poppins',sans-serif;
font-size:1.25rem;
font-weight:700;
color:var(--c-dark);
margin:0;
flex:1;
}
.tour-gallery-modal__count{
font-size:.85rem;
color:var(--c-text-light);
font-weight:600;
}
.tour-gallery-modal__close{
width:40px;
height:40px;
border-radius:50%;
border:none;
background:rgba(0,0,0,.06);
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
color:var(--c-dark);
transition:all .2s ease;
flex-shrink:0;
}
.tour-gallery-modal__close:hover{
background:rgba(0,0,0,.12);
}
.tour-gallery-modal__close svg{
width:20px;
height:20px;
}
.tour-gallery-modal__grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
gap:16px;
padding:24px;
overflow-y:auto;
flex:1;
}
.tour-gallery-modal__item{
position:relative;
aspect-ratio:4/3;
border-radius:12px;
overflow:hidden;
background:#e8eef5;
}
.tour-gallery-modal__item img{
width:100%;
height:100%;
object-fit:cover;
transition:transform .3s ease;
}
.tour-gallery-modal__item:hover img{
transform:scale(1.05);
}
.tour-gallery-modal__item figcaption{
position:absolute;
left:12px;
right:12px;
bottom:12px;
z-index:2;
color:#fff;
}
.tour-gallery-modal__item strong{
display:block;
font-size:.88rem;
font-weight:700;
text-shadow:0 1px 3px rgba(0,0,0,.5);
}
.tour-gallery-modal__item span{
display:block;
font-size:.72rem;
opacity:.85;
text-shadow:0 1px 2px rgba(0,0,0,.5);
}
@media(max-width:768px){
.tour-gallery-modal__content{
width:95vw;
max-height:95vh;
border-radius:12px;
}
.tour-gallery-modal__header{
padding:16px 18px;
}
.tour-gallery-modal__header h3{
font-size:1.1rem;
}
.tour-gallery-modal__grid{
grid-template-columns:repeat(2,1fr);
gap:10px;
padding:16px;
}
.tour-moments__view-more-count{
font-size:1.6rem;
}
}
@media(max-width:480px){
.tour-gallery-modal__grid{
grid-template-columns:1fr;
}
}
@media(max-width:768px){
.tour-moments{
padding:18px!important;
}
.tour-moments__grid{
grid-template-columns:1fr 1fr!important;
grid-auto-rows:160px!important;
}
.tour-moment-card--featured{
grid-row:auto!important;
}
.tour-moments__view-more{
grid-column:span 2!important;
min-height:160px!important;
}
}

/* Final tour detail overview block. */
.tour-overview{
margin:24px 0 28px!important;
padding:24px 26px!important;
border:1px solid rgba(16,42,67,.1)!important;
border-radius:12px!important;
background:linear-gradient(135deg,#ffffff 0%,#fff7f4 100%)!important;
box-shadow:0 14px 30px rgba(16,42,67,.07)!important;
}
.tour-overview__eyebrow{
display:block!important;
margin-bottom:8px!important;
font-size:.72rem!important;
font-weight:850!important;
line-height:1.2!important;
text-transform:uppercase!important;
color:#d72035!important;
}
.tour-overview h2{
margin:0 0 10px!important;
}
.tour-overview p{
margin:0!important;
font-size:1rem!important;
line-height:1.82!important;
color:var(--c-text)!important;
}
.tour-overview__chips{
display:flex!important;
flex-wrap:wrap!important;
gap:8px!important;
margin-top:16px!important;
}
.tour-overview__chips span{
display:inline-flex!important;
align-items:center!important;
padding:8px 10px!important;
border-radius:999px!important;
background:#f7f1e9!important;
border:1px solid rgba(215,32,53,.12)!important;
color:var(--c-primary)!important;
font-size:.78rem!important;
font-weight:800!important;
}

.share-section{
display:flex!important;
align-items:center!important;
justify-content:space-between!important;
gap:18px!important;
margin:24px 0 30px!important;
padding:20px 22px!important;
border:1px solid rgba(16,42,67,.1)!important;
border-radius:12px!important;
background:#fff!important;
box-shadow:0 14px 30px rgba(16,42,67,.06)!important;
}
.share-section--compact{
justify-content:flex-start!important;
margin:20px 0 0!important;
padding:0!important;
border:0!important;
box-shadow:none!important;
background:transparent!important;
}
.share-section__eyebrow{
display:block!important;
margin-bottom:6px!important;
font-size:.72rem!important;
font-weight:850!important;
line-height:1.2!important;
letter-spacing:.08em!important;
text-transform:uppercase!important;
color:#d72035!important;
}
.share-section h2{
margin:0!important;
font-family:'Playfair Display',serif!important;
font-size:clamp(1.35rem,2vw,1.8rem)!important;
line-height:1.2!important;
color:var(--c-primary)!important;
}
.share-section__actions{
display:flex!important;
align-items:center!important;
gap:8px!important;
flex-wrap:wrap!important;
}
.share-section__actions a,
.share-section__actions button{
display:inline-flex!important;
align-items:center!important;
justify-content:center!important;
min-height:38px!important;
padding:9px 12px!important;
border-radius:999px!important;
border:1px solid rgba(11,31,58,.14)!important;
background:#f8fafc!important;
color:#0b1f3a!important;
font:inherit!important;
font-size:.82rem!important;
font-weight:800!important;
line-height:1!important;
text-decoration:none!important;
cursor:pointer!important;
}
.share-section__actions a:hover,
.share-section__actions button:hover{
background:#0b1f3a!important;
border-color:#0b1f3a!important;
color:#fff!important;
}
@media(max-width:768px){
.share-section{
align-items:flex-start!important;
flex-direction:column!important;
}
}

/* Final Tripadvisor review slider. */
.reviews-slider{position:relative!important}
.reviews-slider__viewport{overflow:hidden!important}
.reviews-slider__track{display:flex!important;grid-template-columns:none!important;gap:18px!important;transition:transform .42s ease!important;will-change:transform!important;min-height:280px!important;align-items:stretch!important}
.reviews-slider .review-card{
flex:0 0 calc((100% - 18px) / 2)!important;
min-width:0!important;
display:flex!important;
flex-direction:column!important;
min-height:260px!important;
height:auto!important;
}
.review-card__text{
flex:1!important;
min-height:60px!important;
}
.review-card__author{
margin-top:auto!important;
padding-top:12px!important;
}
.review-card__source{
display:inline-flex!important;
align-items:center!important;
width:max-content!important;
max-width:100%!important;
margin-top:16px!important;
padding:8px 10px!important;
border-radius:8px!important;
background:#f7f1e9!important;
color:#d72035!important;
font-size:.78rem!important;
font-weight:800!important;
line-height:1.2!important;
}
.review-card__source:hover{
background:#ffe7e9!important;
}
.reviews-slider__controls{
display:flex!important;
align-items:center!important;
justify-content:center!important;
gap:14px!important;
margin-top:18px!important;
}
.reviews-slider__btn{
display:inline-flex!important;
align-items:center!important;
justify-content:center!important;
width:38px!important;
height:38px!important;
border:1px solid rgba(215,32,53,.22)!important;
border-radius:999px!important;
background:#fff!important;
color:#d72035!important;
font-size:1.7rem!important;
line-height:1!important;
cursor:pointer!important;
box-shadow:0 10px 24px rgba(16,42,67,.08)!important;
}
.reviews-slider__btn:hover{
background:#d72035!important;
color:#fff!important;
}
.reviews-slider__dots{
display:flex!important;
align-items:center!important;
gap:8px!important;
}
.reviews-slider__dot{
width:8px!important;
height:8px!important;
padding:0!important;
border:0!important;
border-radius:999px!important;
background:rgba(16,42,67,.24)!important;
cursor:pointer!important;
}
.reviews-slider__dot.is-active{
width:24px!important;
background:#d72035!important;
}
@media(max-width:640px){
.reviews-slider .review-card{
flex-basis:100%!important;
}
}

/* Keep travel-style tips readable after the light section overrides. */
.style-tips{
background:linear-gradient(180deg,#fff 0%,#f7f4ef 100%)!important;
color:var(--c-text)!important;
}
.style-tips__header .section-title{
color:var(--c-primary)!important;
}
.style-tips__header p,
.style-tip-card p{
color:var(--c-text-light)!important;
}
.style-tip-card{
background:rgba(255,255,255,.92)!important;
border-color:rgba(11,31,58,.08)!important;
box-shadow:0 12px 30px rgba(15,23,42,.05)!important;
}
.style-tip-card:hover{
background:#fff!important;
border-color:rgba(215,32,53,.18)!important;
}

/* Keep the cookie consent readable on the light card style. */
.cookie-consent__card{
background:rgba(255,255,255,.96)!important;
color:var(--c-text)!important;
}
.cookie-consent__eyebrow{
color:var(--c-accent)!important;
}
.cookie-consent h2{
color:var(--c-primary)!important;
}
.cookie-consent p{
color:var(--c-text-light)!important;
}
.cookie-consent a{
color:var(--c-primary)!important;
}
.cookie-consent__btn--primary{
background:#0b1f3a!important;
color:#fff!important;
}
.cookie-consent__btn--ghost{
background:#f6f2ea!important;
color:#0b1f3a!important;
border-color:rgba(11,31,58,.08)!important;
}

/* Stabilize the Authentic Value photo collage on mobile. */
@media(max-width:768px){
.home-intro__visual{
width:100%!important;
max-width:430px!important;
min-height:410px!important;
margin:0 auto!important;
padding:0!important;
}
.home-intro__images{
display:block!important;
position:relative!important;
width:100%!important;
height:410px!important;
overflow:visible!important;
}
.home-intro__images .img-main,
.home-intro__images .img-sub{
display:block!important;
visibility:visible!important;
opacity:1!important;
object-fit:cover!important;
background:#e9eef1!important;
}
.home-intro__images .img-main{
position:absolute!important;
top:0!important;
right:0!important;
left:auto!important;
bottom:auto!important;
width:86%!important;
height:300px!important;
z-index:1!important;
}
.home-intro__images .img-sub{
position:absolute!important;
left:0!important;
right:auto!important;
bottom:0!important;
top:auto!important;
width:58%!important;
height:190px!important;
z-index:2!important;
}
.home-intro__experience-badge{
top:auto!important;
right:10px!important;
bottom:34px!important;
z-index:3!important;
}
}

/* Performance: keep Travel Styles visual without fixed-background repaint jank. */
.travel-styles{
background:
linear-gradient(180deg,rgba(5,18,34,.78) 0%,rgba(5,18,34,.62) 48%,rgba(5,18,34,.34) 100%),
url('https://images.unsplash.com/photo-1772166876624-90ed0465fa87?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&ixlib=rb-4.1.0&q=55&w=1800') center 42%/cover no-repeat!important;
background-attachment:scroll!important;
contain:paint!important;
}
.travel-styles::before{
background:linear-gradient(90deg,rgba(5,18,34,.42),rgba(5,18,34,.16),rgba(5,18,34,.42))!important;
}
.travel-styles .home-style-card,
.travel-styles .home-style-card:hover{
box-shadow:0 18px 44px rgba(5,18,34,.2)!important;
}
.travel-styles .home-style-card:hover,
.travel-styles .home-style-card:hover .home-style-card__image{
transform:none!important;
}
.travel-styles .home-style-card__icon{
backdrop-filter:none!important;
-webkit-backdrop-filter:none!important;
}
@media(max-width:980px){
.travel-styles{
background:
linear-gradient(180deg,rgba(5,18,34,.8) 0%,rgba(5,18,34,.64) 48%,rgba(5,18,34,.38) 100%),
url('https://images.unsplash.com/photo-1772166876624-90ed0465fa87?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&ixlib=rb-4.1.0&q=55&w=1200') center/cover no-repeat!important;
}


/* === 404 PAGE === */
.not-found{padding:120px 0;background:var(--c-bg)}.not-found__inner{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;max-width:900px;margin:0 auto}.not-found__visual{text-align:center}.not-found__visual svg{width:100%;max-width:280px;height:auto}.not-found__content h1{font-size:clamp(2rem,4vw,3rem);color:var(--c-dark);margin-bottom:16px}.not-found__content>p{font-size:1.05rem;color:var(--c-text-light);margin-bottom:8px}.not-found__hint{font-size:.95rem;color:var(--c-text-light);margin-bottom:32px}.not-found__actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:40px}.not-found__suggestions h2{font-size:1.1rem;color:var(--c-dark);margin-bottom:16px;font-weight:700}.not-found__destinations{display:flex;flex-wrap:wrap;gap:10px}.not-found__dest-tag{display:inline-flex;align-items:center;padding:8px 16px;border-radius:999px;background:#fff;border:1px solid var(--c-border);color:var(--c-text);font-size:.88rem;font-weight:600;transition:var(--transition)}.not-found__dest-tag:hover{background:var(--c-primary);color:#fff;border-color:var(--c-primary);transform:translateY(-2px)}
}

/* === FINAL BRANDS FOOTER REDESIGN === */
.footer .footer__brands{
position:relative!important;
isolation:isolate!important;
display:grid!important;
grid-template-columns:minmax(230px,.72fr) minmax(0,1.85fr)!important;
align-items:center!important;
gap:clamp(24px,4vw,58px)!important;
padding:34px clamp(18px,3vw,34px)!important;
margin-bottom:0!important;
border:1px solid rgba(255,255,255,.1)!important;
border-left:0!important;
border-right:0!important;
background:linear-gradient(135deg,rgba(214,173,104,.12),rgba(214,173,104,0) 38%),linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.025))!important;
box-shadow:inset 0 1px 0 rgba(255,255,255,.08)!important;
}
.footer .footer__brands::before{
content:""!important;
position:absolute!important;
inset:0!important;
z-index:-1!important;
background:radial-gradient(circle at 14% 0%,rgba(214,173,104,.18),transparent 34%),linear-gradient(90deg,rgba(255,255,255,.06),transparent 52%)!important;
opacity:.85!important;
}
.footer .footer__brands-copy{max-width:360px!important}
.footer .footer__brands-copy span{
display:block!important;
margin:0!important;
font-family:'Playfair Display',serif!important;
font-size:clamp(1.65rem,2.4vw,2.25rem)!important;
font-weight:750!important;
line-height:1.05!important;
color:#fff!important;
}
.footer .footer__brands-copy p{
max-width:320px!important;
margin:10px 0 0!important;
color:rgba(255,255,255,.68)!important;
font-size:.94rem!important;
line-height:1.6!important;
}
.footer .footer__brands-grid{
display:grid!important;
grid-template-columns:repeat(3,minmax(0,1fr))!important;
gap:12px!important;
align-items:stretch!important;
}
.footer .footer-brand-link{
position:relative!important;
display:grid!important;
grid-template-rows:minmax(54px,auto) auto!important;
align-items:center!important;
justify-items:start!important;
min-height:126px!important;
padding:18px!important;
border-radius:8px!important;
overflow:hidden!important;
text-decoration:none!important;
background:rgba(6,22,38,.62)!important;
border:1px solid rgba(255,255,255,.12)!important;
box-shadow:none!important;
transition:transform .22s ease,border-color .22s ease,background .22s ease!important;
}
.footer .footer-brand-link::after{
content:""!important;
position:absolute!important;
inset:0!important;
display:block!important;
border-radius:8px!important;
background:linear-gradient(135deg,rgba(214,173,104,.16),transparent 42%)!important;
opacity:.62!important;
pointer-events:none!important;
}
.footer .footer-brand-link:hover{
transform:translateY(-2px)!important;
background:rgba(9,32,54,.78)!important;
border-color:rgba(214,173,104,.38)!important;
}
.footer .footer-brand-link__media,
.footer .footer-brand-link__copy{
position:relative!important;
z-index:1!important;
}
.footer .footer-brand-link__media{
display:flex!important;
align-items:center!important;
justify-content:flex-start!important;
width:100%!important;
min-height:54px!important;
}
.footer .footer-brand-link img{
display:block!important;
width:auto!important;
max-width:100%!important;
height:auto!important;
object-fit:contain!important;
object-position:left center!important;
filter:none!important;
}
.footer .footer-brand-link--avt img{max-height:42px!important}
.footer .footer-brand-link--vtd img{
max-height:56px!important;
max-width:210px!important;
}
.footer .footer-brand-link--stay img{max-height:50px!important}
.footer .footer-brand-link__copy{
display:grid!important;
gap:4px!important;
margin-top:14px!important;
}
.footer .footer-brand-link__copy strong{
margin:0!important;
color:#fff!important;
font-family:Inter,Arial,sans-serif!important;
font-size:.9rem!important;
font-weight:800!important;
line-height:1.25!important;
}
.footer .footer-brand-link__copy small{
color:rgba(255,255,255,.58)!important;
font-size:.76rem!important;
line-height:1.35!important;
}
@media(max-width:980px){
.footer .footer__brands{grid-template-columns:1fr!important}
.footer .footer__brands-copy{max-width:620px!important}
.footer .footer__brands-copy p{max-width:560px!important}
}
@media(max-width:720px){
.footer .footer__brands{padding:28px 18px!important}
.footer .footer__brands-grid{grid-template-columns:1fr!important}
.footer .footer-brand-link{min-height:112px!important}
}

/* === TOUR DETAIL DEAL BUTTON FIX === */
.tour-price-card form .btn-submit{
display:flex!important;
align-items:center!important;
justify-content:center!important;
width:100%!important;
min-height:56px!important;
margin:10px 0 0!important;
padding:16px 22px!important;
border:0!important;
border-radius:8px!important;
background:linear-gradient(135deg,#e73a4e 0%,#be1428 100%)!important;
box-shadow:0 16px 34px rgba(215,32,53,.24)!important;
color:#fff!important;
font-family:Inter,Arial,sans-serif!important;
font-size:.92rem!important;
font-weight:850!important;
line-height:1.15!important;
letter-spacing:.07em!important;
text-align:center!important;
text-decoration:none!important;
text-transform:uppercase!important;
cursor:pointer!important;
appearance:none!important;
-webkit-appearance:none!important;
}
.tour-price-card form .btn-submit:hover{
background:linear-gradient(135deg,#d82035 0%,#a90f20 100%)!important;
box-shadow:0 18px 38px rgba(215,32,53,.3)!important;
}
.tour-price-card form .btn-submit:focus-visible{
outline:3px solid rgba(215,32,53,.22)!important;
outline-offset:3px!important;
}

/* === TOUR DETAIL GALLERY MODAL FIX === */
.tour-gallery-modal{
position:fixed!important;
inset:0!important;
z-index:10090!important;
align-items:center!important;
justify-content:center!important;
padding:clamp(14px,2.4vw,28px)!important;
}
.tour-gallery-modal.is-active{
display:flex!important;
}
.tour-gallery-modal__backdrop{
position:absolute!important;
inset:0!important;
background:rgba(6,18,36,.74)!important;
backdrop-filter:blur(6px)!important;
-webkit-backdrop-filter:blur(6px)!important;
}
.tour-gallery-modal__content{
position:relative!important;
display:flex!important;
flex-direction:column!important;
width:min(1040px,calc(100vw - 32px))!important;
height:min(760px,calc(100dvh - 32px))!important;
max-height:none!important;
margin:0!important;
overflow:hidden!important;
border-radius:14px!important;
background:#fff!important;
box-shadow:0 28px 90px rgba(2,6,23,.34)!important;
}
.tour-gallery-modal__header{
min-height:76px!important;
padding:18px 22px!important;
background:#fff!important;
}
.tour-gallery-modal__grid{
flex:1 1 auto!important;
min-height:0!important;
overflow-y:auto!important;
overscroll-behavior:contain!important;
grid-template-columns:repeat(3,minmax(0,1fr))!important;
gap:14px!important;
padding:18px 22px 22px!important;
}
.tour-gallery-modal__item{
aspect-ratio:4/3!important;
border-radius:10px!important;
}
.tour-gallery-modal__item figcaption{
left:10px!important;
right:10px!important;
bottom:10px!important;
padding:10px!important;
border-radius:8px!important;
background:linear-gradient(180deg,rgba(6,18,36,0),rgba(6,18,36,.72))!important;
}
@media(max-width:900px){
.tour-gallery-modal__content{
width:calc(100vw - 24px)!important;
height:calc(100dvh - 24px)!important;
border-radius:12px!important;
}
.tour-gallery-modal__grid{
grid-template-columns:repeat(2,minmax(0,1fr))!important;
padding:14px!important;
gap:10px!important;
}
}
@media(max-width:560px){
.tour-gallery-modal{
padding:8px!important;
}
.tour-gallery-modal__content{
width:calc(100vw - 16px)!important;
height:calc(100dvh - 16px)!important;
}
.tour-gallery-modal__header{
min-height:64px!important;
padding:14px!important;
gap:10px!important;
}
.tour-gallery-modal__header h3{
font-size:1rem!important;
}
.tour-gallery-modal__count{
font-size:.76rem!important;
}
.tour-gallery-modal__close{
width:36px!important;
height:36px!important;
}
.tour-gallery-modal__grid{
grid-template-columns:1fr!important;
}
}

/* === TOUR CARD IMAGE STABILITY === */
.tour-card__img,
.tour-card__image{
position:relative!important;
display:block!important;
overflow:hidden!important;
background:
linear-gradient(135deg,rgba(11,31,58,.18),rgba(215,32,53,.08)),
url('../images/intro/ninh-binh.jpg') center/cover no-repeat!important;
}
.tour-card__img img,
.tour-card__image img{
display:block!important;
width:100%!important;
height:100%!important;
object-fit:cover!important;
background:transparent!important;
}
.tour-card__img img.is-fallback-image,
.tour-card__image img.is-fallback-image{
filter:saturate(.94) contrast(1.02)!important;
}

/* === POLISHED TOUR GALLERY MODAL === */
.tour-gallery-modal{
padding:clamp(18px,3vw,42px)!important;
}
.tour-gallery-modal__backdrop{
background:rgba(12,24,38,.64)!important;
backdrop-filter:blur(10px) saturate(1.05)!important;
-webkit-backdrop-filter:blur(10px) saturate(1.05)!important;
}
.tour-gallery-modal__content{
width:min(1120px,calc(100vw - 48px))!important;
height:min(760px,calc(100dvh - 56px))!important;
border:1px solid rgba(255,255,255,.72)!important;
border-radius:18px!important;
background:#fbfaf7!important;
box-shadow:0 34px 90px rgba(2,10,22,.34)!important;
}
.tour-gallery-modal__header{
min-height:72px!important;
padding:18px 24px!important;
border-bottom:1px solid rgba(16,42,67,.08)!important;
background:linear-gradient(180deg,#fff,#fbfaf7)!important;
}
.tour-gallery-modal__header h3{
font-family:'Playfair Display','Libre Baskerville',serif!important;
font-size:1.22rem!important;
font-weight:800!important;
letter-spacing:0!important;
color:#102a43!important;
}
.tour-gallery-modal__count{
display:inline-flex!important;
align-items:center!important;
height:34px!important;
padding:0 12px!important;
border-radius:999px!important;
background:#f2eee6!important;
color:#596579!important;
font-family:Inter,Arial,sans-serif!important;
font-size:.78rem!important;
font-weight:800!important;
}
.tour-gallery-modal__close{
width:38px!important;
height:38px!important;
background:#f1f3f5!important;
border:1px solid rgba(16,42,67,.08)!important;
color:#102a43!important;
}
.tour-gallery-modal__close:hover{
background:#e7eaee!important;
transform:none!important;
}
.tour-gallery-modal__grid{
display:grid!important;
grid-template-columns:repeat(3,minmax(0,1fr))!important;
grid-auto-rows:auto!important;
align-items:start!important;
gap:16px!important;
padding:20px 24px 24px!important;
background:#fbfaf7!important;
scrollbar-width:thin!important;
scrollbar-color:rgba(16,42,67,.28) transparent!important;
}
.tour-gallery-modal__item{
position:relative!important;
aspect-ratio:16/11!important;
min-height:0!important;
margin:0!important;
overflow:hidden!important;
border-radius:12px!important;
background:#e9edf2!important;
box-shadow:0 10px 28px rgba(16,42,67,.09)!important;
cursor:pointer!important;
}
.tour-gallery-modal__item::after{
content:""!important;
position:absolute!important;
inset:0!important;
z-index:1!important;
background:linear-gradient(180deg,rgba(5,18,34,0) 48%,rgba(5,18,34,.66) 100%)!important;
pointer-events:none!important;
}
.tour-gallery-modal__item img{
position:absolute!important;
inset:0!important;
display:block!important;
width:100%!important;
height:100%!important;
object-fit:cover!important;
background:#e9edf2!important;
transition:transform .45s ease!important;
}
.tour-gallery-modal__item:hover img{
transform:scale(1.035)!important;
}
.tour-gallery-modal__item figcaption{
position:absolute!important;
left:14px!important;
right:14px!important;
bottom:12px!important;
z-index:2!important;
display:grid!important;
gap:3px!important;
padding:0!important;
border-radius:0!important;
background:transparent!important;
color:#fff!important;
text-shadow:0 1px 8px rgba(0,0,0,.45)!important;
}
.tour-gallery-modal__item strong{
display:block!important;
font-family:Inter,Arial,sans-serif!important;
font-size:.9rem!important;
font-weight:850!important;
line-height:1.2!important;
color:#fff!important;
}
.tour-gallery-modal__item span{
display:block!important;
max-width:96%!important;
font-family:Inter,Arial,sans-serif!important;
font-size:.74rem!important;
font-weight:650!important;
line-height:1.35!important;
color:rgba(255,255,255,.82)!important;
}
.tour-gallery-modal__item img.is-fallback-image{
filter:saturate(.98) contrast(1.03)!important;
}
.tour-gallery-modal.is-previewing .tour-gallery-modal__grid{
display:none!important;
}
.tour-gallery-modal__preview{
position:relative!important;
display:grid!important;
grid-template-rows:auto minmax(0,1fr) auto!important;
gap:14px!important;
height:calc(100% - 72px)!important;
padding:18px 24px 24px!important;
background:#fbfaf7!important;
}
.tour-gallery-modal__preview[hidden]{
display:none!important;
}
.tour-gallery-modal__preview-back{
justify-self:start!important;
display:inline-flex!important;
align-items:center!important;
justify-content:center!important;
min-height:36px!important;
padding:8px 13px!important;
border:1px solid rgba(16,42,67,.12)!important;
border-radius:999px!important;
background:#fff!important;
color:#102a43!important;
font:inherit!important;
font-size:.8rem!important;
font-weight:800!important;
cursor:pointer!important;
}
.tour-gallery-modal__preview img{
width:100%!important;
height:100%!important;
min-height:0!important;
object-fit:contain!important;
border-radius:14px!important;
background:#101826!important;
box-shadow:0 18px 46px rgba(2,10,22,.18)!important;
}
.tour-gallery-modal__preview-caption{
display:grid!important;
gap:4px!important;
text-align:center!important;
}
.tour-gallery-modal__preview-caption strong{
font-family:'Playfair Display','Libre Baskerville',serif!important;
font-size:1.12rem!important;
font-weight:800!important;
color:#102a43!important;
}
.tour-gallery-modal__preview-caption span{
font-size:.86rem!important;
color:#64748b!important;
}
@media(max-width:900px){
.tour-gallery-modal__content{
width:calc(100vw - 28px)!important;
height:calc(100dvh - 28px)!important;
}
.tour-gallery-modal__grid{
grid-template-columns:repeat(2,minmax(0,1fr))!important;
padding:16px!important;
gap:12px!important;
}
}
@media(max-width:560px){
.tour-gallery-modal{
padding:10px!important;
}
.tour-gallery-modal__content{
width:calc(100vw - 20px)!important;
height:calc(100dvh - 20px)!important;
border-radius:14px!important;
}
.tour-gallery-modal__header{
min-height:64px!important;
padding:14px 16px!important;
}
.tour-gallery-modal__count{
display:none!important;
}
.tour-gallery-modal__grid{
grid-template-columns:1fr!important;
gap:12px!important;
padding:14px!important;
}
.tour-gallery-modal__preview{
height:calc(100% - 64px)!important;
padding:14px!important;
}
.tour-gallery-modal__item{
aspect-ratio:16/10!important;
}
}

/* === HERO POPPINS FONT OVERRIDE === */
.hero,
.hero__title,
.hero__title strong,
.hero__title .hero__title-line,
.hero__subtitle,
.hero__meta{
font-family:'Poppins',Arial,sans-serif!important;
}
.hero__title strong,
.hero__title .hero__title-line{
font-weight:700!important;
letter-spacing:0!important;
}
.hero__title .hero__title-line--top{
font-style:normal!important;
}
.hero__subtitle{
font-weight:600!important;
}

/* === FINAL HERO TWO-LINE TITLE LOCK === */
.hero__title .hero__title-line--top,
.hero__title .hero__title-line--bottom{
color:#fff!important;
font-style:normal!important;
font-size:clamp(2.9rem,4.7vw,5.05rem)!important;
line-height:1.02!important;
letter-spacing:0!important;
white-space:nowrap!important;
}
.hero__title .hero__title-line--bottom{
max-width:100%!important;
}
@media(max-width:768px){
.hero__title .hero__title-line--top,
.hero__title .hero__title-line--bottom{
font-size:clamp(1.85rem,8.2vw,2.35rem)!important;
white-space:nowrap!important;
}
}

/* === HERO REMOVE DUPLICATE TOP LINE === */
.hero__title .hero__title-line--bottom:first-child,
.hero__title strong > .hero__title-line--bottom:first-child{
font-size:clamp(2.85rem,5.1vw,5.2rem)!important;
line-height:.98!important;
max-width:min(760px,100%)!important;
white-space:normal!important;
}
@media(max-width:768px){
.hero__title .hero__title-line--bottom:first-child,
.hero__title strong > .hero__title-line--bottom:first-child{
font-size:clamp(2.25rem,11vw,3.2rem)!important;
max-width:360px!important;
}
}

/* === STYLE PAGE DESTINATION GALLERY LINKS === */
.style-gallery__item{
display:block!important;
}
.style-gallery__item::after{
pointer-events:none!important;
}
.style-gallery__link{
position:absolute!important;
inset:0!important;
display:block!important;
z-index:1!important;
color:inherit!important;
text-decoration:none!important;
}
.style-gallery__link img{
z-index:0!important;
}
.style-gallery__link figcaption{
z-index:2!important;
}
.style-destinations{
display:none!important;
}

/* === STYLE GALLERY ACCURACY + READABILITY LOCK === */
.style-gallery{
grid-template-columns:1.12fr .88fr!important;
gap:16px!important;
}
.style-gallery__item{
border-radius:10px!important;
background:#dfe7eb!important;
box-shadow:0 16px 38px rgba(15,23,42,.12)!important;
}
.style-gallery__item::after,
.style-gallery__link::after{
content:""!important;
position:absolute!important;
inset:0!important;
z-index:1!important;
background:linear-gradient(180deg,rgba(7,18,31,.04) 0%,rgba(7,18,31,.2) 40%,rgba(7,18,31,.82) 100%)!important;
pointer-events:none!important;
}
.style-gallery__item img,
.style-gallery__link img{
filter:saturate(1.03) contrast(1.04)!important;
}
.style-gallery__item figcaption,
.style-gallery__link figcaption{
z-index:3!important;
left:16px!important;
right:16px!important;
bottom:16px!important;
gap:7px!important;
}
.style-gallery__item strong{
font-family:'Libre Baskerville',Georgia,serif!important;
font-size:1rem!important;
font-weight:800!important;
line-height:1.18!important;
color:#fff!important;
text-shadow:0 2px 10px rgba(0,0,0,.68)!important;
}
.style-gallery__item span{
font-family:'Libre Baskerville',Georgia,serif!important;
font-size:.78rem!important;
font-weight:700!important;
line-height:1.45!important;
color:rgba(255,255,255,.94)!important;
text-shadow:0 2px 8px rgba(0,0,0,.72)!important;
display:-webkit-box!important;
-webkit-line-clamp:3!important;
-webkit-box-orient:vertical!important;
overflow:hidden!important;
}
.style-showcase__lead .section-title,
.style-showcase__point p,
.style-showcase__text{
text-rendering:geometricPrecision!important;
-webkit-font-smoothing:antialiased!important;
}
@media(max-width:900px){
.style-gallery{
grid-template-columns:1fr 1fr!important;
}
}
@media(max-width:560px){
.style-gallery{
grid-template-columns:1fr!important;
}
.style-gallery__item,
.style-gallery__item--main{
min-height:250px!important;
}
}

/* === CLIENT FONT RESTORE + MOBILE MENU DETAIL TOGGLE === */
body,
p,
li,
input,
select,
textarea,
button,
.section-subtitle,
.hero__subtitle,
.tour-card__desc,
.home-style-card__subtitle,
.style-intro__text,
.style-showcase__text,
.style-dest-card__body p,
.blog-card__content p{
font-family:'Libre Baskerville',Georgia,serif!important;
letter-spacing:0!important;
}
h1,
.hero__title strong,
.tour-hero__content h1,
.dest-hero__content h1,
.style-hero__title,
.plan-hero__content h1,
.blog-story__title{
font-family:'Cormorant Garamond',Georgia,serif!important;
font-weight:700!important;
letter-spacing:0!important;
}
h2,
.section-title,
.home-intro__copy .section-title,
.style-intro__content h2,
.style-showcase__lead .section-title,
.style-tips__header .section-title,
.cta-design-journey__title,
.cta-banner h2{
font-family:'Libre Baskerville',Georgia,serif!important;
font-weight:700!important;
letter-spacing:0!important;
}
h3,
h4,
h5,
h6,
.dest-card__info h3,
.tour-card__body h3,
.why-card h3,
.collection-card h3,
.review-card__title,
.home-style-card__body h3,
.style-dest-card__body h3,
.blog-card__content h3,
.style-quick-card h3,
.footer h4{
font-family:'EB Garamond',Georgia,serif!important;
font-weight:600!important;
letter-spacing:0!important;
}
.nav__item--dropdown{
display:flex;
align-items:center;
gap:4px;
}
.nav__links{
gap:20px!important;
}
.nav{
gap:16px!important;
}
.nav__cta{
margin-left:40px!important;
}
.nav__item--dropdown>.nav__link{
padding-right:0!important;
}
.nav__submenu-toggle{
display:inline-flex;
align-items:center;
justify-content:center;
width:18px;
height:24px;
margin-left:0;
border:0;
border-radius:999px;
background:transparent;
color:currentColor;
cursor:pointer;
}
.site-header--overlay:not(.is-solid) .nav__submenu-toggle{
color:#fff!important;
}
.site-header:not(.site-header--overlay) .nav__submenu-toggle,
.site-header--overlay.is-solid .nav__submenu-toggle{
color:var(--c-primary)!important;
}
.nav__submenu-toggle span{
display:block;
width:7px;
height:7px;
border-right:1.5px solid currentColor;
border-bottom:1.5px solid currentColor;
transform:rotate(45deg) translateY(-2px);
transition:transform .2s ease;
}
.nav__item--dropdown.is-submenu-open>.nav__submenu-toggle span{
transform:rotate(225deg) translate(-1px,-1px);
}
.nav__item--dropdown>.nav__link::after{
display:none!important;
}
@media(min-width:769px){
.nav__item--dropdown:hover>.nav__submenu-toggle span,
.nav__item--dropdown:focus-within>.nav__submenu-toggle span{
transform:rotate(225deg) translate(-1px,-1px);
}
}
@media(max-width:768px){
.nav__item--dropdown{
display:grid!important;
grid-template-columns:1fr 34px!important;
align-items:center!important;
gap:0!important;
}
.nav__item--dropdown>.nav__link{
grid-column:1!important;
}
.nav__submenu-toggle{
grid-column:2!important;
width:34px!important;
height:34px!important;
margin-left:0!important;
color:var(--c-primary)!important;
}
.nav__item--dropdown>.nav__dropdown{
grid-column:1 / -1!important;
display:none!important;
}
.nav__item--dropdown.is-submenu-open>.nav__dropdown{
display:block!important;
}
.nav__item--dropdown:not(.is-submenu-open):hover>.nav__dropdown,
.nav__item--dropdown:not(.is-submenu-open):focus-within>.nav__dropdown{
display:none!important;
}
}

/* === TOUR PAGE FOCUS REFINEMENTS === */
.tour-sidebar{
display:grid!important;
align-content:start!important;
gap:18px!important;
}
.tour-sidebar .tour-map-card,
.tour-sidebar .tour-reviews-section{
margin-top:0!important;
margin-bottom:0!important;
}
.tour-quote-summary{
display:grid!important;
gap:12px!important;
margin:18px 0!important;
padding:16px!important;
border-radius:14px!important;
background:linear-gradient(180deg,#fffaf2 0%,#ffffff 100%)!important;
border:1px solid rgba(201,169,110,.28)!important;
box-shadow:0 10px 22px rgba(16,42,67,.06)!important;
}
.tour-quote-summary__label{
font-size:.68rem!important;
font-weight:900!important;
letter-spacing:.13em!important;
text-transform:uppercase!important;
color:#b7791f!important;
}
.tour-quote-summary > strong{
font-family:'Libre Baskerville',Georgia,serif!important;
font-size:1rem!important;
line-height:1.38!important;
color:#102a43!important;
}
.tour-quote-summary__grid{
display:grid!important;
grid-template-columns:1fr 1fr!important;
gap:10px!important;
}
.tour-quote-summary__grid div{
display:grid!important;
gap:3px!important;
padding:10px!important;
border-radius:10px!important;
background:#fff!important;
border:1px solid rgba(16,42,67,.08)!important;
}
.tour-quote-summary__grid span{
font-size:.66rem!important;
font-weight:800!important;
letter-spacing:.08em!important;
text-transform:uppercase!important;
color:#64748b!important;
}
.tour-quote-summary__grid b{
font-size:.9rem!important;
line-height:1.3!important;
color:#d72035!important;
}
.tour-quote-summary__price-line{
display:flex!important;
align-items:center!important;
justify-content:space-between!important;
gap:12px!important;
margin:0!important;
padding:10px 12px!important;
border-radius:10px!important;
background:#fff!important;
border:1px solid rgba(16,42,67,.08)!important;
}
.tour-quote-summary__price-line span{
font-size:.82rem!important;
font-weight:800!important;
line-height:1.35!important;
color:#102a43!important;
}
.tour-quote-summary__price-line b{
font-size:.82rem!important;
font-weight:900!important;
line-height:1.35!important;
color:#d72035!important;
text-align:right!important;
}
.tour-price-tiers{
display:grid!important;
gap:8px!important;
}
.tour-price-tiers__row{
display:grid!important;
grid-template-columns:minmax(100px,.9fr) minmax(130px,1fr)!important;
gap:8px!important;
align-items:center!important;
padding:8px 10px!important;
border-radius:10px!important;
background:rgba(255,255,255,.82)!important;
border:1px solid rgba(16,42,67,.08)!important;
}
.tour-price-tiers__row span{
font-size:.72rem!important;
font-weight:800!important;
color:#102a43!important;
}
.tour-price-tiers__row b{
font-size:.78rem!important;
line-height:1.3!important;
color:#d72035!important;
text-align:right!important;
}
.tour-price-tiers__row em{
font-size:.72rem!important;
font-style:normal!important;
line-height:1.3!important;
color:#64748b!important;
text-align:right!important;
}
@media (max-width:480px){
.tour-quote-summary__price-line{
display:grid!important;
gap:4px!important;
}
.tour-quote-summary__price-line b{
text-align:left!important;
}
.tour-price-tiers__row{
grid-template-columns:1fr!important;
gap:3px!important;
}
.tour-price-tiers__row b,
.tour-price-tiers__row em{
text-align:left!important;
}
}
.tour-quote-summary small{
font-size:.75rem!important;
line-height:1.55!important;
color:#64748b!important;
}
.tour-quote-form textarea::placeholder,
.tour-quote-form input::placeholder{
color:#8a94a6!important;
}
.tour-side-card{
padding:22px!important;
border-radius:8px!important;
background:rgba(255,255,255,.95)!important;
border:1px solid rgba(11,31,58,.08)!important;
box-shadow:var(--shadow)!important;
}
.tour-side-card__eyebrow{
display:block!important;
margin-bottom:8px!important;
color:var(--c-accent)!important;
font-family:'Libre Baskerville',Georgia,serif!important;
font-size:.68rem!important;
font-weight:700!important;
letter-spacing:.12em!important;
text-transform:uppercase!important;
}
.tour-side-card h3{
margin:0 0 14px!important;
color:var(--c-primary)!important;
font-family:'EB Garamond',Georgia,serif!important;
font-size:1.35rem!important;
line-height:1.18!important;
}
.tour-side-card__facts{
display:flex!important;
flex-wrap:wrap!important;
gap:8px!important;
margin-bottom:14px!important;
}
.tour-side-card__facts span{
display:inline-flex!important;
align-items:center!important;
min-height:28px!important;
padding:6px 9px!important;
border-radius:999px!important;
background:#f7f1e9!important;
border:1px solid rgba(200,169,106,.22)!important;
color:#6f5a2f!important;
font-size:.72rem!important;
font-weight:700!important;
line-height:1.2!important;
}
.tour-side-card__list{
display:grid!important;
gap:9px!important;
margin:0!important;
padding:0!important;
list-style:none!important;
}
.tour-side-card__list li{
position:relative!important;
padding-left:17px!important;
color:#475569!important;
font-size:.86rem!important;
line-height:1.55!important;
}
.tour-side-card__list li::before{
content:""!important;
position:absolute!important;
left:0!important;
top:.72em!important;
width:6px!important;
height:6px!important;
border-radius:50%!important;
background:var(--c-accent)!important;
}
.tour-side-days{
display:grid!important;
gap:10px!important;
margin:0!important;
padding:0!important;
list-style:none!important;
}
.tour-side-days li{
display:grid!important;
grid-template-columns:54px 1fr!important;
gap:10px!important;
align-items:start!important;
padding-bottom:10px!important;
border-bottom:1px solid rgba(11,31,58,.08)!important;
}
.tour-side-days li:last-child{
padding-bottom:0!important;
border-bottom:0!important;
}
.tour-side-days strong{
color:var(--c-accent)!important;
font-size:.72rem!important;
font-weight:800!important;
line-height:1.4!important;
text-transform:uppercase!important;
}
.tour-side-days span{
color:#334155!important;
font-size:.84rem!important;
line-height:1.45!important;
}
.tour-side-card__note{
margin:12px 0 0!important;
color:#64748b!important;
font-size:.82rem!important;
line-height:1.55!important;
}
@media(max-width:768px){
.tour-sidebar{
display:flex!important;
}
.tour-sidebar .tour-side-card{
order:0!important;
}
}

/* === TRAVEL STYLE CARD IMAGE + CTA FIX === */
.home-style-card__media{
background:#d7dee6!important;
}
.home-style-card__image{
display:block!important;
font-size:0!important;
color:transparent!important;
}
.home-style-card__image.is-fallback-image{
filter:saturate(.96) contrast(1.03)!important;
}
.home-style-card__link-copy{
display:flex!important;
align-items:center!important;
justify-content:space-between!important;
gap:10px!important;
width:auto!important;
max-width:100%!important;
min-height:38px!important;
margin-top:auto!important;
padding:0 12px!important;
border-radius:999px!important;
background:linear-gradient(135deg,#e73a4e 0%,#be1428 100%)!important;
box-shadow:0 10px 24px rgba(215,32,53,.18)!important;
color:#fff!important;
white-space:nowrap!important;
font-family:'Libre Baskerville',Georgia,serif!important;
font-size:.58rem!important;
font-weight:700!important;
letter-spacing:.03em!important;
line-height:1!important;
text-transform:uppercase!important;
transition:transform .2s ease,box-shadow .2s ease,background .2s ease!important;
}
.home-style-card__link-copy::after{
content:'\2192'!important;
display:inline-flex!important;
align-items:center!important;
justify-content:center!important;
flex:0 0 auto!important;
width:22px!important;
height:22px!important;
margin-left:4px!important;
border-radius:50%!important;
background:rgba(255,255,255,.16)!important;
font-size:.95rem!important;
line-height:1!important;
transform:translateY(-1px)!important;
}
.home-style-card:hover .home-style-card__link-copy{
background:linear-gradient(135deg,#f04458 0%,#c9162b 100%)!important;
box-shadow:0 14px 28px rgba(215,32,53,.26)!important;
transform:translateY(-1px)!important;
}

/* === SUBMIT ANTI-SPAM STATE === */
button[type="submit"].is-submitting,
input[type="submit"].is-submitting{
cursor:wait!important;
filter:saturate(.9)!important;
}

button[type="submit"].is-submitting{
display:inline-flex!important;
align-items:center!important;
justify-content:center!important;
gap:10px!important;
}
.submit-spinner{
width:18px!important;
height:18px!important;
border:2px solid currentColor!important;
border-right-color:transparent!important;
border-radius:50%!important;
display:inline-block!important;
animation:submit-spin .7s linear infinite!important;
}
@keyframes submit-spin{
to{transform:rotate(360deg)}
}

/* === PLAN FORM CTA AND FOOTER LOWER REDESIGN === */
.plan-form .plan-submit{
display:flex!important;
align-items:center!important;
justify-content:center!important;
width:100%!important;
min-height:56px!important;
margin:8px 0 0!important;
padding:16px 24px!important;
border:0!important;
border-radius:8px!important;
background:linear-gradient(135deg,#e73a4e 0%,#be1428 100%)!important;
box-shadow:0 18px 38px rgba(215,32,53,.24)!important;
color:#fff!important;
font-family:Inter,Arial,sans-serif!important;
font-size:.86rem!important;
font-weight:850!important;
line-height:1.2!important;
letter-spacing:.06em!important;
text-align:center!important;
text-decoration:none!important;
text-transform:uppercase!important;
cursor:pointer!important;
appearance:none!important;
-webkit-appearance:none!important;
}
.plan-form .plan-submit:hover{
background:linear-gradient(135deg,#d82035 0%,#a90f20 100%)!important;
box-shadow:0 20px 42px rgba(215,32,53,.3)!important;
transform:none!important;
}
.plan-form .plan-submit:focus-visible{
outline:3px solid rgba(215,32,53,.22)!important;
outline-offset:3px!important;
}
.footer .footer__inner{
display:grid!important;
grid-template-columns:minmax(280px,1.25fr) minmax(160px,.65fr) minmax(170px,.72fr) minmax(240px,.95fr)!important;
gap:clamp(24px,3vw,46px)!important;
align-items:start!important;
padding:44px 0 54px!important;
border-top:1px solid rgba(255,255,255,.08)!important;
}
.footer .footer__brand-card{
max-width:390px!important;
padding:0!important;
background:transparent!important;
border:0!important;
box-shadow:none!important;
}
.footer .footer__brand-title{
display:block!important;
margin:0 0 18px!important;
}
.footer .footer__brand-logo{
width:220px!important;
height:auto!important;
max-height:92px!important;
object-fit:contain!important;
object-position:left center!important;
}
.footer .footer__brand-tagline{
max-width:330px!important;
margin:0 0 10px!important;
color:#fff!important;
font-family:Inter,Arial,sans-serif!important;
font-size:1rem!important;
font-weight:800!important;
line-height:1.42!important;
}
.footer .footer__operated{
max-width:320px!important;
margin:0!important;
color:rgba(255,255,255,.6)!important;
font-size:.9rem!important;
line-height:1.65!important;
}
.footer .footer__brand-badges{
display:flex!important;
flex-wrap:wrap!important;
gap:8px!important;
margin:18px 0 0!important;
}
.footer .footer__brand-badges span{
display:inline-flex!important;
align-items:center!important;
min-height:30px!important;
padding:7px 11px!important;
border-radius:999px!important;
background:rgba(255,255,255,.06)!important;
border:1px solid rgba(255,255,255,.11)!important;
color:rgba(255,255,255,.78)!important;
font-size:.74rem!important;
font-weight:750!important;
}
.footer .footer__brand-cta{
display:inline-flex!important;
align-items:center!important;
justify-content:center!important;
min-height:44px!important;
margin-top:22px!important;
padding:0 18px!important;
border-radius:8px!important;
background:linear-gradient(135deg,#e73a4e 0%,#be1428 100%)!important;
box-shadow:0 16px 34px rgba(215,32,53,.25)!important;
color:#fff!important;
font-family:Inter,Arial,sans-serif!important;
font-size:.82rem!important;
font-weight:850!important;
letter-spacing:.02em!important;
}
.footer .footer__links,
.footer .footer__destinations,
.footer .footer__contact{
padding-top:10px!important;
}
.footer h4{
position:relative!important;
margin:0 0 18px!important;
padding-bottom:10px!important;
font-family:Inter,Arial,sans-serif!important;
font-size:.82rem!important;
font-weight:850!important;
letter-spacing:.08em!important;
text-transform:uppercase!important;
color:#fff!important;
}
.footer h4::after{
content:""!important;
position:absolute!important;
left:0!important;
bottom:0!important;
width:32px!important;
height:2px!important;
border-radius:999px!important;
background:#d6b36a!important;
}
.footer .footer__links a,
.footer .footer__destinations a{
display:block!important;
padding:5px 0!important;
color:rgba(255,255,255,.68)!important;
font-family:Inter,Arial,sans-serif!important;
font-size:.9rem!important;
line-height:1.45!important;
text-decoration:none!important;
}
.footer .footer__links a:hover,
.footer .footer__destinations a:hover{
color:#fff!important;
}
.footer .footer__contact-list{
display:grid!important;
gap:10px!important;
}
.footer .footer__contact-item{
display:block!important;
padding:14px 16px!important;
border-radius:8px!important;
background:rgba(255,255,255,.045)!important;
border:1px solid rgba(255,255,255,.1)!important;
box-shadow:none!important;
}
.footer .footer__contact-item:hover{
background:rgba(255,255,255,.075)!important;
border-color:rgba(214,179,106,.28)!important;
}
.footer .footer__contact-label{
display:block!important;
margin:0 0 5px!important;
color:#d6b36a!important;
font-size:.68rem!important;
font-weight:850!important;
letter-spacing:.1em!important;
text-transform:uppercase!important;
}
.footer .footer__contact-item strong{
display:block!important;
color:#fff!important;
font-size:.9rem!important;
font-weight:800!important;
line-height:1.35!important;
word-break:break-word!important;
}
.footer .footer__bottom{
margin:0!important;
padding:18px 0!important;
border-top:1px solid rgba(255,255,255,.08)!important;
background:rgba(0,0,0,.12)!important;
}
.footer .footer__bottom p{
margin:0!important;
color:rgba(255,255,255,.56)!important;
font-size:.84rem!important;
text-align:center!important;
}

/* === FOOTER BRANDS FLUSH INTO BACKGROUND === */
.footer .footer__brands{
max-width:1110px!important;
padding:34px 0 30px!important;
border:0!important;
border-bottom:1px solid rgba(255,255,255,.08)!important;
background:transparent!important;
box-shadow:none!important;
}
.footer .footer__brands::before{
display:none!important;
}
.footer .footer-brand-link{
background:rgba(255,255,255,.045)!important;
border:1px solid rgba(255,255,255,.1)!important;
box-shadow:none!important;
}
.footer .footer-brand-link::after{
display:none!important;
}
.footer .footer-brand-link:hover{
background:rgba(255,255,255,.07)!important;
border-color:rgba(214,179,106,.28)!important;
}

/* === WIDER JOURNEY CTA REFINEMENT === */
.cta-design-journey{
padding:86px 0 96px!important;
}
.cta-design-journey__inner{
width:min(1320px,calc(100vw - 48px))!important;
max-width:none!important;
min-height:560px!important;
grid-template-columns:minmax(0,1.28fr) minmax(360px,.56fr)!important;
gap:clamp(34px,5vw,76px)!important;
padding:clamp(54px,5.4vw,82px) clamp(44px,5.8vw,82px)!important;
border-radius:14px!important;
}
.cta-design-journey__content{
max-width:760px!important;
}
.cta-design-journey__title{
max-width:780px!important;
font-size:clamp(3.5rem,5.9vw,6.4rem)!important;
line-height:.91!important;
}
.cta-design-journey__subtitle{
max-width:680px!important;
font-size:1.05rem!important;
line-height:1.8!important;
}
.cta-design-journey__actions{
margin-top:34px!important;
}
.cta-design-journey__actions .btn{
min-width:220px!important;
}
.cta-design-journey__trust{
max-width:740px!important;
margin-top:6px!important;
}
.cta-design-journey__trust span{
min-height:54px!important;
padding:12px 16px!important;
}
.cta-design-journey__panel{
min-height:360px!important;
padding:34px!important;
border-radius:14px!important;
}
.cta-design-journey__panel h3{
font-size:2.05rem!important;
margin-bottom:12px!important;
}
.cta-design-journey__panel-intro{
margin:0 0 24px!important;
color:#637286!important;
font-family:Inter,Arial,sans-serif!important;
font-size:.95rem!important;
line-height:1.62!important;
}
.cta-design-journey__steps{
gap:16px!important;
}
.cta-design-journey__steps div{
grid-template-columns:46px 1fr!important;
gap:14px!important;
padding-bottom:16px!important;
}
.cta-design-journey__steps strong{
width:42px!important;
height:42px!important;
}
.cta-design-journey__steps span{
font-size:.95rem!important;
}
.cta-design-journey__panel-link{
min-height:52px!important;
margin-top:28px!important;
}
.cta-design-journey__panel-meta{
display:grid!important;
grid-template-columns:1fr 1fr!important;
gap:10px!important;
margin-top:16px!important;
}
.cta-design-journey__panel-meta span{
display:flex!important;
align-items:center!important;
justify-content:center!important;
gap:6px!important;
min-height:46px!important;
padding:10px!important;
border-radius:8px!important;
background:#f5f1e9!important;
border:1px solid rgba(16,42,67,.08)!important;
color:#526173!important;
font-family:Inter,Arial,sans-serif!important;
font-size:.78rem!important;
font-weight:750!important;
text-transform:uppercase!important;
letter-spacing:.03em!important;
}
.cta-design-journey__panel-meta strong{
color:#102a43!important;
font-size:1rem!important;
font-weight:900!important;
}
@media(max-width:1180px){
.cta-design-journey__inner{
width:min(1100px,calc(100vw - 36px))!important;
grid-template-columns:1fr!important;
}
.cta-design-journey__panel{
max-width:680px!important;
}
}
@media(max-width:720px){
.cta-design-journey{
padding:54px 0!important;
}
.cta-design-journey__inner{
width:calc(100vw - 28px)!important;
min-height:auto!important;
padding:32px 18px!important;
}
.cta-design-journey__title{
font-size:clamp(2.45rem,13vw,3.8rem)!important;
}
.cta-design-journey__trust{
grid-template-columns:1fr!important;
}
}
@media(max-width:1100px){
.footer .footer__inner{
grid-template-columns:1fr 1fr!important;
}
}
@media(max-width:720px){
.footer .footer__inner{
grid-template-columns:1fr!important;
padding:34px 0 42px!important;
}
.footer .footer__brand-logo{
width:190px!important;
}
}

/* === PROFESSIONAL HOME JOURNEY CTA === */
.cta-design-journey{
min-height:auto!important;
padding:72px 0!important;
background:#f7f5f1!important;
overflow:visible!important;
}
.cta-design-journey__inner{
position:relative!important;
isolation:isolate!important;
display:grid!important;
grid-template-columns:minmax(0,1.05fr) minmax(320px,.72fr)!important;
gap:clamp(28px,4vw,58px)!important;
align-items:center!important;
min-height:460px!important;
padding:clamp(42px,5vw,68px)!important;
border-radius:14px!important;
overflow:hidden!important;
background:#102a43!important;
box-shadow:0 28px 80px rgba(16,42,67,.18)!important;
}
.cta-design-journey__bg{
position:absolute!important;
inset:0!important;
z-index:-2!important;
}
.cta-design-journey__bg img{
width:100%!important;
height:100%!important;
object-fit:cover!important;
object-position:center 58%!important;
filter:saturate(.92) contrast(1.04)!important;
}
.cta-design-journey__overlay{
position:absolute!important;
inset:0!important;
background:
linear-gradient(90deg,rgba(7,23,40,.92) 0%,rgba(7,23,40,.78) 42%,rgba(7,23,40,.42) 100%),
linear-gradient(180deg,rgba(7,23,40,.16),rgba(7,23,40,.34))!important;
}
.cta-design-journey__content{
max-width:680px!important;
}
.cta-design-journey__content .section-eyebrow{
display:inline-flex!important;
align-items:center!important;
height:30px!important;
padding:0 12px!important;
margin:0 0 18px!important;
border-radius:999px!important;
background:rgba(214,179,106,.14)!important;
border:1px solid rgba(214,179,106,.3)!important;
color:#f1c978!important;
font-family:Inter,Arial,sans-serif!important;
font-size:.72rem!important;
font-weight:850!important;
letter-spacing:.12em!important;
}
.cta-design-journey__title{
max-width:720px!important;
margin:0 0 18px!important;
font-family:'Playfair Display','Libre Baskerville',serif!important;
font-size:clamp(2.8rem,5vw,5rem)!important;
font-weight:800!important;
line-height:.96!important;
letter-spacing:0!important;
color:#fff!important;
text-wrap:balance!important;
}
.cta-design-journey__title span{
color:#f1c978!important;
}
.cta-design-journey__subtitle{
max-width:590px!important;
margin:0 0 30px!important;
font-family:Inter,Arial,sans-serif!important;
font-size:1.02rem!important;
font-weight:500!important;
line-height:1.75!important;
color:rgba(255,255,255,.84)!important;
}
.cta-design-journey__actions{
display:flex!important;
align-items:center!important;
gap:12px!important;
margin:0 0 28px!important;
}
.cta-design-journey__actions .btn{
min-height:50px!important;
padding:0 22px!important;
border-radius:8px!important;
font-family:Inter,Arial,sans-serif!important;
font-size:.82rem!important;
font-weight:850!important;
letter-spacing:.04em!important;
box-shadow:none!important;
}
.cta-design-journey__actions .btn--primary{
background:linear-gradient(135deg,#e73a4e,#be1428)!important;
box-shadow:0 18px 34px rgba(215,32,53,.28)!important;
}
.cta-design-journey__secondary{
background:rgba(255,255,255,.1)!important;
border-color:rgba(255,255,255,.3)!important;
color:#fff!important;
backdrop-filter:none!important;
}
.cta-design-journey__trust{
display:grid!important;
grid-template-columns:repeat(3,minmax(0,1fr))!important;
gap:10px!important;
max-width:680px!important;
}
.cta-design-journey__trust span{
display:flex!important;
align-items:center!important;
gap:8px!important;
min-height:42px!important;
padding:10px 12px!important;
border-radius:8px!important;
background:rgba(255,255,255,.1)!important;
border:1px solid rgba(255,255,255,.14)!important;
color:rgba(255,255,255,.9)!important;
font-family:Inter,Arial,sans-serif!important;
font-size:.78rem!important;
font-weight:750!important;
letter-spacing:0!important;
}
.cta-design-journey__trust svg{
width:14px!important;
height:14px!important;
color:#f1c978!important;
}
.cta-design-journey__panel{
position:relative!important;
z-index:1!important;
align-self:stretch!important;
display:flex!important;
flex-direction:column!important;
justify-content:center!important;
padding:28px!important;
border-radius:12px!important;
background:rgba(255,255,255,.94)!important;
border:1px solid rgba(255,255,255,.6)!important;
box-shadow:0 22px 60px rgba(2,10,22,.18)!important;
}
.cta-design-journey__panel-label{
width:max-content!important;
margin-bottom:14px!important;
padding:7px 10px!important;
border-radius:999px!important;
background:#f7efe2!important;
color:#9f6c18!important;
font-family:Inter,Arial,sans-serif!important;
font-size:.72rem!important;
font-weight:850!important;
text-transform:uppercase!important;
letter-spacing:.08em!important;
}
.cta-design-journey__panel h3{
margin:0 0 20px!important;
font-family:'Playfair Display','Libre Baskerville',serif!important;
font-size:1.8rem!important;
line-height:1.1!important;
color:#102a43!important;
}
.cta-design-journey__steps{
display:grid!important;
gap:14px!important;
}
.cta-design-journey__steps div{
display:grid!important;
grid-template-columns:42px 1fr!important;
gap:12px!important;
align-items:start!important;
padding-bottom:14px!important;
border-bottom:1px solid rgba(16,42,67,.1)!important;
}
.cta-design-journey__steps div:last-child{
border-bottom:0!important;
padding-bottom:0!important;
}
.cta-design-journey__steps strong{
display:grid!important;
place-items:center!important;
width:38px!important;
height:38px!important;
border-radius:8px!important;
background:#102a43!important;
color:#fff!important;
font-family:Inter,Arial,sans-serif!important;
font-size:.78rem!important;
font-weight:850!important;
}
.cta-design-journey__steps span{
color:#526173!important;
font-family:Inter,Arial,sans-serif!important;
font-size:.92rem!important;
line-height:1.55!important;
}
.cta-design-journey__panel-link{
display:flex!important;
align-items:center!important;
justify-content:center!important;
min-height:46px!important;
margin-top:24px!important;
border-radius:8px!important;
background:#102a43!important;
color:#fff!important;
font-family:Inter,Arial,sans-serif!important;
font-size:.82rem!important;
font-weight:850!important;
text-decoration:none!important;
text-transform:uppercase!important;
letter-spacing:.04em!important;
}
@media(max-width:980px){
.cta-design-journey__inner{
grid-template-columns:1fr!important;
padding:38px!important;
}
.cta-design-journey__panel{
max-width:none!important;
}
}
@media(max-width:720px){
.cta-design-journey{
padding:48px 0!important;
}
.cta-design-journey__inner{
padding:28px 18px!important;
border-radius:12px!important;
}
.cta-design-journey__content{
text-align:left!important;
}
.cta-design-journey__title{
font-size:clamp(2.25rem,12vw,3.3rem)!important;
}
.cta-design-journey__actions,
.cta-design-journey__trust{
grid-template-columns:1fr!important;
}
.cta-design-journey__actions{
display:grid!important;
}
.cta-design-journey__actions .btn,
.cta-design-journey__panel-link{
width:100%!important;
}
.cta-design-journey__panel{
padding:22px!important;
}
}

/* === CUSTOMER EXPERIENCE IMAGE FIX === */
.customer-experience__photos{
align-items:stretch!important;
display:grid!important;
grid-template-columns:minmax(230px,1.05fr) repeat(2,minmax(150px,.82fr))!important;
grid-template-rows:repeat(2,220px)!important;
gap:14px!important;
min-height:0!important;
}
.customer-experience__photos img{
display:block!important;
width:100%!important;
height:100%!important;
min-height:0!important;
border-radius:8px!important;
object-fit:cover!important;
box-shadow:0 16px 38px rgba(11,31,58,.14)!important;
background:
linear-gradient(135deg,rgba(16,42,67,.12),rgba(215,32,53,.06)),
url('../images/intro/ninh-binh.jpg') center/cover no-repeat!important;
}
.customer-experience__photos img:first-child{
grid-row:1 / span 2!important;
min-height:0!important;
}
.customer-experience__photos img.is-fallback-image{
filter:saturate(.96) contrast(1.02)!important;
}
@media(max-width:980px){
.customer-experience__photos{
grid-template-columns:repeat(2,minmax(0,1fr))!important;
grid-template-rows:none!important;
grid-auto-rows:auto!important;
}
.customer-experience__photos img,
.customer-experience__photos img:first-child{
grid-row:auto!important;
height:auto!important;
aspect-ratio:4/3!important;
}
}
@media(max-width:640px){
.customer-experience__photos{
grid-template-columns:1fr!important;
grid-auto-rows:auto!important;
gap:18px!important;
overflow:visible!important;
contain:layout!important;
}
.customer-experience__photos img,
.customer-experience__photos img:first-child{
width:100%!important;
height:auto!important;
min-height:0!important;
aspect-ratio:4/3!important;
grid-column:auto!important;
grid-row:auto!important;
}
.floating-contact{
right:max(12px,env(safe-area-inset-right,0px))!important;
bottom:max(88px,calc(env(safe-area-inset-bottom,0px) + 76px))!important;
gap:10px!important;
}
.floating-btn{
width:46px!important;
height:46px!important;
box-shadow:0 6px 18px rgba(0,0,0,.18)!important;
}
.floating-btn svg{
width:21px!important;
height:21px!important;
}
}

/* === TOUR GALLERY NO OVERLAP FIX === */
.tour-gallery-modal__grid{
display:grid!important;
grid-template-columns:repeat(3,minmax(0,1fr))!important;
grid-auto-flow:row!important;
grid-auto-rows:auto!important;
align-items:stretch!important;
gap:16px!important;
padding:20px 24px 24px!important;
}
.tour-gallery-modal__item{
position:relative!important;
display:block!important;
width:100%!important;
height:auto!important;
min-height:0!important;
aspect-ratio:16/11!important;
margin:0!important;
overflow:hidden!important;
break-inside:avoid!important;
}
.tour-gallery-modal__item img{
position:static!important;
display:block!important;
width:100%!important;
height:100%!important;
min-height:0!important;
object-fit:cover!important;
}
.tour-gallery-modal__item figcaption{
position:absolute!important;
left:0!important;
right:0!important;
bottom:0!important;
z-index:2!important;
padding:26px 14px 12px!important;
background:linear-gradient(180deg,rgba(5,18,34,0),rgba(5,18,34,.78))!important;
}
@media(max-width:900px){
.tour-gallery-modal__grid{
grid-template-columns:repeat(2,minmax(0,1fr))!important;
}
}
@media(max-width:560px){
.tour-gallery-modal__grid{
grid-template-columns:1fr!important;
}
.tour-gallery-modal__item{
aspect-ratio:16/10!important;
}
}

/* === FINAL HERO POPPINS FONT LOCK === */
.hero,
.hero__title,
.hero__title strong,
.hero__title .hero__title-line,
.hero__subtitle,
.hero__meta{
font-family:'Poppins',Arial,sans-serif!important;
}
.hero__title strong,
.hero__title .hero__title-line{
font-weight:700!important;
letter-spacing:0!important;
}
.hero__title .hero__title-line--top{
font-style:normal!important;
}
.hero__subtitle{
font-weight:600!important;
}

/* === TRUE EOF MOBILE TRAVEL STYLES LAYOUT FIX === */
@media(max-width:980px){
.travel-styles .home-style-grid{
grid-template-columns:repeat(2,minmax(0,1fr))!important;
max-width:720px!important;
gap:18px!important;
}
.travel-styles .home-style-card__media{
min-height:230px!important;
}
}
@media(max-width:640px){
.travel-styles{
overflow:hidden!important;
}
.travel-styles .section-header{
margin-bottom:30px!important;
}
.travel-styles .section-title{
font-size:clamp(2.05rem,10vw,2.7rem)!important;
line-height:1.05!important;
}
.travel-styles .section-subtitle{
font-size:.95rem!important;
line-height:1.75!important;
}
.travel-styles .home-style-grid{
grid-template-columns:1fr!important;
max-width:420px!important;
gap:18px!important;
}
.travel-styles .home-style-card{
width:100%!important;
min-width:0!important;
}
.travel-styles .home-style-card__media{
min-height:220px!important;
}
.travel-styles .home-style-card__body{
padding:18px!important;
}
.travel-styles .home-style-card__head h3,
.travel-styles .home-style-card__body h3{
min-height:0!important;
font-size:1.55rem!important;
line-height:1.12!important;
}
.travel-styles .home-style-card__subtitle{
min-height:0!important;
-webkit-line-clamp:3!important;
font-size:.94rem!important;
line-height:1.7!important;
}
.travel-styles .home-style-card__link-copy{
width:fit-content!important;
max-width:100%!important;
}
}

/* === TRUE EOF HERO TITLE SIZE REDUCE 2/7 === */
.hero__title .hero__title-line--top,
.hero__title .hero__title-line--bottom{
font-size:clamp(2.07rem,3.36vw,3.61rem)!important;
line-height:1.04!important;
}
@media(max-width:768px){
.hero__title .hero__title-line--top,
.hero__title .hero__title-line--bottom{
font-size:clamp(1.32rem,5.86vw,1.68rem)!important;
line-height:1.08!important;
}
}

/* === TRUE EOF MOBILE FOOTER REFINEMENT === */
@media(max-width:720px){
.footer{
padding-top:26px!important;
background:#07182c!important;
}
.footer .container{
padding-left:18px!important;
padding-right:18px!important;
}
.footer .footer__brands{
display:block!important;
padding:22px 0 20px!important;
max-width:none!important;
border-bottom:1px solid rgba(255,255,255,.08)!important;
}
.footer .footer__brands-copy{
max-width:none!important;
margin-bottom:14px!important;
}
.footer .footer__brands-copy span{
font-family:Inter,Arial,sans-serif!important;
font-size:1rem!important;
font-weight:850!important;
line-height:1.25!important;
letter-spacing:.02em!important;
}
.footer .footer__brands-copy p{
max-width:none!important;
margin-top:6px!important;
font-size:.84rem!important;
line-height:1.55!important;
}
.footer .footer__brands-grid{
display:grid!important;
grid-template-columns:1fr!important;
gap:8px!important;
}
.footer .footer-brand-link{
display:grid!important;
grid-template-columns:88px minmax(0,1fr)!important;
grid-template-rows:1fr!important;
align-items:center!important;
min-height:76px!important;
padding:12px!important;
gap:12px!important;
border-radius:8px!important;
}
.footer .footer-brand-link__media{
min-height:0!important;
height:52px!important;
display:flex!important;
align-items:center!important;
justify-content:center!important;
}
.footer .footer-brand-link__copy{
margin:0!important;
gap:2px!important;
}
.footer .footer-brand-link__copy strong{
font-size:.86rem!important;
line-height:1.25!important;
}
.footer .footer-brand-link__copy small{
font-size:.72rem!important;
line-height:1.35!important;
}
.footer .footer-brand-link img,
.footer .footer-brand-link--avt img,
.footer .footer-brand-link--vtd img,
.footer .footer-brand-link--stay img{
max-width:82px!important;
max-height:44px!important;
}
.footer .footer__inner{
display:grid!important;
grid-template-columns:1fr!important;
gap:24px!important;
padding:26px 0 30px!important;
border-top:0!important;
}
.footer .footer__brand-card{
max-width:none!important;
}
.footer .footer__brand-title{
margin-bottom:12px!important;
}
.footer .footer__brand-logo{
width:170px!important;
max-height:70px!important;
}
.footer .footer__brand-tagline{
max-width:none!important;
font-size:.94rem!important;
line-height:1.55!important;
margin-bottom:8px!important;
}
.footer .footer__operated{
max-width:none!important;
font-size:.82rem!important;
line-height:1.55!important;
}
.footer .footer__brand-badges{
gap:6px!important;
margin-top:14px!important;
}
.footer .footer__brand-badges span{
min-height:28px!important;
padding:6px 9px!important;
font-size:.68rem!important;
}
.footer .footer__brand-cta{
width:100%!important;
min-height:44px!important;
margin-top:16px!important;
border-radius:8px!important;
font-size:.84rem!important;
}
.footer .footer__links,
.footer .footer__destinations,
.footer .footer__contact{
padding-top:0!important;
}
.footer h4{
margin-bottom:10px!important;
padding-bottom:8px!important;
font-size:.78rem!important;
letter-spacing:.08em!important;
}
.footer .footer__links,
.footer .footer__destinations{
display:grid!important;
grid-template-columns:repeat(2,minmax(0,1fr))!important;
column-gap:14px!important;
row-gap:4px!important;
}
.footer .footer__links h4,
.footer .footer__destinations h4{
grid-column:1/-1!important;
}
.footer .footer__links a,
.footer .footer__destinations a{
padding:7px 0!important;
font-size:.84rem!important;
line-height:1.35!important;
}
.footer .footer__contact-list{
gap:8px!important;
}
.footer .footer__contact-item{
padding:12px 13px!important;
border-radius:8px!important;
}
.footer .footer__contact-label{
font-size:.65rem!important;
margin-bottom:4px!important;
}
.footer .footer__contact-item strong{
font-size:.84rem!important;
line-height:1.35!important;
}
.footer .footer__bottom{
padding:14px 0 18px!important;
}
.footer .footer__bottom p{
font-size:.74rem!important;
line-height:1.6!important;
max-width:300px!important;
margin:0 auto!important;
}
}
@media(max-width:380px){
.footer .footer__links,
.footer .footer__destinations{
grid-template-columns:1fr!important;
}
.footer .footer-brand-link{
grid-template-columns:78px minmax(0,1fr)!important;
}
}

/* === TRUE EOF MOBILE FOOTER SIDE GUTTER FIX === */
@media(max-width:720px){
.footer .container,
.footer .footer__brands,
.footer .footer__inner,
.footer .footer__bottom .container{
width:100%!important;
max-width:none!important;
padding-left:24px!important;
padding-right:24px!important;
}
.footer .footer__brands{
padding-top:24px!important;
padding-bottom:22px!important;
}
.footer .footer__inner{
padding-top:28px!important;
padding-bottom:32px!important;
}
.footer .footer__brand-cta,
.footer .footer__contact-item,
.footer .footer-brand-link{
max-width:100%!important;
}
}
@media(max-width:380px){
.footer .container,
.footer .footer__brands,
.footer .footer__inner,
.footer .footer__bottom .container{
padding-left:20px!important;
padding-right:20px!important;
}
}

/* === MOBILE HORIZONTAL OVERFLOW LOCK === */
html,
body{
max-width:100%!important;
overflow-x:hidden!important;
}
body{
position:relative;
}
@media(max-width:768px){
.container,
main,
section{
max-width:100%!important;
}
.site-header,
.header-promo,
.header__inner,
.nav,
.nav__links,
.nav__cta,
.blog-story,
.blog-story .container,
.blog-story__hero,
.blog-story__copy,
.blog-story__visual,
.blog-story__below-hero,
.blog-story__layout,
.blog-story__article,
.blog-story__sidebar,
.blog-story__gallery,
.blog-story__related,
.tour-hero,
.dest-hero,
.style-hero,
.plan-hero{
max-width:100%!important;
overflow-x:hidden!important;
}
.blog-story__hero,
.blog-story__below-hero,
.blog-story__layout,
.blog-story__gallery,
.blog-story__related-grid{
grid-template-columns:minmax(0,1fr)!important;
}
.blog-story__hero > *,
.blog-story__below-hero > *,
.blog-story__layout > *,
.blog-story__gallery > *,
.blog-story__panel,
.blog-story__card,
.blog-story__related-card{
min-width:0!important;
max-width:100%!important;
}
.blog-story__title,
.blog-story__summary,
.blog-story__section h2,
.blog-story__section p{
max-width:100%!important;
overflow-wrap:anywhere!important;
}
.blog-story__visual,
.blog-story__visual img,
.blog-story__gallery img,
.blog-story__related-card img{
width:100%!important;
max-width:100%!important;
}
.nav{
left:12px!important;
right:12px!important;
width:auto!important;
max-width:calc(100vw - 24px)!important;
box-sizing:border-box!important;
}
.nav__cta{
margin-left:0!important;
width:100%!important;
min-width:0!important;
max-width:100%!important;
box-sizing:border-box!important;
justify-content:center!important;
}
}

/* === FINAL MOBILE MENU POLISH === */
@media(max-width:768px){
.site-header .nav{
top:calc(var(--mobile-header-offset, 118px))!important;
left:16px!important;
right:16px!important;
bottom:max(84px,calc(env(safe-area-inset-bottom,0px) + 72px))!important;
width:auto!important;
max-width:calc(100vw - 32px)!important;
max-height:none!important;
display:none!important;
grid-template-columns:1fr!important;
gap:14px!important;
padding:14px!important;
border-radius:14px!important;
background:rgba(255,255,255,.97)!important;
border:1px solid rgba(11,31,58,.12)!important;
box-shadow:0 22px 54px rgba(11,31,58,.18)!important;
backdrop-filter:blur(14px)!important;
overflow-x:hidden!important;
overflow-y:auto!important;
}
.site-header .nav.is-open{
display:grid!important;
}
.site-header:not(.site-header--overlay) .nav{
--mobile-header-offset:118px;
}
.site-header--overlay .nav,
.site-header--overlay.is-solid .nav{
--mobile-header-offset:118px;
}
.site-header .nav__links{
display:grid!important;
grid-template-columns:1fr!important;
gap:4px!important;
width:100%!important;
padding:0!important;
border:0!important;
border-radius:0!important;
background:transparent!important;
box-shadow:none!important;
overflow:visible!important;
}
.site-header .nav__item,
.site-header .nav__links > .nav__link{
width:100%!important;
min-width:0!important;
}
.site-header .nav__link,
.site-header .nav a:not(.nav__cta){
display:flex!important;
align-items:center!important;
justify-content:space-between!important;
min-height:46px!important;
width:100%!important;
padding:0 12px!important;
border-radius:10px!important;
background:transparent!important;
border:0!important;
box-shadow:none!important;
color:#102a43!important;
font-family:'Libre Baskerville',Georgia,serif!important;
font-size:.92rem!important;
font-weight:800!important;
line-height:1.2!important;
letter-spacing:.02em!important;
text-transform:none!important;
}
.site-header .nav__link:hover,
.site-header .nav__item--dropdown.is-submenu-open > .nav__link{
background:#f7f1e8!important;
color:#d01f36!important;
}
.site-header .nav__item--dropdown{
display:grid!important;
grid-template-columns:minmax(0,1fr) 38px!important;
align-items:center!important;
gap:0!important;
border-radius:10px!important;
}
.site-header .nav__submenu-toggle{
grid-column:2!important;
width:38px!important;
height:38px!important;
margin:0!important;
border:0!important;
border-radius:10px!important;
background:transparent!important;
color:#102a43!important;
}
.site-header .nav__item--dropdown.is-submenu-open > .nav__submenu-toggle{
background:#f7f1e8!important;
color:#d01f36!important;
}
.site-header .nav__submenu-toggle span{
width:8px!important;
height:8px!important;
border-width:0 2px 2px 0!important;
transform:rotate(45deg) translate(-1px,-1px)!important;
}
.site-header .nav__item--dropdown.is-submenu-open > .nav__submenu-toggle span{
transform:rotate(225deg) translate(-1px,-1px)!important;
}
.site-header .nav__dropdown{
grid-column:1 / -1!important;
display:none!important;
position:static!important;
width:100%!important;
min-width:0!important;
margin:4px 0 8px!important;
padding:8px!important;
border-radius:12px!important;
background:#fbf8f2!important;
border:1px solid rgba(201,169,110,.24)!important;
box-shadow:inset 0 1px 0 rgba(255,255,255,.7)!important;
opacity:1!important;
visibility:visible!important;
transform:none!important;
}
.site-header .nav__item--dropdown.is-submenu-open > .nav__dropdown{
display:grid!important;
gap:2px!important;
}
.site-header .nav__dropdown a{
min-height:40px!important;
padding:0 12px!important;
border-radius:8px!important;
background:transparent!important;
color:#17324d!important;
font-size:.84rem!important;
font-weight:800!important;
letter-spacing:.01em!important;
text-transform:none!important;
}
.site-header .nav__dropdown a:hover{
background:#fff!important;
color:#d01f36!important;
}
.site-header .nav__cta{
display:flex!important;
align-items:center!important;
justify-content:center!important;
width:100%!important;
max-width:100%!important;
min-width:0!important;
min-height:50px!important;
margin:2px 0 0!important;
padding:0 16px!important;
border-radius:12px!important;
background:linear-gradient(135deg,#ef3f53 0%,#c8102e 100%)!important;
color:#fff!important;
font-family:'Libre Baskerville',Georgia,serif!important;
font-size:.92rem!important;
font-weight:900!important;
line-height:1.2!important;
letter-spacing:.02em!important;
text-transform:none!important;
box-shadow:0 14px 28px rgba(200,16,46,.22)!important;
}
}

/* === SOCIAL HEADER + SEARCH REQUEST === */
.site-header .header-promo{
display:block!important;
}
.header-promo__inner{
justify-content:space-between!important;
gap:16px!important;
}
.header-promo__social{
display:flex;
align-items:center;
gap:8px;
flex:0 0 auto;
}
.header-promo__social-link{
display:inline-flex!important;
align-items:center;
justify-content:center;
width:28px;
height:28px;
border-radius:999px;
background:rgba(255,255,255,.1);
border:1px solid rgba(255,255,255,.16);
text-decoration:none!important;
}
.header-promo__social-link img{
width:15px;
height:15px;
object-fit:contain;
filter:none;
}
.header-promo__offer{
flex:1 1 auto;
text-align:center;
min-width:0;
}
.header-promo__call{
display:inline-flex!important;
align-items:center;
gap:7px;
flex:0 0 auto;
color:#fff!important;
text-decoration:none!important;
font-weight:800!important;
white-space:nowrap;
}
.header-promo__call-icon{
display:inline-flex;
align-items:center;
justify-content:center;
width:22px;
height:22px;
border-radius:999px;
background:rgba(255,255,255,.14);
}
.header-promo__call-icon svg{
width:13px;
height:13px;
display:block;
}
.header-promo__call strong{
font-weight:900;
text-decoration:underline;
text-underline-offset:3px;
}
.nav__search{
display:inline-flex;
align-items:center;
justify-content:center;
gap:7px;
width:38px;
height:38px;
border-radius:999px;
background:#fff;
border:1px solid rgba(11,31,58,.1);
color:#102a43!important;
box-shadow:0 10px 22px rgba(11,31,58,.08);
}
.nav__search svg{
width:17px;
height:17px;
display:block;
}
.nav__search span{
position:absolute;
width:1px;
height:1px;
overflow:hidden;
clip:rect(0 0 0 0);
white-space:nowrap;
}
.home-social-strip{
display:flex;
align-items:center;
justify-content:space-between;
gap:22px;
margin:30px auto 0;
padding:18px 20px;
border-radius:14px;
background:#fff;
border:1px solid rgba(11,31,58,.08);
box-shadow:0 16px 36px rgba(11,31,58,.07);
}
.home-social-strip__copy{
display:grid;
gap:4px;
min-width:0;
}
.home-social-strip__copy span{
font-size:.72rem;
font-weight:900;
letter-spacing:.12em;
text-transform:uppercase;
color:#d01f36;
}
.home-social-strip__copy strong{
font-size:.98rem;
line-height:1.4;
color:#102a43;
}
.home-social-strip__links{
display:flex;
align-items:center;
gap:10px;
flex-wrap:wrap;
justify-content:flex-end;
}
.home-social-strip__links a{
display:inline-flex;
align-items:center;
gap:8px;
min-height:42px;
padding:8px 13px;
border-radius:999px;
background:#f8fafc;
border:1px solid rgba(11,31,58,.1);
color:#102a43;
font-weight:800;
font-size:.84rem;
}
.home-social-strip__links img{
width:18px;
height:18px;
object-fit:contain;
}
@media(max-width:768px){
.header-promo__inner{
display:grid!important;
grid-template-columns:auto minmax(0,1fr) auto;
gap:8px!important;
min-height:38px!important;
padding:5px 12px!important;
font-size:.68rem!important;
}
.header-promo__social{
gap:5px;
}
.header-promo__social-link{
width:24px;
height:24px;
}
.header-promo__social-link img{
width:13px;
height:13px;
}
.header-promo__offer{
font-size:.7rem!important;
line-height:1.25!important;
white-space:normal!important;
}
.header-promo__call{
gap:5px;
font-size:.7rem!important;
}
.header-promo__call > span:not(.header-promo__call-icon){
display:none;
}
.header-promo__call-icon{
width:22px;
height:22px;
}
.header-promo__call strong{
font-size:.72rem!important;
}
.site-header .nav__search{
display:flex!important;
width:100%!important;
height:46px!important;
margin:0!important;
padding:0 12px!important;
border-radius:10px!important;
justify-content:flex-start!important;
background:#f7f1e8!important;
box-shadow:none!important;
}
.site-header .nav__search span{
position:static!important;
width:auto!important;
height:auto!important;
overflow:visible!important;
clip:auto!important;
white-space:normal!important;
font-family:'Libre Baskerville',Georgia,serif!important;
font-size:.9rem!important;
font-weight:800!important;
}
.home-social-strip{
display:grid;
gap:14px;
margin-top:24px;
padding:16px;
border-radius:12px;
}
.home-social-strip__links{
display:grid;
grid-template-columns:1fr;
gap:8px;
justify-content:stretch;
}
.home-social-strip__links a{
width:100%;
justify-content:center;
border-radius:10px;
}
}

/* === SCROLL HEADER PROMO + SEARCH POLISH === */
.site-header .header-promo{
display:block!important;
max-height:0!important;
opacity:0!important;
overflow:hidden!important;
pointer-events:none!important;
transform:translateY(-100%)!important;
transition:max-height .22s ease,opacity .18s ease,transform .22s ease!important;
}
.site-header.is-solid .header-promo{
max-height:44px!important;
opacity:1!important;
pointer-events:auto!important;
transform:translateY(0)!important;
}
.site-header:not(.is-solid) .header-promo__inner{
min-height:0!important;
padding-top:0!important;
padding-bottom:0!important;
}
.site-header .header__inner{
transition:min-height .22s ease,padding .22s ease!important;
}
.site-header .nav__search{
display:inline-flex!important;
align-items:center!important;
justify-content:center!important;
flex:0 0 34px!important;
width:34px!important;
height:34px!important;
min-width:34px!important;
margin:0 2px!important;
padding:0!important;
border-radius:999px!important;
background:rgba(255,255,255,.08)!important;
border:1px solid rgba(255,255,255,.22)!important;
box-shadow:none!important;
color:#fff!important;
text-decoration:none!important;
}
.site-header:not(.site-header--overlay) .nav__search,
.site-header.is-solid .nav__search{
background:rgba(16,42,67,.045)!important;
border-color:rgba(16,42,67,.12)!important;
color:var(--c-primary)!important;
}
.site-header .nav__search:hover,
.site-header .nav__search:focus-visible{
background:var(--c-accent)!important;
border-color:var(--c-accent)!important;
color:#fff!important;
transform:translateY(-1px)!important;
}
.site-header .nav__search svg{
width:16px!important;
height:16px!important;
display:block!important;
}
.site-header .nav__search span{
position:absolute!important;
width:1px!important;
height:1px!important;
overflow:hidden!important;
clip:rect(0 0 0 0)!important;
white-space:nowrap!important;
}
@media(max-width:768px){
.site-header.is-solid .header-promo{
max-height:42px!important;
}
}

/* === MOBILE MENU RESTORE + SEARCH OUTSIDE === */
.header-search{
display:none;
align-items:center;
justify-content:center;
width:42px;
height:42px;
border-radius:999px;
background:rgba(255,255,255,.12);
border:1px solid rgba(255,255,255,.22);
color:#fff;
text-decoration:none;
}
.header-search svg{
width:18px;
height:18px;
display:block;
}
.header-search span{
position:absolute;
width:1px;
height:1px;
overflow:hidden;
clip:rect(0 0 0 0);
white-space:nowrap;
}
.site-header:not(.site-header--overlay) .header-search,
.site-header.is-solid .header-search{
background:rgba(16,42,67,.055);
border-color:rgba(16,42,67,.14);
color:var(--c-primary);
}
@media(max-width:768px){
.header__inner{
justify-content:flex-start!important;
gap:6px!important;
padding-left:16px!important;
padding-right:16px!important;
}
.site-header .logo{
margin-right:auto!important;
}
.header-search{
display:inline-flex!important;
flex:0 0 42px!important;
order:2!important;
margin-left:auto!important;
margin-right:4px!important;
}
.nav-toggle{
order:3!important;
margin-left:0!important;
}
.site-header .nav{
gap:10px!important;
padding:16px!important;
}
.site-header .nav .nav__search{
display:none!important;
}
.site-header .nav__item--dropdown{
grid-template-columns:minmax(0,1fr) 46px!important;
border-radius:12px!important;
}
.site-header .nav__item--dropdown > .nav__link{
border-radius:12px 0 0 12px!important;
}
.site-header .nav__submenu-toggle{
display:inline-flex!important;
align-items:center!important;
justify-content:center!important;
width:46px!important;
height:46px!important;
border-radius:0 12px 12px 0!important;
background:#f2eadf!important;
border-left:1px solid rgba(16,42,67,.08)!important;
color:#102a43!important;
opacity:1!important;
}
.site-header--overlay:not(.is-solid) .nav.is-open .nav__submenu-toggle{
color:#102a43!important;
}
.site-header .nav__submenu-toggle span{
display:block!important;
width:10px!important;
height:10px!important;
border-right:2.25px solid currentColor!important;
border-bottom:2.25px solid currentColor!important;
transform:rotate(45deg) translate(-2px,-2px)!important;
}
.site-header .nav__item--dropdown.is-submenu-open{
background:#f9f3ea!important;
}
.site-header .nav__item--dropdown.is-submenu-open > .nav__submenu-toggle{
background:#d72035!important;
color:#fff!important;
}
.site-header .nav__item--dropdown.is-submenu-open > .nav__submenu-toggle span{
transform:rotate(225deg) translate(-1px,-1px)!important;
}
.site-header .nav__dropdown{
margin:6px 0 10px!important;
padding:8px!important;
background:#fffaf3!important;
}
.site-header .nav__cta{
min-height:56px!important;
margin-top:4px!important;
border-radius:12px!important;
}
}

/* === MOBILE MENU COMPACT PASS === */
@media(max-width:768px){
.site-header .nav.is-open{
display:grid!important;
}
.site-header .nav{
left:18px!important;
right:18px!important;
bottom:auto!important;
max-width:calc(100vw - 36px)!important;
max-height:calc(100dvh - 168px)!important;
gap:6px!important;
padding:14px!important;
border-radius:14px!important;
overflow-y:auto!important;
}
.site-header .nav__links{
gap:2px!important;
}
.site-header .nav__link,
.site-header .nav a:not(.nav__cta){
min-height:42px!important;
padding:0 10px!important;
border-radius:9px!important;
font-size:.86rem!important;
line-height:1.15!important;
}
.site-header .nav .nav__search{
display:none!important;
visibility:hidden!important;
width:0!important;
height:0!important;
min-width:0!important;
overflow:hidden!important;
margin:0!important;
padding:0!important;
}
.site-header .nav__item--dropdown{
grid-template-columns:minmax(0,1fr) 34px!important;
border-radius:9px!important;
background:transparent!important;
}
.site-header .nav__item--dropdown > .nav__link{
border-radius:9px!important;
padding-right:6px!important;
}
.site-header .nav__submenu-toggle{
width:30px!important;
height:30px!important;
align-self:center!important;
justify-self:end!important;
border-radius:999px!important;
background:#f8f3ec!important;
border:1px solid rgba(16,42,67,.1)!important;
box-shadow:0 1px 2px rgba(16,42,67,.04)!important;
color:#0f2b45!important;
}
.site-header .nav__submenu-toggle span{
width:8px!important;
height:8px!important;
border-right:2px solid currentColor!important;
border-bottom:2px solid currentColor!important;
transform:rotate(45deg) translate(-1px,-1px)!important;
}
.site-header .nav__item--dropdown.is-submenu-open{
background:transparent!important;
}
.site-header .nav__item--dropdown.is-submenu-open > .nav__link{
background:#fbf7f1!important;
color:#d72035!important;
}
.site-header .nav__item--dropdown.is-submenu-open > .nav__submenu-toggle{
background:#102a43!important;
border-color:#102a43!important;
color:#fff!important;
}
.site-header .nav__item--dropdown.is-submenu-open > .nav__submenu-toggle span{
transform:rotate(225deg) translate(-1px,-1px)!important;
}
.site-header .nav__dropdown{
margin:4px 0 6px!important;
padding:6px!important;
border-radius:10px!important;
}
.site-header .nav__dropdown a{
min-height:36px!important;
padding:0 10px!important;
font-size:.8rem!important;
}
.site-header .nav__cta{
min-height:48px!important;
padding:0 14px!important;
margin-top:6px!important;
border-radius:10px!important;
font-size:.88rem!important;
}
.header-search{
width:36px!important;
height:36px!important;
flex-basis:36px!important;
margin-right:2px!important;
}
.header-search svg{
width:16px!important;
height:16px!important;
}
}

/* === MOBILE MENU OPEN STATE FIX === */
@media(max-width:768px){
.site-header .nav{
position:fixed!important;
top:92px!important;
z-index:10060!important;
opacity:0!important;
visibility:hidden!important;
pointer-events:none!important;
transform:translateY(-8px)!important;
transition:opacity .18s ease,transform .18s ease,visibility .18s ease!important;
}
.site-header.is-solid .nav{
top:136px!important;
}
.site-header .nav.is-open{
display:grid!important;
opacity:1!important;
visibility:visible!important;
pointer-events:auto!important;
transform:translateY(0)!important;
}
.site-header .nav-toggle,
.site-header .header-search{
position:relative!important;
z-index:10070!important;
}
}

/* === SITE SEARCH PANEL === */
.site-search-panel[hidden]{
display:none!important;
}
.site-search-panel{
position:fixed;
inset:0;
z-index:10100;
pointer-events:none;
}
.site-search-panel__backdrop{
position:absolute;
inset:0;
background:rgba(6,18,36,.32);
backdrop-filter:blur(3px);
pointer-events:auto;
}
.site-search-panel__bar{
position:fixed;
left:50%;
top:92px;
width:min(760px,calc(100vw - 28px));
transform:translateX(-50%);
background:#b40f1f;
border-radius:0 0 8px 8px;
box-shadow:0 24px 60px rgba(6,18,36,.28);
padding:14px;
pointer-events:auto;
}
.site-search-panel__form{
display:grid;
grid-template-columns:minmax(0,1fr) 52px 42px;
gap:10px;
align-items:center;
}
.site-search-panel__field{
display:block;
min-width:0;
}
.site-search-panel__field span{
position:absolute;
width:1px;
height:1px;
overflow:hidden;
clip:rect(0 0 0 0);
white-space:nowrap;
}
.site-search-panel__field input{
width:100%;
height:54px;
border:2px solid rgba(255,255,255,.24);
border-radius:2px;
background:#fff;
padding:0 18px;
color:#102a43;
font-family:'Poppins',Arial,sans-serif;
font-size:1rem;
font-weight:600;
outline:none;
}
.site-search-panel__field input:focus{
border-color:#f7d8dd;
box-shadow:0 0 0 3px rgba(255,255,255,.18);
}
.site-search-panel__submit,
.site-search-panel__close{
display:inline-flex;
align-items:center;
justify-content:center;
height:54px;
border:0;
border-radius:2px;
cursor:pointer;
color:#fff;
}
.site-search-panel__submit{
background:#8d0c19;
}
.site-search-panel__submit svg{
width:25px;
height:25px;
}
.site-search-panel__close{
background:rgba(255,255,255,.08);
}
.site-search-panel__close svg{
width:24px;
height:24px;
}
.site-search-panel__results{
display:grid;
gap:8px;
margin-top:12px;
max-height:min(420px,calc(100dvh - 190px));
overflow-y:auto;
}
.site-search-panel__hint{
margin:0;
padding:13px 14px;
background:rgba(255,255,255,.1);
border:1px solid rgba(255,255,255,.14);
border-radius:4px;
color:#fff;
font-size:.88rem;
font-weight:600;
}
.site-search-result{
display:grid;
gap:3px;
padding:12px 14px;
border-radius:4px;
background:#fff;
color:#102a43;
text-decoration:none;
border-left:4px solid #d72035;
}
.site-search-result:hover,
.site-search-result:focus-visible{
background:#fff8f0;
outline:none;
}
.site-search-result span{
color:#d72035;
font-size:.68rem;
font-weight:900;
letter-spacing:.12em;
text-transform:uppercase;
}
.site-search-result strong{
font-family:'Libre Baskerville',Georgia,serif;
font-size:.98rem;
line-height:1.25;
}
.site-search-result small{
color:#64748b;
font-size:.78rem;
line-height:1.45;
}
body.is-search-open{
overflow:hidden;
}
@media(max-width:768px){
.site-search-panel__bar{
top:88px;
width:calc(100vw - 24px);
padding:10px;
}
.site-header.is-solid ~ .site-search-panel .site-search-panel__bar{
top:128px;
}
.site-search-panel__form{
grid-template-columns:minmax(0,1fr) 46px 38px;
gap:7px;
}
.site-search-panel__field input,
.site-search-panel__submit,
.site-search-panel__close{
height:48px;
}
.site-search-panel__field input{
padding:0 13px;
font-size:.9rem;
}
.site-search-panel__submit svg{
width:21px;
height:21px;
}
.site-search-panel__close svg{
width:21px;
height:21px;
}
}

/* === FINAL SITE SEARCH DESIGN LOCK === */
.site-search-panel__backdrop{
background:rgba(6,18,36,.5)!important;
backdrop-filter:blur(8px)!important;
}
.site-search-panel__bar{
top:clamp(86px,11vh,132px)!important;
width:min(720px,calc(100vw - 32px))!important;
padding:16px!important;
border-radius:18px!important;
background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(248,250,247,.94))!important;
border:1px solid rgba(255,255,255,.72)!important;
box-shadow:0 28px 70px rgba(6,18,36,.32),0 0 0 1px rgba(31,111,91,.08)!important;
}
.site-search-panel__form{
grid-template-columns:minmax(0,1fr) 52px 46px!important;
gap:8px!important;
}
.site-search-panel__field input{
height:52px!important;
border:1px solid rgba(31,111,91,.18)!important;
border-radius:12px!important;
background:#fff!important;
padding:0 17px!important;
color:#102a43!important;
font-family:'Poppins',Arial,sans-serif!important;
font-size:.96rem!important;
font-weight:700!important;
box-shadow:inset 0 1px 0 rgba(255,255,255,.9),0 8px 18px rgba(16,42,67,.06)!important;
}
.site-search-panel__field input::placeholder{
color:#718096!important;
opacity:1!important;
}
.site-search-panel__field input:focus{
border-color:var(--c-primary)!important;
box-shadow:0 0 0 4px rgba(31,111,91,.12),0 8px 18px rgba(16,42,67,.06)!important;
}
.site-search-panel__submit,
.site-search-panel__close{
height:52px!important;
border-radius:12px!important;
transition:background .18s ease,transform .18s ease,box-shadow .18s ease!important;
}
.site-search-panel__submit{
background:linear-gradient(135deg,var(--c-primary),var(--c-primary-dark))!important;
box-shadow:0 12px 24px rgba(31,111,91,.22)!important;
}
.site-search-panel__close{
background:#f7f1e8!important;
color:#102a43!important;
border:1px solid rgba(201,169,110,.25)!important;
}
.site-search-panel__submit:hover,
.site-search-panel__submit:focus-visible{
background:linear-gradient(135deg,var(--c-primary-dark),#0f4639)!important;
transform:translateY(-1px)!important;
outline:none!important;
}
.site-search-panel__close:hover,
.site-search-panel__close:focus-visible{
background:#fff!important;
color:#d72035!important;
transform:translateY(-1px)!important;
outline:none!important;
}
.site-search-panel__results{
gap:10px!important;
margin-top:12px!important;
max-height:min(430px,calc(100dvh - 210px))!important;
padding-right:2px!important;
}
.site-search-panel__hint{
padding:13px 15px!important;
border-radius:12px!important;
background:#f7f1e8!important;
border:1px solid rgba(201,169,110,.22)!important;
color:#17324d!important;
font-family:'Libre Baskerville',Georgia,serif!important;
font-size:.88rem!important;
font-weight:800!important;
line-height:1.45!important;
}
.site-search-result{
gap:4px!important;
padding:13px 15px!important;
border-radius:12px!important;
background:#fff!important;
border:1px solid rgba(31,111,91,.12)!important;
border-left:4px solid var(--c-accent)!important;
box-shadow:0 10px 22px rgba(16,42,67,.06)!important;
}
.site-search-result:hover,
.site-search-result:focus-visible{
background:#fbfaf7!important;
border-color:rgba(31,111,91,.24)!important;
box-shadow:0 14px 28px rgba(16,42,67,.1)!important;
transform:translateY(-1px)!important;
}
.site-search-result span{
color:var(--c-primary)!important;
}
.site-search-result strong{
color:#102a43!important;
font-family:'Libre Baskerville',Georgia,serif!important;
font-size:.98rem!important;
}
.site-search-result small{
color:#64748b!important;
}
@media(max-width:768px){
.site-search-panel__bar{
top:84px!important;
width:calc(100vw - 22px)!important;
padding:10px!important;
border-radius:14px!important;
}
.site-header.is-solid ~ .site-search-panel .site-search-panel__bar{
top:126px!important;
}
.site-search-panel__form{
grid-template-columns:minmax(0,1fr) 46px 42px!important;
gap:6px!important;
}
.site-search-panel__field input,
.site-search-panel__submit,
.site-search-panel__close{
height:46px!important;
border-radius:10px!important;
}
.site-search-panel__field input{
padding:0 12px!important;
font-size:.86rem!important;
}
.site-search-panel__hint,
.site-search-result{
border-radius:10px!important;
}
}

/* === FINAL MOBILE MENU NATURAL FLOW LOCK === */
@media(max-width:768px){
.site-header .nav{
position:fixed!important;
top:calc(var(--mobile-menu-top,86px) + env(safe-area-inset-top,0px))!important;
left:12px!important;
right:12px!important;
bottom:max(12px,env(safe-area-inset-bottom))!important;
width:auto!important;
max-width:none!important;
height:auto!important;
max-height:none!important;
min-height:0!important;
display:none!important;
grid-template-columns:1fr!important;
align-content:start!important;
gap:8px!important;
padding:14px!important;
border-radius:16px!important;
background:rgba(255,255,255,.98)!important;
border:1px solid rgba(16,42,67,.12)!important;
box-shadow:0 24px 70px rgba(6,18,36,.26)!important;
overflow-x:hidden!important;
overflow-y:auto!important;
-webkit-overflow-scrolling:touch!important;
overscroll-behavior:contain!important;
opacity:0!important;
visibility:hidden!important;
pointer-events:none!important;
transform:none!important;
z-index:10080!important;
}
.site-header .nav.is-open{
display:grid!important;
opacity:1!important;
visibility:visible!important;
pointer-events:auto!important;
transform:none!important;
}
.site-header.is-solid .nav,
.site-header:not(.site-header--overlay) .nav{
--mobile-menu-top:132px;
}
.site-header--overlay:not(.is-solid) .nav{
--mobile-menu-top:86px;
}
body.is-mobile-nav-open{
overflow:hidden!important;
}
.site-header .nav__links{
display:grid!important;
grid-template-columns:1fr!important;
gap:4px!important;
width:100%!important;
padding:0!important;
border:0!important;
background:transparent!important;
box-shadow:none!important;
overflow:visible!important;
}
.site-header .nav__item,
.site-header .nav__links > .nav__link{
width:100%!important;
min-width:0!important;
}
.site-header .nav__dropdown{
max-height:none!important;
overflow:visible!important;
width:100%!important;
}
.site-header .nav__cta{
width:100%!important;
justify-content:center!important;
}
}

/* === FINAL SUBPAGE PROMO BAR VISIBILITY LOCK === */
.site-header:not(.site-header--overlay) .header-promo{
display:block!important;
max-height:44px!important;
opacity:1!important;
overflow:visible!important;
pointer-events:auto!important;
transform:none!important;
background:linear-gradient(90deg,#102a43 0%,var(--c-primary-dark) 48%,var(--c-primary) 100%)!important;
color:#fff!important;
}
.site-header:not(.site-header--overlay) .header-promo__inner{
min-height:34px!important;
padding-top:0!important;
padding-bottom:0!important;
}
@media(max-width:768px){
.site-header:not(.site-header--overlay) .header-promo{
max-height:42px!important;
}
.site-header:not(.site-header--overlay) .header-promo__inner{
min-height:32px!important;
}
}

/* === FINAL FOLLOWING HEADER LOCK === */
.site-header{
position:fixed!important;
top:0!important;
left:0!important;
right:0!important;
width:100%!important;
z-index:10050!important;
}
.site-header:not(.site-header--overlay) ~ main{
padding-top:var(--site-header-current-height,126px)!important;
}
.site-header--overlay ~ main{
padding-top:0!important;
}
@media(max-width:768px){
.site-header:not(.site-header--overlay) ~ main{
padding-top:var(--site-header-current-height,118px)!important;
}
}

/* === FINAL MOBILE OUTSIDE SEARCH HIDE === */
@media(max-width:768px){
.site-header .header-search{
display:none!important;
}
}

/* === FINAL MOBILE MENU DROP-DOWN SCREEN LOCK === */
@media(max-width:768px){
.site-header,
.site-header .header__inner{
overflow:visible!important;
}
.site-header .nav{
position:fixed!important;
top:var(--site-header-current-height,136px)!important;
left:0!important;
right:0!important;
bottom:0!important;
width:100vw!important;
max-width:100vw!important;
height:auto!important;
max-height:none!important;
min-height:0!important;
display:none!important;
grid-template-columns:1fr!important;
align-content:start!important;
gap:8px!important;
margin:0!important;
padding:14px 16px max(22px,env(safe-area-inset-bottom))!important;
border-radius:0!important;
background:#fff!important;
border:0!important;
border-top:1px solid rgba(16,42,67,.1)!important;
box-shadow:0 24px 54px rgba(6,18,36,.24)!important;
overflow-x:hidden!important;
overflow-y:auto!important;
-webkit-overflow-scrolling:touch!important;
overscroll-behavior:contain!important;
opacity:0!important;
visibility:hidden!important;
pointer-events:none!important;
transform:none!important;
z-index:200000!important;
}
.site-header .nav.is-open{
display:grid!important;
opacity:1!important;
visibility:visible!important;
pointer-events:auto!important;
transform:none!important;
}
.site-header .nav__links{
display:grid!important;
grid-template-columns:1fr!important;
gap:6px!important;
width:100%!important;
max-width:100%!important;
padding:0!important;
border:0!important;
border-radius:0!important;
background:transparent!important;
box-shadow:none!important;
overflow:visible!important;
}
.site-header .nav__link,
.site-header .nav a:not(.nav__cta){
min-height:48px!important;
}
.site-header .nav__dropdown{
max-height:none!important;
overflow:visible!important;
}
body.is-mobile-nav-open{
overflow:hidden!important;
}
}

/* === FINAL TOUR DESKTOP ITINERARY WIDTH LOCK === */
@media(min-width:981px){
.tour-detail-section > .container.tour-layout{
max-width:min(1480px,calc(100vw - 56px))!important;
grid-template-columns:minmax(0,1fr) minmax(280px,320px)!important;
gap:28px!important;
align-items:start!important;
}
.tour-main{
min-width:0!important;
width:100%!important;
max-width:none!important;
}
.tour-itinerary,
.itinerary-item,
.itinerary-summary,
.itinerary-detail{
width:100%!important;
max-width:none!important;
}
.itinerary-summary{
min-height:64px!important;
}
.itinerary-summary__copy strong{
font-size:1rem!important;
line-height:1.35!important;
}
.itinerary-summary__copy small{
font-size:.82rem!important;
}
.tour-sidebar{
width:100%!important;
max-width:320px!important;
}
}
@media(min-width:1200px){
.tour-detail-section > .container.tour-layout{
grid-template-columns:minmax(0,1fr) minmax(260px,300px)!important;
gap:30px!important;
}
}

/* === ABSOLUTE FINAL MOBILE NAV VISIBLE LOCK === */
@media(max-width:768px){
body.is-mobile-nav-open .site-header,
body.is-mobile-nav-open .site-header .header__inner{
overflow:visible!important;
}
body.is-mobile-nav-open .site-header .nav,
body.is-mobile-nav-open .site-header [data-nav]{
display:grid!important;
position:fixed!important;
top:calc(var(--mobile-nav-offset,var(--site-header-current-height,132px)) + 8px)!important;
left:16px!important;
right:16px!important;
bottom:auto!important;
width:auto!important;
max-width:calc(100vw - 32px)!important;
height:auto!important;
min-height:0!important;
max-height:calc(100dvh - var(--mobile-nav-offset,var(--site-header-current-height,132px)) - 24px)!important;
margin:0!important;
padding:12px!important;
grid-template-columns:1fr!important;
align-content:start!important;
gap:8px!important;
background:#fff!important;
border:1px solid rgba(16,42,67,.12)!important;
border-radius:14px!important;
box-shadow:0 18px 42px rgba(6,18,36,.22)!important;
opacity:1!important;
visibility:visible!important;
pointer-events:auto!important;
transform:none!important;
overflow-x:hidden!important;
overflow-y:auto!important;
z-index:2147483000!important;
}
body.is-mobile-nav-open .site-header .nav__links{
display:grid!important;
grid-template-columns:1fr!important;
gap:2px!important;
width:100%!important;
height:auto!important;
max-height:none!important;
opacity:1!important;
visibility:visible!important;
overflow:visible!important;
}
body.is-mobile-nav-open .site-header .nav__item,
body.is-mobile-nav-open .site-header .nav__links > .nav__link,
body.is-mobile-nav-open .site-header .nav__link,
body.is-mobile-nav-open .site-header .nav a:not(.nav__cta){
display:flex!important;
opacity:1!important;
visibility:visible!important;
color:#102a43!important;
}
body.is-mobile-nav-open .site-header .nav__link,
body.is-mobile-nav-open .site-header .nav a:not(.nav__cta){
min-height:42px!important;
padding:0 10px!important;
font-size:.9rem!important;
line-height:1.15!important;
}
body.is-mobile-nav-open .site-header .nav__submenu-toggle{
width:34px!important;
height:34px!important;
}
body.is-mobile-nav-open .site-header .nav__search{
display:flex!important;
align-items:center!important;
justify-content:center!important;
width:100%!important;
height:42px!important;
min-width:0!important;
margin:2px 0 0!important;
border-radius:10px!important;
background:#f8fafc!important;
border:1px solid rgba(16,42,67,.1)!important;
box-shadow:none!important;
color:#102a43!important;
}
body.is-mobile-nav-open .site-header .header-search{
display:none!important;
}
body.is-mobile-nav-open .site-header .nav__search span{
position:static!important;
width:auto!important;
height:auto!important;
overflow:visible!important;
clip:auto!important;
white-space:normal!important;
margin-left:8px!important;
font-family:'Libre Baskerville',Georgia,serif!important;
font-size:.88rem!important;
font-weight:800!important;
}
body.is-mobile-nav-open .site-header .nav__cta{
min-height:44px!important;
margin-top:4px!important;
border-radius:10px!important;
}
}

/* === CLIENT REQUEST: DESKTOP EMAIL + PROMO HOTLINE TUNING === */
.header-promo__offer{
color:#ff3048!important;
font-size:1.02rem!important;
font-weight:950!important;
letter-spacing:.01em!important;
text-shadow:0 1px 0 rgba(255,255,255,.12),0 8px 18px rgba(255,48,72,.28)!important;
}
.header-promo__call{
font-size:1rem!important;
gap:9px!important;
}
.header-promo__call strong{
font-size:1.08rem!important;
font-weight:950!important;
}

@media (min-width:769px){
.floating-btn--email{
display:none!important;
}
.topbar__sep,
.topbar__sep + .topbar__item[href^="mailto:"]{
display:none!important;
}
}

@media (max-width:768px){
.floating-btn--email{
display:flex!important;
}
.header-promo__offer{
font-size:.84rem!important;
line-height:1.15!important;
}
.header-promo__call{
font-size:.82rem!important;
}
.header-promo__call strong{
font-size:.9rem!important;
}
}

/* === EXTRA SMALL MOBILE HEADER FIT === */
@media (max-width:430px){
.site-header .header-promo__inner{
display:grid!important;
align-items:center!important;
grid-template-columns:auto minmax(0,1fr) auto!important;
gap:7px!important;
min-height:34px!important;
padding-left:10px!important;
padding-right:10px!important;
}
.site-header .header-promo__social{
gap:6px!important;
min-width:0!important;
}
.site-header .header-promo__social-link{
width:24px!important;
height:24px!important;
}
.site-header .header-promo__offer{
position:static!important;
display:-webkit-box!important;
width:auto!important;
height:auto!important;
max-height:2.34em!important;
overflow:hidden!important;
clip:auto!important;
-webkit-line-clamp:2!important;
-webkit-box-orient:vertical!important;
white-space:normal!important;
text-align:center!important;
font-size:clamp(.58rem,2.9vw,.82rem)!important;
line-height:1.12!important;
letter-spacing:0!important;
text-wrap:balance;
}
.site-header .header-promo__call{
margin-left:auto!important;
gap:6px!important;
font-size:clamp(.72rem,2.6vw,.82rem)!important;
line-height:1!important;
}
.site-header .header-promo__call strong{
font-size:clamp(.78rem,2.95vw,.92rem)!important;
line-height:1!important;
}
.site-header .header__inner{
min-height:82px!important;
padding-left:14px!important;
padding-right:14px!important;
}
.site-header .logo__mark{
max-width:min(220px,68vw)!important;
height:auto!important;
}
.site-header .nav-toggle{
flex:0 0 44px!important;
width:44px!important;
height:44px!important;
}
}

@media (max-width:360px){
.site-header .header-promo__inner{
gap:5px!important;
padding-left:8px!important;
padding-right:8px!important;
}
.site-header .header-promo__social-link{
width:22px!important;
height:22px!important;
}
.site-header .header-promo__social-link img{
width:12px!important;
height:12px!important;
}
.site-header .header-promo__offer{
font-size:clamp(.52rem,2.75vw,.62rem)!important;
line-height:1.1!important;
max-height:2.22em!important;
}
.site-header .header-promo__call{
font-size:clamp(.66rem,2.55vw,.74rem)!important;
gap:4px!important;
}
.site-header .header-promo__call strong{
font-size:clamp(.7rem,2.85vw,.82rem)!important;
}
.site-header .logo__mark{
max-width:min(198px,66vw)!important;
}
}

/* === MOBILE NAV HARD RESET === */
@media (max-width:768px){
.nav-backdrop{
position:fixed!important;
inset:0!important;
display:block!important;
background:rgba(6,18,36,.58)!important;
backdrop-filter:blur(5px)!important;
-webkit-backdrop-filter:blur(5px)!important;
opacity:0!important;
visibility:hidden!important;
pointer-events:none!important;
transition:opacity .18s ease,visibility .18s ease!important;
z-index:10040!important;
}
.nav-backdrop[hidden]{
display:block!important;
}
body.is-mobile-nav-open .nav-backdrop{
opacity:1!important;
visibility:visible!important;
pointer-events:auto!important;
}
body.is-mobile-nav-open .site-header{
z-index:10060!important;
}
body.is-mobile-nav-open .site-header .nav,
.site-header .nav.is-open{
display:grid!important;
position:fixed!important;
top:calc(var(--mobile-nav-offset,var(--site-header-current-height,126px)) + 10px)!important;
left:12px!important;
right:12px!important;
bottom:auto!important;
width:auto!important;
max-width:calc(100vw - 24px)!important;
max-height:calc(100dvh - var(--mobile-nav-offset,var(--site-header-current-height,126px)) - 22px)!important;
padding:12px!important;
grid-template-columns:minmax(0,1fr)!important;
gap:10px!important;
border-radius:14px!important;
background:#fff!important;
border:1px solid rgba(16,42,67,.12)!important;
box-shadow:0 18px 42px rgba(6,18,36,.22)!important;
overflow-x:hidden!important;
overflow-y:auto!important;
opacity:1!important;
visibility:visible!important;
pointer-events:auto!important;
transform:none!important;
z-index:2147483000!important;
}

body.is-mobile-nav-open .site-header .nav__links,
.site-header .nav.is-open .nav__links{
display:grid!important;
grid-template-columns:minmax(0,1fr)!important;
gap:4px!important;
width:100%!important;
min-width:0!important;
padding:0!important;
border:0!important;
background:transparent!important;
overflow:visible!important;
}

body.is-mobile-nav-open .site-header .nav__item--dropdown,
.site-header .nav.is-open .nav__item--dropdown{
display:grid!important;
grid-template-columns:minmax(0,1fr) 42px!important;
align-items:center!important;
width:100%!important;
min-width:0!important;
gap:0!important;
border-radius:10px!important;
}

body.is-mobile-nav-open .site-header .nav__item,
body.is-mobile-nav-open .site-header .nav__links > .nav__link,
.site-header .nav.is-open .nav__item,
.site-header .nav.is-open .nav__links > .nav__link{
width:100%!important;
min-width:0!important;
}

body.is-mobile-nav-open .site-header .nav__link,
body.is-mobile-nav-open .site-header .nav a:not(.nav__cta),
.site-header .nav.is-open .nav__link,
.site-header .nav.is-open a:not(.nav__cta){
display:flex!important;
align-items:center!important;
justify-content:flex-start!important;
min-height:44px!important;
width:100%!important;
min-width:0!important;
padding:0 12px!important;
border-radius:10px!important;
background:transparent!important;
color:#102a43!important;
font-family:'Libre Baskerville',Georgia,serif!important;
font-size:.94rem!important;
font-weight:800!important;
line-height:1.2!important;
white-space:normal!important;
}

body.is-mobile-nav-open .site-header .nav__submenu-toggle,
.site-header .nav.is-open .nav__submenu-toggle{
grid-column:2!important;
grid-row:1!important;
display:inline-flex!important;
align-items:center!important;
justify-content:center!important;
width:42px!important;
height:42px!important;
margin:0!important;
border-radius:10px!important;
color:#102a43!important;
background:#f8fafc!important;
border:1px solid rgba(16,42,67,.08)!important;
}

body.is-mobile-nav-open .site-header .nav__dropdown,
.site-header .nav.is-open .nav__dropdown,
body.is-mobile-nav-open .site-header .nav__dropdown--regions,
.site-header .nav.is-open .nav__dropdown--regions{
grid-column:1 / -1!important;
position:static!important;
inset:auto!important;
display:none!important;
width:100%!important;
min-width:0!important;
max-width:100%!important;
margin:4px 0 8px!important;
padding:8px!important;
grid-template-columns:minmax(0,1fr)!important;
gap:8px!important;
border-radius:12px!important;
background:#fbf8f2!important;
border:1px solid rgba(201,169,110,.24)!important;
box-shadow:inset 0 1px 0 rgba(255,255,255,.74)!important;
opacity:1!important;
visibility:visible!important;
transform:none!important;
overflow:visible!important;
}

body.is-mobile-nav-open .site-header .nav__item--dropdown.is-submenu-open > .nav__dropdown,
.site-header .nav.is-open .nav__item--dropdown.is-submenu-open > .nav__dropdown,
body.is-mobile-nav-open .site-header .nav__item--dropdown.is-submenu-open > .nav__dropdown--regions,
.site-header .nav.is-open .nav__item--dropdown.is-submenu-open > .nav__dropdown--regions{
display:grid!important;
}

body.is-mobile-nav-open .site-header .nav__item--dropdown:not(.is-submenu-open):hover > .nav__dropdown,
body.is-mobile-nav-open .site-header .nav__item--dropdown:not(.is-submenu-open):focus-within > .nav__dropdown,
.site-header .nav.is-open .nav__item--dropdown:not(.is-submenu-open):hover > .nav__dropdown,
.site-header .nav.is-open .nav__item--dropdown:not(.is-submenu-open):focus-within > .nav__dropdown{
display:none!important;
}

body.is-mobile-nav-open .site-header .nav-region,
.site-header .nav.is-open .nav-region{
width:100%!important;
min-width:0!important;
}

body.is-mobile-nav-open .site-header .nav-region__title,
.site-header .nav.is-open .nav-region__title{
margin:2px 0 4px!important;
padding:4px 8px 6px!important;
font-size:.72rem!important;
line-height:1.25!important;
color:#d01f36!important;
}

body.is-mobile-nav-open .site-header .nav-region__links,
.site-header .nav.is-open .nav-region__links{
display:grid!important;
grid-template-columns:minmax(0,1fr)!important;
gap:2px!important;
}

body.is-mobile-nav-open .site-header .nav__dropdown a,
body.is-mobile-nav-open .site-header .nav__dropdown--regions .nav-region__links a,
.site-header .nav.is-open .nav__dropdown a,
.site-header .nav.is-open .nav__dropdown--regions .nav-region__links a{
display:flex!important;
min-height:38px!important;
padding:0 12px!important;
font-size:.88rem!important;
line-height:1.2!important;
border-radius:8px!important;
}
}

/* Hotfix: Authentic Value intro must not create large empty gaps after admin edits. */
.home-intro__layout{
align-items:center!important;
}
.home-intro__visual{
display:flex!important;
align-items:center!important;
justify-content:center!important;
min-height:0!important;
height:auto!important;
padding:0!important;
}
.home-intro__images{
display:block!important;
position:relative!important;
width:min(100%,620px)!important;
height:clamp(480px,40vw,620px)!important;
min-height:0!important;
max-height:none!important;
margin:0 auto!important;
overflow:visible!important;
}
.home-intro__images .img-main{
position:absolute!important;
top:0!important;
right:clamp(18px,3vw,42px)!important;
left:auto!important;
bottom:auto!important;
transform:none!important;
width:74%!important;
height:82%!important;
min-height:0!important;
object-fit:cover!important;
object-position:center!important;
}
.home-intro__images .img-sub{
position:absolute!important;
left:0!important;
bottom:0!important;
top:auto!important;
right:auto!important;
width:50%!important;
height:48%!important;
min-height:0!important;
object-fit:cover!important;
object-position:center!important;
}
.home-intro__experience-badge{
top:auto!important;
right:0!important;
bottom:50px!important;
}
.home-intro__content{
display:block!important;
min-height:0!important;
height:auto!important;
}
.home-intro__copy{
margin:0!important;
padding:0!important;
}
.home-intro__copy::before,
.home-intro__copy::after,
.home-intro__text::before,
.home-intro__text::after{
display:none!important;
content:none!important;
}
.home-intro__copy .section-title{
margin:0 0 28px!important;
}
.home-intro__text{
display:grid!important;
gap:14px!important;
padding:0!important;
margin:0 0 34px!important;
border:0!important;
min-height:0!important;
}
.home-intro__text p{
margin:0!important;
}
@media(max-width:768px){
.home-intro__layout{
grid-template-columns:1fr!important;
align-items:start!important;
gap:40px!important;
}
.home-intro__images{
height:410px!important;
max-width:430px!important;
}
.home-intro__experience-badge{
right:10px!important;
bottom:34px!important;
}
}

/* Desktop polish for Authentic Value: mobile stays untouched. */
@media(min-width:1025px){
.home-intro{
padding:clamp(76px,7vw,112px) 0!important;
}
.home-intro__layout{
display:grid!important;
grid-template-columns:minmax(420px,.9fr) minmax(520px,1fr)!important;
gap:clamp(56px,6vw,96px)!important;
align-items:center!important;
}
.home-intro__visual{
width:100%!important;
max-width:640px!important;
justify-self:center!important;
}
.home-intro__images{
width:100%!important;
height:clamp(500px,38vw,610px)!important;
}
.home-intro__images .img-main{
right:clamp(22px,3vw,46px)!important;
width:74%!important;
height:80%!important;
border-radius:24px!important;
}
.home-intro__images .img-sub{
width:51%!important;
height:46%!important;
border-radius:24px!important;
}
.home-intro__experience-badge{
right:0!important;
bottom:clamp(42px,7vw,76px)!important;
padding:18px 24px!important;
}
.home-intro__content{
max-width:650px!important;
justify-self:start!important;
}
.home-intro__copy .section-title{
font-size:clamp(1.9rem,2.55vw,2.68rem)!important;
line-height:1.18!important;
margin-bottom:30px!important;
max-width:650px!important;
}
.home-intro__text{
margin-bottom:34px!important;
}
.home-intro__text p{
font-size:1.02rem!important;
line-height:1.82!important;
}
.home-intro__text .intro-lead{
font-size:1.18rem!important;
line-height:1.6!important;
}
.home-intro__features{
grid-template-columns:repeat(2,minmax(0,1fr))!important;
gap:22px!important;
padding-top:30px!important;
margin-bottom:0!important;
}
}

@media(min-width:769px) and (max-width:1024px){
.home-intro__layout{
grid-template-columns:minmax(320px,.88fr) minmax(0,1fr)!important;
gap:42px!important;
align-items:center!important;
}
.home-intro__images{
height:clamp(440px,48vw,520px)!important;
}
.home-intro__content{
max-width:560px!important;
}
.home-intro__features{
grid-template-columns:1fr!important;
}
}

/* === TOUR MOBILE HEADER + HERO CUSTOMER FIX === */
@media(max-width:768px){
body.page-tour{
padding-bottom:84px!important;
}
body.page-tour .site-header{
position:fixed!important;
top:0!important;
left:0!important;
right:0!important;
width:100%!important;
z-index:10050!important;
box-shadow:0 8px 22px rgba(6,18,36,.08)!important;
}
body.page-tour .site-header ~ main{
padding-top:var(--site-header-current-height,88px)!important;
}
body.page-tour .site-header .header-promo{
max-height:30px!important;
overflow:hidden!important;
}
body.page-tour .site-header .header-promo__inner{
min-height:30px!important;
padding:0 10px!important;
gap:6px!important;
}
body.page-tour .site-header .header-promo__social{
gap:5px!important;
}
body.page-tour .site-header .header-promo__social-link{
width:20px!important;
height:20px!important;
}
body.page-tour .site-header .header-promo__social-link img{
width:11px!important;
height:11px!important;
}
body.page-tour .site-header .header-promo__offer{
font-size:.58rem!important;
line-height:1.05!important;
max-height:2.1em!important;
letter-spacing:0!important;
}
body.page-tour .site-header .header-promo__call{
gap:4px!important;
font-size:.58rem!important;
}
body.page-tour .site-header .header-promo__call-icon{
width:18px!important;
height:18px!important;
}
body.page-tour .site-header .header-promo__call strong{
font-size:.62rem!important;
}
body.page-tour .site-header .header__inner{
min-height:58px!important;
padding:5px 12px!important;
}
body.page-tour .site-header .logo{
max-width:calc(100% - 46px)!important;
}
body.page-tour .site-header .logo__mark{
max-width:150px!important;
max-height:48px!important;
width:auto!important;
height:auto!important;
}
body.page-tour .site-header .nav-toggle{
width:38px!important;
height:38px!important;
flex-basis:38px!important;
}
body.page-tour .tour-hero{
min-height:300px!important;
height:auto!important;
align-items:flex-end!important;
padding:34px 0 24px!important;
margin-top:0!important;
overflow:hidden!important;
}
body.page-tour .tour-hero__bg{
background-position:center top!important;
}
body.page-tour .tour-hero__overlay,
body.page-tour .tour-hero::before{
background:linear-gradient(180deg,rgba(6,18,36,.2) 0%,rgba(6,18,36,.76) 100%)!important;
}
body.page-tour .tour-hero__content{
padding:0 14px!important;
text-align:left!important;
}
body.page-tour .tour-hero__content .tour-card__badge{
display:none!important;
}
body.page-tour .tour-hero__content h1{
font-family:'Poppins',Arial,sans-serif!important;
font-size:clamp(1.38rem,7.3vw,1.9rem)!important;
line-height:1.12!important;
margin:0 0 8px!important;
letter-spacing:0!important;
color:#fff!important;
text-wrap:balance;
}
body.page-tour .tour-hero__content p{
display:-webkit-box!important;
max-width:100%!important;
margin:0!important;
font-size:.82rem!important;
line-height:1.55!important;
color:rgba(255,255,255,.88)!important;
overflow:hidden!important;
-webkit-line-clamp:4!important;
-webkit-box-orient:vertical!important;
}
body.page-tour .tour-hero__actions{
margin-top:12px!important;
}
body.page-tour .tour-video-button{
min-height:38px!important;
padding:9px 13px!important;
font-size:.78rem!important;
}
body.page-tour .tour-video-button__icon{
width:21px!important;
height:21px!important;
}
body.page-tour .inquiry-assurance{
padding:12px!important;
font-size:.76rem!important;
line-height:1.5!important;
}
body.page-tour .itinerary-day-gallery__count{
grid-template-columns:20px 7px 20px!important;
min-width:68px!important;
height:34px!important;
padding:0 10px!important;
font-size:12px!important;
line-height:34px!important;
}
body.page-tour .itinerary-day-gallery__count b{
width:20px!important;
height:34px!important;
font-size:12px!important;
line-height:34px!important;
}
body.page-tour .itinerary-day-gallery__count em{
height:34px!important;
font-size:12px!important;
line-height:34px!important;
}
body.page-tour .tour-end-video{
display:grid!important;
grid-template-columns:1fr!important;
gap:18px!important;
margin:22px 0!important;
padding:24px!important;
border-radius:8px!important;
background:#fff!important;
color:var(--c-dark)!important;
border:1px solid rgba(185,21,39,.16)!important;
box-shadow:0 14px 30px rgba(11,31,58,.08)!important;
}
body.page-tour .tour-end-video__eyebrow{
display:none!important;
}
body.page-tour .tour-end-video h2{
font-family:'Poppins',Arial,sans-serif!important;
font-size:1.22rem!important;
line-height:1.18!important;
margin-bottom:8px!important;
color:#b91527!important;
text-transform:uppercase!important;
}
body.page-tour .tour-end-video p{
font-size:.82rem!important;
line-height:1.55!important;
color:#334155!important;
}
body.page-tour .tour-end-video__watch{
width:100%!important;
margin-top:14px!important;
min-height:38px!important;
font-size:.72rem!important;
}
body.page-tour .tour-end-video__frame{
border-radius:6px!important;
aspect-ratio:16/9!important;
}
body.page-tour .tour-end-video__cover-play{
width:58px!important;
height:42px!important;
border-radius:12px!important;
}
body.page-tour .tour-end-video__cover-play::before{
left:23px!important;
top:12px!important;
border-top-width:9px!important;
border-bottom-width:9px!important;
border-left-width:14px!important;
}
body.page-tour .tour-end-video__cover-text{
right:10px!important;
bottom:10px!important;
font-size:.68rem!important;
}
body.page-tour .tour-end-booking{
display:grid!important;
gap:14px!important;
margin:22px 0!important;
padding:18px!important;
border-radius:10px!important;
}
body.page-tour .tour-end-booking__eyebrow{
font-size:.62rem!important;
margin-bottom:6px!important;
}
body.page-tour .tour-end-booking h2{
font-family:'Poppins',Arial,sans-serif!important;
font-size:1.28rem!important;
line-height:1.2!important;
margin-bottom:6px!important;
}
body.page-tour .tour-end-booking p{
font-size:.84rem!important;
line-height:1.5!important;
}
body.page-tour .tour-end-booking .tour-booking-cta__button{
width:100%!important;
}
body.page-tour .tour-detail-section{
padding:26px 0 42px!important;
}
body.page-tour .tour-layout{
gap:24px!important;
}
body.page-tour .tour-facts{
grid-template-columns:repeat(2,minmax(0,1fr))!important;
gap:8px!important;
margin-bottom:22px!important;
}
body.page-tour .tour-facts>div{
padding:12px 8px!important;
border-radius:9px!important;
}
body.page-tour .tour-facts span{
font-size:.58rem!important;
line-height:1.2!important;
letter-spacing:.04em!important;
}
body.page-tour .tour-facts strong{
font-family:'Poppins',Arial,sans-serif!important;
font-size:.76rem!important;
line-height:1.35!important;
word-break:break-word!important;
}
body.page-tour .site-header .nav.is-open,
body.page-tour.is-mobile-nav-open .site-header .nav{
top:calc(var(--mobile-nav-offset,88px) + 8px)!important;
max-height:calc(100dvh - var(--mobile-nav-offset,88px) - 20px)!important;
}
}

@media(max-width:640px){
.tour-booking-cta{
padding:8px 10px calc(8px + env(safe-area-inset-bottom))!important;
}
.tour-booking-cta__inner{
width:calc(100vw - 20px)!important;
gap:10px!important;
padding:10px!important;
border-radius:10px!important;
}
.tour-booking-cta__copy strong{
font-size:.78rem!important;
}
.tour-booking-cta__copy span{
font-size:.68rem!important;
}
.tour-booking-cta__button{
min-height:38px!important;
padding:10px 12px!important;
font-size:.7rem!important;
border-radius:8px!important;
}
.tour-booking-modal{
padding:0!important;
align-items:stretch!important;
}
.tour-booking-modal__panel{
width:100vw!important;
max-height:100dvh!important;
border-radius:0!important;
grid-template-columns:1fr!important;
overflow-y:auto!important;
}
.tour-booking-modal__summary{
padding:54px 16px 14px!important;
overflow:visible!important;
}
.tour-booking-modal__eyebrow{
font-size:.62rem!important;
margin-bottom:6px!important;
}
.tour-booking-modal__summary h2{
font-size:1.18rem!important;
margin-bottom:6px!important;
}
.tour-booking-modal__summary p{
font-size:.78rem!important;
line-height:1.4!important;
}
.tour-booking-modal__price{
display:grid!important;
grid-template-columns:1fr auto!important;
align-items:center!important;
gap:3px 12px!important;
margin:12px 0 0!important;
padding:11px 12px!important;
}
.tour-booking-modal__price span{
font-size:.76rem!important;
line-height:1.2!important;
}
.tour-booking-modal__price strong{
font-size:1.22rem!important;
white-space:nowrap!important;
grid-column:2!important;
grid-row:1 / span 2!important;
}
.tour-booking-modal__price small{
display:block!important;
grid-column:1 / -1!important;
font-size:.68rem!important;
line-height:1.28!important;
margin-top:2px!important;
}
.tour-booking-modal__tiers{
display:grid!important;
grid-template-columns:repeat(2,minmax(0,1fr))!important;
gap:7px!important;
margin:10px 0 0!important;
}
.tour-booking-modal__tiers div{
display:grid!important;
gap:3px!important;
align-items:start!important;
padding:8px 9px!important;
font-size:.68rem!important;
line-height:1.22!important;
}
.tour-booking-modal__tiers b{
font-size:.72rem!important;
white-space:normal!important;
}
.tour-booking-modal__notes{
display:none!important;
}
.tour-booking-modal__form{
padding:18px 14px calc(22px + env(safe-area-inset-bottom))!important;
overflow:visible!important;
background:#fbfaf7!important;
}
.tour-booking-modal__form-head strong{
font-size:1.22rem!important;
}
.tour-booking-modal__form-head span{
font-size:.64rem!important;
}
.tour-booking-modal__grid{
grid-template-columns:1fr!important;
gap:10px!important;
}
.tour-booking-modal__grid label{
font-size:.74rem!important;
gap:5px!important;
}
.tour-booking-modal__grid input,
.tour-booking-modal__grid select,
.tour-booking-modal__grid textarea{
min-height:44px!important;
font-size:.86rem!important;
}
.tour-booking-modal__close{
top:10px!important;
right:10px!important;
width:36px!important;
height:36px!important;
font-size:24px!important;
}
}

@media(min-width:641px) and (max-width:900px){
.tour-booking-modal__panel{
grid-template-columns:1fr!important;
overflow-y:auto!important;
}
.tour-booking-modal__summary,
.tour-booking-modal__form{
overflow:visible!important;
}
.tour-booking-modal__summary{
padding:28px 30px 22px!important;
}
.tour-booking-modal__tiers{
grid-template-columns:repeat(2,minmax(0,1fr))!important;
}
.tour-booking-modal__grid{
grid-template-columns:repeat(2,minmax(0,1fr))!important;
}
}

@media(max-width:380px){
body.page-tour .tour-hero{
min-height:280px!important;
padding-top:34px!important;
}
body.page-tour .tour-hero__content h1{
font-size:1.26rem!important;
}
body.page-tour .tour-hero__content p{
font-size:.76rem!important;
-webkit-line-clamp:3!important;
}
body.page-tour .site-header .logo__mark{
max-width:138px!important;
}
}

/* Final footer travel credential strip under Our Brands. */
.footer__travel-logos{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));align-items:center;gap:18px;margin-top:-6px;margin-bottom:22px;padding:10px 34px 20px;border:0;border-bottom:1px solid rgba(255,255,255,.12);border-radius:0;background:transparent;box-shadow:none}
.footer-travel-logo{min-height:58px;display:flex;align-items:center;justify-content:center;text-align:center}
a.footer-travel-logo{text-decoration:none}
a.footer-travel-logo:focus-visible{outline:2px solid rgba(220,184,105,.75);outline-offset:6px;border-radius:4px}
.footer-travel-logo img{display:block;width:auto;height:auto;object-fit:contain;filter:grayscale(1) invert(1) brightness(.96);opacity:.6}
a.footer-travel-logo:hover img{opacity:.78}
.footer-travel-logo--tripadvisor img{max-width:76px;max-height:58px}
.footer-travel-logo--pata img{max-width:116px;max-height:62px}
.footer-travel-logo--vietnam img{max-width:98px;max-height:60px}
.footer-travel-logo--vita img{max-width:68px;max-height:60px}
.footer-travel-logo--unwto img{max-width:90px;max-height:58px}
.footer-travel-logo--un img{max-width:90px;max-height:58px}
@media(max-width:1180px){.footer__travel-logos{grid-template-columns:repeat(3,minmax(0,1fr));margin-top:-8px;padding:16px 20px;gap:14px}.footer-travel-logo{min-height:72px}.footer-travel-logo--pata img{max-width:126px}.footer-travel-logo--vietnam img{max-width:106px}}
@media(max-width:620px){.footer__travel-logos{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-bottom:24px;padding:14px}.footer-travel-logo{min-height:64px}.footer-travel-logo img{max-width:92px;max-height:56px}.footer-travel-logo--pata img{max-width:116px}.footer-travel-logo--vietnam img{max-width:102px}}

/* === CLIENT HOMEPAGE TRAVEL JOURNEY PATCH 20260519 === */
body.page-home main{
display:flex!important;
flex-direction:column!important;
background:#fffdf8!important;
}
body.page-home .hero{order:10!important}
body.page-home .home-intro{order:20!important}
body.page-home .destinations{order:30!important}
body.page-home .tours{order:40!important}
body.page-home .travel-styles{order:50!important}
body.page-home .customer-experience{order:60!important}
body.page-home .reviews-section{order:70!important}
body.page-home .booking-form{order:80!important}
body.page-home .trust-bar,
body.page-home .why-us,
body.page-home .blog-preview,
body.page-home .home-faq,
body.page-home .cta-design-journey,
body.page-home .deal-section{
display:none!important;
}
body.page-home .hero{
min-height:96svh!important;
background:#0a302a!important;
}
body.page-home .hero__media::after{
background:linear-gradient(90deg,rgba(7,35,36,.58) 0%,rgba(7,35,36,.34) 40%,rgba(7,35,36,.1) 68%,rgba(7,35,36,.24) 100%)!important;
}
body.page-home .hero__overlay{
background:linear-gradient(180deg,rgba(5,28,34,.08) 0%,rgba(5,28,34,.02) 44%,rgba(5,28,34,.34) 100%)!important;
}
body.page-home .hero__title .hero__title-line--top,
body.page-home .hero__title .hero__title-line--bottom{
font-size:clamp(2.4rem,5.4vw,5.1rem)!important;
line-height:.98!important;
text-shadow:0 18px 44px rgba(0,0,0,.32)!important;
}
body.page-home .hero__subtitle{
max-width:680px!important;
font-size:clamp(1rem,1.4vw,1.25rem)!important;
color:rgba(255,255,255,.94)!important;
}
body.page-home .hero__travel-prompt{
display:flex!important;
align-items:center!important;
justify-content:center!important;
flex-wrap:wrap!important;
gap:8px!important;
width:min(860px,100%)!important;
margin:0 auto clamp(20px,3svh,30px)!important;
padding:0 10px!important;
}
body.page-home .hero__travel-prompt span,
body.page-home .hero__travel-prompt a{
display:inline-flex!important;
align-items:center!important;
justify-content:center!important;
min-height:34px!important;
padding:7px 12px!important;
border-radius:999px!important;
font-family:'Poppins',Arial,sans-serif!important;
font-size:.78rem!important;
font-weight:800!important;
line-height:1.2!important;
letter-spacing:.02em!important;
text-shadow:none!important;
}
body.page-home .hero__travel-prompt span{
color:#fff7dc!important;
background:rgba(245,184,75,.2)!important;
border:1px solid rgba(245,184,75,.34)!important;
}
body.page-home .hero__travel-prompt a{
color:#fff!important;
background:rgba(255,255,255,.13)!important;
border:1px solid rgba(255,255,255,.25)!important;
backdrop-filter:blur(8px)!important;
}
body.page-home .hero__travel-prompt a:hover{
background:rgba(255,255,255,.22)!important;
border-color:rgba(255,255,255,.42)!important;
}
body.page-home .hero__actions .btn{
border-radius:999px!important;
min-height:52px!important;
font-weight:800!important;
}
body.page-home .hero__actions .btn--primary{
background:linear-gradient(135deg,#f5b84b 0%,#d98b24 100%)!important;
box-shadow:0 18px 42px rgba(217,139,36,.32)!important;
}
body.page-home .hero__actions .btn--outline{
background:rgba(255,255,255,.12)!important;
border-color:rgba(255,255,255,.42)!important;
}
body.page-home .hero__actions .hero__deal-btn{
background:rgba(12,56,48,.35)!important;
border-color:rgba(245,184,75,.54)!important;
color:#fff7dc!important;
}
body.page-home .hero__meta{
width:min(820px,calc(100vw - 36px))!important;
bottom:5vh!important;
padding:12px 18px!important;
border:1px solid rgba(255,255,255,.2)!important;
border-radius:999px!important;
background:rgba(4,30,30,.26)!important;
backdrop-filter:blur(10px)!important;
}
body.page-home .home-intro,
body.page-home .destinations,
body.page-home .tours,
body.page-home .travel-styles,
body.page-home .customer-experience,
body.page-home .reviews-section,
body.page-home .booking-form{
padding-top:clamp(66px,7vw,96px)!important;
padding-bottom:clamp(66px,7vw,96px)!important;
}
body.page-home .home-intro{
display:block!important;
background:linear-gradient(180deg,#fffdf8 0%,#fff 100%)!important;
}
body.page-home .destinations{
background:linear-gradient(180deg,#fffdf8 0%,#eef8f4 100%)!important;
}
body.page-home .tours{
background:linear-gradient(180deg,#eef8f4 0%,#fff 100%)!important;
}
body.page-home .travel-styles{
background:linear-gradient(180deg,#fff 0%,#f6f1e8 100%)!important;
}
body.page-home .customer-experience{
background:linear-gradient(180deg,#f6f1e8 0%,#fff 100%)!important;
}
body.page-home .reviews-section{
background:linear-gradient(180deg,#fff 0%,#eef8f4 100%)!important;
}
body.page-home .booking-form{
background:linear-gradient(135deg,#fff8ec 0%,#f2f8f3 52%,#e8f3f7 100%)!important;
}
body.page-home .section-eyebrow,
body.page-home .booking-form__eyebrow{
color:#c7852c!important;
letter-spacing:.16em!important;
}
body.page-home .section-title,
body.page-home .booking-form__title{
color:#12382f!important;
font-size:clamp(2rem,3.8vw,3.15rem)!important;
line-height:1.05!important;
}
body.page-home .section-subtitle,
body.page-home .booking-form__subtitle{
color:#48635c!important;
font-size:clamp(.98rem,1.15vw,1.08rem)!important;
}
body.page-home .dest-grid--featured,
body.page-home .tour-grid,
body.page-home .travel-styles .home-style-grid{
gap:22px!important;
}
body.page-home .dest-card,
body.page-home .tour-card,
body.page-home .home-style-card,
body.page-home .review-card,
body.page-home .booking-form__panel{
border:1px solid rgba(18,56,47,.1)!important;
border-radius:14px!important;
box-shadow:0 18px 44px rgba(18,56,47,.09)!important;
background:#fff!important;
}
body.page-home .dest-card:hover,
body.page-home .tour-card:hover,
body.page-home .home-style-card:hover{
transform:translateY(-4px)!important;
box-shadow:0 26px 62px rgba(18,56,47,.14)!important;
}
body.page-home .dest-card__img,
body.page-home .tour-card__img,
body.page-home .home-style-card__media{
height:260px!important;
min-height:260px!important;
background:#dcebe6!important;
}
body.page-home .hero__slide,
body.page-home .dest-card__img img,
body.page-home .tour-card__img img,
body.page-home .home-style-card__image,
body.page-home .customer-experience__photos img{
filter:saturate(1.08) contrast(1.03) brightness(1.04)!important;
}
body.page-home .dest-card__img::before,
body.page-home .tour-card__img::before{
background:linear-gradient(180deg,rgba(6,52,43,.04) 0%,rgba(6,52,43,.08) 48%,rgba(6,52,43,.2) 100%)!important;
opacity:1!important;
}
body.page-home .dest-card__info,
body.page-home .tour-card__body,
body.page-home .home-style-card__body{
background:linear-gradient(180deg,#fff 0%,#fffdf7 100%)!important;
}
body.page-home .tour-card__body{
gap:0!important;
}
body.page-home .tour-card__meta{
display:flex!important;
flex-wrap:wrap!important;
gap:8px!important;
margin-bottom:12px!important;
font-size:.68rem!important;
letter-spacing:.06em!important;
}
body.page-home .tour-card__meta span{
display:inline-flex!important;
align-items:center!important;
min-height:26px!important;
padding:5px 9px!important;
border-radius:999px!important;
background:#eef8f4!important;
color:#1f6f5b!important;
max-width:100%!important;
white-space:normal!important;
}
body.page-home .tour-card__route{
display:-webkit-box!important;
-webkit-line-clamp:2!important;
-webkit-box-orient:vertical!important;
overflow:hidden!important;
margin:0 0 14px!important;
padding:10px 12px!important;
border-radius:10px!important;
background:#fff8ec!important;
color:#7a5630!important;
font-size:.82rem!important;
line-height:1.55!important;
}
body.page-home .tour-card__price strong{
color:#c7852c!important;
font-size:.92rem!important;
}
body.page-home .tour-card__cta{
background:#1f6f5b!important;
border-radius:999px!important;
min-height:42px!important;
}
body.page-home .tour-card__cta:hover{
background:#c7852c!important;
}
body.page-home .home-style-card__link-copy{
color:#1f6f5b!important;
font-weight:800!important;
}
body.page-home .review-source{
border-radius:14px!important;
box-shadow:0 18px 44px rgba(18,56,47,.08)!important;
}
body.page-home .booking-form__container{
max-width:1040px!important;
}
body.page-home .booking-submit{
background:linear-gradient(135deg,#1f6f5b 0%,#144d41 100%)!important;
border-radius:999px!important;
}
@media(max-width:980px){
body.page-home .dest-grid--featured,
body.page-home .tour-grid,
body.page-home .travel-styles .home-style-grid{
grid-template-columns:repeat(2,minmax(0,1fr))!important;
}
body.page-home .hero__meta{
border-radius:18px!important;
}
}
@media(max-width:640px){
body.page-home .dest-grid--featured,
body.page-home .tour-grid,
body.page-home .travel-styles .home-style-grid{
grid-template-columns:1fr!important;
}
body.page-home .hero{
min-height:88svh!important;
}
body.page-home .hero .container.hero__content{
padding-top:118px!important;
padding-bottom:92px!important;
}
body.page-home .hero__title .hero__title-line--top,
body.page-home .hero__title .hero__title-line--bottom{
font-size:clamp(1.9rem,9vw,2.65rem)!important;
}
body.page-home .hero__actions .btn{
width:100%!important;
justify-content:center!important;
}
body.page-home .hero__travel-prompt{
gap:7px!important;
margin-bottom:18px!important;
}
body.page-home .hero__travel-prompt span,
body.page-home .hero__travel-prompt a{
min-height:30px!important;
padding:6px 10px!important;
font-size:.68rem!important;
}
body.page-home .hero__meta{
display:none!important;
}
body.page-home .dest-card__img,
body.page-home .tour-card__img,
body.page-home .home-style-card__media{
height:230px!important;
min-height:230px!important;
}
body.page-home .review-source{
display:grid!important;
gap:16px!important;
}
}

/* Mobile hero safety lock: prevent title overflow on narrow screens. */
@media(max-width:640px){
body.page-home .hero,
body.page-home .hero__media{
overflow:hidden!important;
}
body.page-home .hero .container.hero__content,
body.page-home .hero__content{
width:100%!important;
max-width:100%!important;
padding-left:16px!important;
padding-right:16px!important;
align-items:center!important;
text-align:center!important;
}
body.page-home .hero__title,
body.page-home .hero__title strong{
width:100%!important;
max-width:100%!important;
min-width:0!important;
overflow:visible!important;
text-align:center!important;
}
body.page-home .hero__title .hero__title-line,
body.page-home .hero__title .hero__title-line--top,
body.page-home .hero__title .hero__title-line--bottom{
display:block!important;
width:100%!important;
max-width:100%!important;
white-space:normal!important;
overflow-wrap:normal!important;
word-break:normal!important;
text-align:center!important;
font-size:clamp(1.78rem,7.9vw,2.18rem)!important;
line-height:1.08!important;
}
body.page-home .hero__title .hero__title-line--bottom::after{
width:100%!important;
max-width:100%!important;
}
body.page-home .hero__subtitle,
body.page-home .hero__travel-prompt,
body.page-home .hero__actions{
width:100%!important;
max-width:100%!important;
margin-left:auto!important;
margin-right:auto!important;
}
}

/* Restore homepage trust stats below hero. */
body.page-home .trust-bar{
display:block!important;
order:15!important;
position:relative!important;
z-index:3!important;
padding:38px 0 34px!important;
background:linear-gradient(180deg,#fff 0%,#fff7f4 100%)!important;
border-top:1px solid rgba(215,32,53,.08)!important;
border-bottom:1px solid rgba(16,42,67,.07)!important;
box-shadow:0 18px 42px rgba(16,42,67,.06)!important;
}
body.page-home .trust-bar__inner{
display:grid!important;
grid-template-columns:repeat(4,minmax(0,1fr))!important;
gap:18px!important;
max-width:1160px!important;
margin:0 auto!important;
}
body.page-home .trust-item{
min-height:126px!important;
display:flex!important;
align-items:center!important;
justify-content:center!important;
gap:8px!important;
padding:24px 18px!important;
border:1px solid rgba(215,32,53,.14)!important;
border-radius:14px!important;
background:rgba(255,255,255,.86)!important;
box-shadow:0 20px 48px rgba(215,32,53,.06)!important;
text-align:center!important;
}
body.page-home .trust-item::before{
display:none!important;
}
body.page-home .trust-num{
font-family:'Cormorant Garamond',Georgia,serif!important;
font-size:clamp(2.35rem,3vw,3.2rem)!important;
font-weight:700!important;
line-height:.88!important;
color:#d72035!important;
letter-spacing:0!important;
}
body.page-home .trust-item span:last-child{
max-width:170px!important;
font-family:'Poppins',Arial,sans-serif!important;
font-size:.86rem!important;
font-weight:800!important;
line-height:1.18!important;
letter-spacing:.08em!important;
text-transform:uppercase!important;
color:#6b7280!important;
}
@media(max-width:860px){
body.page-home .trust-bar{
padding:26px 0!important;
}
body.page-home .trust-bar__inner{
grid-template-columns:repeat(2,minmax(0,1fr))!important;
gap:12px!important;
}
body.page-home .trust-item{
min-height:112px!important;
padding:18px 12px!important;
}
}
@media(max-width:480px){
body.page-home .trust-item span:last-child{
font-size:.72rem!important;
}
body.page-home .trust-num{
font-size:2.2rem!important;
}
}

/* Final CTA color lock: keep all primary/action buttons in the brand red. */
:root{
--vtd-cta-red:#d72035;
--vtd-cta-red-dark:#b91527;
}
.btn--primary,
.btn-submit,
.plan-submit,
.booking-submit,
.nav__cta,
.tour-card__cta,
.deal-section__btn,
.hero__deal-btn,
.footer__brand-cta,
.cta-banner__inner .btn--primary,
.cta-design-journey__actions .btn--primary,
.customer-experience__actions .btn,
button[type="submit"],
input[type="submit"],
body.page-home .hero__actions .btn,
body.page-home .tour-card__cta,
body.page-home .booking-submit,
body.page-home .destinations-toggle,
body.page-home .tours-toggle{
background:var(--vtd-cta-red)!important;
background-image:none!important;
border-color:var(--vtd-cta-red)!important;
color:#fff!important;
box-shadow:0 14px 30px rgba(215,32,53,.24)!important;
}
.btn--primary:hover,
.btn-submit:hover,
.plan-submit:hover,
.booking-submit:hover,
.nav__cta:hover,
.tour-card__cta:hover,
.deal-section__btn:hover,
.hero__deal-btn:hover,
.footer__brand-cta:hover,
.cta-banner__inner .btn--primary:hover,
.cta-design-journey__actions .btn--primary:hover,
.customer-experience__actions .btn:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
body.page-home .hero__actions .btn:hover,
body.page-home .tour-card__cta:hover,
body.page-home .booking-submit:hover,
body.page-home .destinations-toggle:hover,
body.page-home .tours-toggle:hover{
background:var(--vtd-cta-red-dark)!important;
background-image:none!important;
border-color:var(--vtd-cta-red-dark)!important;
color:#fff!important;
box-shadow:0 18px 36px rgba(215,32,53,.32)!important;
}
.home-style-card__link-copy,
body.page-home .home-style-card__link-copy{
display:inline-flex!important;
align-items:center!important;
justify-content:center!important;
gap:10px!important;
background:var(--vtd-cta-red)!important;
background-image:none!important;
border-color:var(--vtd-cta-red)!important;
color:#fff!important;
box-shadow:0 14px 28px rgba(215,32,53,.24)!important;
}
.home-style-card:hover .home-style-card__link-copy,
body.page-home .home-style-card:hover .home-style-card__link-copy{
background:var(--vtd-cta-red-dark)!important;
background-image:none!important;
color:#fff!important;
box-shadow:0 18px 36px rgba(215,32,53,.32)!important;
}

/* Brighter travel hero refresh: open, sunny, less corporate. */
body.page-home main{
background:linear-gradient(180deg,#fffdf7 0%,#f3faf6 46%,#fffaf0 100%)!important;
}
body.page-home .hero{
min-height:94svh!important;
background:#d9f0e8!important;
isolation:isolate!important;
}
body.page-home .hero__slide{
background-position:center 42%!important;
filter:saturate(1.04) contrast(.98) brightness(1.02)!important;
transform:scale(1.005)!important;
}
body.page-home .hero__media::after{
background:
linear-gradient(90deg,rgba(9,45,43,.48) 0%,rgba(9,45,43,.22) 35%,rgba(9,45,43,.10) 62%,rgba(9,45,43,.20) 100%),
linear-gradient(180deg,rgba(255,246,220,.04) 0%,rgba(255,255,255,0) 42%,rgba(8,39,37,.34) 100%)!important;
}
body.page-home .hero__overlay{
background:linear-gradient(180deg,rgba(5,28,34,.06) 0%,rgba(5,28,34,.02) 42%,rgba(5,28,34,.28) 100%)!important;
}
body.page-home .hero .container.hero__content{
max-width:1180px!important;
padding-top:clamp(118px,15vh,160px)!important;
padding-bottom:clamp(92px,13vh,132px)!important;
text-shadow:0 18px 42px rgba(6,28,31,.28)!important;
align-items:center!important;
justify-content:center!important;
text-align:center!important;
margin-left:auto!important;
margin-right:auto!important;
}
body.page-home .hero__title{
max-width:min(1080px,calc(100vw - 48px))!important;
margin-bottom:20px!important;
margin-left:auto!important;
margin-right:auto!important;
text-align:center!important;
}
body.page-home .hero__title .hero__title-line--top,
body.page-home .hero__title .hero__title-line--bottom{
font-family:'Poppins',Arial,sans-serif!important;
font-size:clamp(2.8rem,5.2vw,5.05rem)!important;
line-height:1.02!important;
font-weight:800!important;
letter-spacing:0!important;
color:#fff!important;
text-shadow:0 20px 48px rgba(7,35,36,.34)!important;
}
body.page-home .hero__title .hero__title-line--bottom::after{
height:3px!important;
margin-top:20px!important;
background:linear-gradient(90deg,transparent,rgba(255,205,86,.96) 15%,rgba(255,255,255,.78) 50%,rgba(255,205,86,.96) 85%,transparent)!important;
box-shadow:0 10px 28px rgba(255,198,64,.32)!important;
}
body.page-home .hero__subtitle{
max-width:760px!important;
color:rgba(255,255,255,.94)!important;
font-size:clamp(1rem,1.18vw,1.16rem)!important;
line-height:1.68!important;
font-weight:650!important;
margin-left:auto!important;
margin-right:auto!important;
text-align:center!important;
}
body.page-home .hero__travel-prompt{
max-width:760px!important;
gap:9px!important;
margin-top:20px!important;
margin-bottom:26px!important;
justify-content:center!important;
margin-left:auto!important;
margin-right:auto!important;
}
body.page-home .hero__travel-prompt span,
body.page-home .hero__travel-prompt a{
min-height:34px!important;
padding:7px 13px!important;
border-radius:999px!important;
background:rgba(255,255,255,.18)!important;
border:1px solid rgba(255,255,255,.34)!important;
color:#fff!important;
box-shadow:none!important;
backdrop-filter:blur(8px)!important;
}
body.page-home .hero__travel-prompt span{
background:rgba(255,205,86,.26)!important;
border-color:rgba(255,225,145,.48)!important;
color:#fff8dc!important;
}
body.page-home .hero__actions{
gap:14px!important;
justify-content:center!important;
margin-left:auto!important;
margin-right:auto!important;
}
body.page-home .hero__actions .btn{
border-radius:10px!important;
min-height:52px!important;
padding:14px 24px!important;
box-shadow:0 16px 36px rgba(8,39,37,.18)!important;
color:#fff!important;
}
body.page-home .hero__actions .btn--primary{
background:var(--vtd-cta-red)!important;
background-image:none!important;
border-color:var(--vtd-cta-red)!important;
}
body.page-home .hero__actions .btn--primary:hover,
body.page-home .hero__actions .btn--primary:focus-visible,
body.page-home .hero__actions .btn--primary:active{
background:var(--vtd-cta-red-dark)!important;
background-image:none!important;
border-color:var(--vtd-cta-red-dark)!important;
color:#fff!important;
box-shadow:0 18px 36px rgba(215,32,53,.32)!important;
}
body.page-home .hero__actions .btn--outline,
body.page-home .hero__actions .hero__deal-btn{
background:rgba(255,255,255,.14)!important;
background-image:none!important;
border-color:rgba(255,255,255,.52)!important;
color:#fff!important;
box-shadow:0 16px 36px rgba(8,39,37,.16)!important;
backdrop-filter:blur(8px)!important;
}
body.page-home .hero__actions .btn--outline:hover,
body.page-home .hero__actions .btn--outline:focus-visible,
body.page-home .hero__actions .btn--outline:active,
body.page-home .hero__actions .hero__deal-btn:hover,
body.page-home .hero__actions .hero__deal-btn:focus-visible,
body.page-home .hero__actions .hero__deal-btn:active{
background:rgba(255,255,255,.22)!important;
background-image:none!important;
border-color:rgba(255,255,255,.72)!important;
color:#fff!important;
box-shadow:0 18px 38px rgba(8,39,37,.2)!important;
}
body.page-home .hero__meta{
display:flex!important;
position:absolute!important;
left:50%!important;
right:auto!important;
bottom:clamp(18px,4vh,34px)!important;
z-index:18!important;
transform:translateX(-50%)!important;
width:min(820px,calc(100vw - 36px))!important;
max-width:820px!important;
margin:0!important;
padding:12px 18px!important;
align-items:center!important;
justify-content:center!important;
gap:12px 18px!important;
background:rgba(10,64,57,.26)!important;
border:1px solid rgba(255,255,255,.20)!important;
border-radius:999px!important;
backdrop-filter:blur(10px)!important;
color:rgba(255,255,255,.92)!important;
font-size:1.09rem!important;
font-weight:800!important;
line-height:1.2!important;
text-align:center!important;
text-transform:uppercase!important;
}
body.page-home .hero__meta span{
display:inline-flex!important;
align-items:center!important;
justify-content:center!important;
white-space:normal!important;
}
body.page-home .hero__meta span+span::before{
display:none!important;
}
body.page-home .home-intro,
body.page-home .destinations,
body.page-home .tours,
body.page-home .travel-styles,
body.page-home .customer-experience,
body.page-home .reviews-section,
body.page-home .booking-form{
box-shadow:none!important;
}
body.page-home .destinations,
body.page-home .travel-styles{
background:linear-gradient(180deg,#f4fbf7 0%,#fffdf5 100%)!important;
}
body.page-home .tours,
body.page-home .reviews-section{
background:#fffdf8!important;
}
@media(max-width:640px){
body.page-home .hero{
min-height:100svh!important;
}
body.page-home .hero__slide{
background-position:center center!important;
filter:saturate(1.03) contrast(.98) brightness(1.02)!important;
}
body.page-home .hero .container.hero__content{
padding-top:118px!important;
padding-bottom:44px!important;
}
body.page-home .hero__title .hero__title-line,
body.page-home .hero__title .hero__title-line--top,
body.page-home .hero__title .hero__title-line--bottom{
font-size:clamp(1.72rem,7.7vw,2.14rem)!important;
line-height:1.08!important;
}
body.page-home .hero__subtitle{
font-size:.96rem!important;
line-height:1.55!important;
}
body.page-home .hero__actions .btn{
width:min(100%,340px)!important;
min-height:44px!important;
padding:10px 16px!important;
font-size:.72rem!important;
}
body.page-home .hero__meta{
display:grid!important;
position:absolute!important;
left:50%!important;
right:auto!important;
bottom:0!important;
z-index:18!important;
transform:translateX(-50%)!important;
width:min(100%,calc(100vw - 24px))!important;
max-width:520px!important;
margin:0!important;
padding:6px 8px calc(7px + env(safe-area-inset-bottom,0px))!important;
grid-template-columns:repeat(3,minmax(0,1fr))!important;
align-items:center!important;
justify-content:center!important;
gap:4px!important;
border-radius:12px 12px 0 0!important;
background:rgba(9,50,43,.58)!important;
border:1px solid rgba(255,255,255,.18)!important;
border-bottom:0!important;
box-shadow:0 -8px 18px rgba(4,24,21,.18)!important;
backdrop-filter:blur(12px)!important;
color:rgba(255,255,255,.94)!important;
font-size:clamp(.45rem,1.65vw,.56rem)!important;
font-weight:800!important;
line-height:1.08!important;
letter-spacing:0!important;
text-align:center!important;
text-transform:uppercase!important;
}
body.page-home .hero__meta span{
display:flex!important;
align-items:center!important;
justify-content:center!important;
min-width:0!important;
white-space:normal!important;
line-height:1.08!important;
}
body.page-home .hero__meta span+span::before{
display:none!important;
}
}

/* PC hero title reduce: keep mobile rules untouched. */
@media(min-width:769px){
body.page-home .hero__title .hero__title-line,
body.page-home .hero__title .hero__title-line--top,
body.page-home .hero__title .hero__title-line--bottom{
font-size:clamp(2rem,3.7vw,3.6rem)!important;
line-height:1.05!important;
}
}

/* Desktop promo offer emphasis. */
@media(min-width:769px){
.site-header .header-promo__offer{
font-size:1.18rem!important;
line-height:1.1!important;
font-weight:950!important;
}
}

/* Prevent clipped text inside home tour cards with the current serif font. */
body.page-home .tour-card__body h3,
body.page-home .tour-card__route{
overflow:visible!important;
max-height:none!important;
}
body.page-home .tour-card__route{
display:block!important;
-webkit-line-clamp:unset!important;
-webkit-box-orient:unset!important;
}
body.page-home .tour-card__desc{
display:-webkit-box!important;
-webkit-line-clamp:3!important;
-webkit-box-orient:vertical!important;
overflow:hidden!important;
max-height:none!important;
flex:0 0 auto!important;
line-height:1.72!important;
}
body.page-home .tour-card__route{
line-height:1.62!important;
padding-top:12px!important;
padding-bottom:12px!important;
}

/* Keep home tour cards visually even while allowing longer route text. */
body.page-home .tour-grid{
align-items:stretch!important;
}
body.page-home .tour-card{
height:100%!important;
}
body.page-home .tour-card__body{
display:flex!important;
flex-direction:column!important;
flex:1 1 auto!important;
}
body.page-home .tour-card__meta{
align-content:flex-start!important;
height:110px!important;
overflow:hidden!important;
}
body.page-home .tour-card__body h3{
display:-webkit-box!important;
height:calc(1.15em * 3)!important;
overflow:hidden!important;
-webkit-line-clamp:3!important;
-webkit-box-orient:vertical!important;
}
body.page-home .tour-card__desc{
height:calc(1.72em * 3)!important;
}
body.page-home .tour-card__route{
display:-webkit-box!important;
height:calc(1.62em * 3 + 24px)!important;
overflow:hidden!important;
-webkit-line-clamp:3!important;
-webkit-box-orient:vertical!important;
}
body.page-home .tour-card__footer{
margin-top:auto!important;
}
@media(max-width:768px){
body.page-home .tour-card__meta,
body.page-home .tour-card__body h3,
body.page-home .tour-card__desc,
body.page-home .tour-card__route{
height:auto!important;
min-height:0!important;
}
}

/* Sharper cover images for tour and destination detail pages. */
.tour-hero__bg,
.dest-hero__bg{
display:flex!important;
align-items:center!important;
justify-content:center!important;
inset:0!important;
transform:none!important;
filter:saturate(1.12) contrast(1.06) brightness(1.06)!important;
background-position:center center!important;
background-image:none!important;
background-color:#0b1f33!important;
}
.tour-hero__bg img,
.dest-hero__bg img{
display:block!important;
width:100%!important;
height:100%!important;
max-width:none!important;
max-height:none!important;
object-fit:cover!important;
object-position:center center!important;
filter:none!important;
transform:none!important;
opacity:1!important;
image-rendering:auto!important;
}
.tour-hero::before,
.dest-hero::before{
background:linear-gradient(180deg,rgba(8,22,43,.08) 0%,rgba(8,22,43,.34) 100%)!important;
}
.tour-hero__overlay,
.dest-hero__overlay{
background:linear-gradient(180deg,rgba(8,22,43,.02) 0%,rgba(8,22,43,.18) 44%,rgba(8,22,43,.5) 100%)!important;
backdrop-filter:none!important;
-webkit-backdrop-filter:none!important;
}
.tour-hero__content,
.dest-hero__content{
text-shadow:0 3px 14px rgba(0,0,0,.52),0 1px 2px rgba(0,0,0,.72)!important;
}
@media(max-width:768px){
.tour-hero__bg,
.dest-hero__bg{
filter:saturate(1.08) contrast(1.04) brightness(1.04)!important;
}
body.page-tour .tour-hero__overlay,
body.page-tour .tour-hero::before,
.dest-hero__overlay,
.dest-hero::before{
background:linear-gradient(180deg,rgba(6,18,36,.08) 0%,rgba(6,18,36,.58) 100%)!important;
}
}

/* Premium homepage category intros */
body.page-home .home-category-intro{
position:relative!important;
display:grid!important;
grid-template-columns:minmax(0,1.35fr) minmax(320px,.65fr)!important;
gap:clamp(22px,3vw,38px)!important;
align-items:stretch!important;
margin:0 0 clamp(28px,3.8vw,46px)!important;
padding:clamp(26px,4vw,46px)!important;
overflow:hidden!important;
border:1px solid rgba(18,56,47,.1)!important;
border-radius:18px!important;
background:radial-gradient(circle at 8% 12%,rgba(199,133,44,.15) 0%,rgba(199,133,44,0) 26%),linear-gradient(135deg,#fff 0%,#fffaf0 48%,#eef8f4 100%)!important;
box-shadow:0 26px 70px rgba(18,56,47,.1)!important;
isolation:isolate!important;
}
body.page-home .home-category-intro::before{
content:''!important;
position:absolute!important;
inset:0!important;
z-index:-1!important;
background:linear-gradient(90deg,rgba(255,255,255,.7) 0%,rgba(255,255,255,0) 46%),radial-gradient(circle at 92% 16%,rgba(31,111,91,.13) 0%,rgba(31,111,91,0) 24%)!important;
pointer-events:none!important;
}
body.page-home .home-category-intro__copy{
min-width:0!important;
display:flex!important;
flex-direction:column!important;
align-items:flex-start!important;
}
body.page-home .home-category-intro__eyebrow{
margin:0 0 12px!important;
font-size:.74rem!important;
font-weight:900!important;
line-height:1.2!important;
letter-spacing:.18em!important;
text-transform:uppercase!important;
color:#c7852c!important;
}
body.page-home .home-category-intro h3{
max-width:820px!important;
margin:0 0 18px!important;
font-family:var(--font-heading-2)!important;
font-size:clamp(2rem,3.6vw,3.35rem)!important;
font-weight:800!important;
line-height:1.04!important;
letter-spacing:-.025em!important;
color:#12382f!important;
text-wrap:balance!important;
}
body.page-home .home-category-intro__copy p:not(.home-category-intro__eyebrow){
max-width:850px!important;
margin:0 0 15px!important;
font-size:clamp(1rem,1.12vw,1.08rem)!important;
line-height:1.82!important;
color:#38544d!important;
}
body.page-home .home-category-intro__actions{
display:flex!important;
flex-wrap:wrap!important;
gap:12px!important;
align-items:center!important;
margin-top:10px!important;
}
body.page-home .home-category-intro__actions .btn{
min-height:46px!important;
padding:13px 20px!important;
border-radius:999px!important;
font-size:.82rem!important;
font-weight:900!important;
letter-spacing:.02em!important;
}
body.page-home .home-category-intro__actions .btn--primary{
background:linear-gradient(135deg,#1f6f5b 0%,#144d41 100%)!important;
border-color:transparent!important;
box-shadow:0 16px 34px rgba(31,111,91,.22)!important;
}
body.page-home .home-category-intro__actions .btn--primary:hover{
background:linear-gradient(135deg,#c7852c 0%,#9b6423 100%)!important;
box-shadow:0 18px 38px rgba(199,133,44,.25)!important;
}
body.page-home .home-category-intro__actions .btn--outline{
background:rgba(255,255,255,.76)!important;
border-color:rgba(18,56,47,.16)!important;
color:#12382f!important;
}
body.page-home .home-category-intro__actions .btn--outline:hover{
background:#12382f!important;
border-color:#12382f!important;
color:#fff!important;
}
body.page-home .home-category-intro__panel{
position:relative!important;
display:flex!important;
flex-direction:column!important;
justify-content:space-between!important;
gap:18px!important;
min-height:100%!important;
padding:clamp(22px,2.6vw,32px)!important;
overflow:hidden!important;
border:1px solid rgba(255,255,255,.16)!important;
border-radius:16px!important;
background:linear-gradient(145deg,rgba(18,56,47,.98) 0%,rgba(13,43,39,.96) 58%,rgba(31,111,91,.9) 100%)!important;
box-shadow:inset 0 1px 0 rgba(255,255,255,.13),0 20px 54px rgba(18,56,47,.2)!important;
color:#fff!important;
}
body.page-home .home-category-intro__panel::after{
content:''!important;
position:absolute!important;
right:-38px!important;
top:-38px!important;
width:140px!important;
height:140px!important;
border-radius:50%!important;
background:rgba(199,133,44,.22)!important;
pointer-events:none!important;
}
body.page-home .home-category-intro__panel span{
position:relative!important;
z-index:1!important;
display:inline-flex!important;
width:max-content!important;
max-width:100%!important;
padding:7px 11px!important;
border:1px solid rgba(255,255,255,.16)!important;
border-radius:999px!important;
background:rgba(255,255,255,.1)!important;
font-size:.7rem!important;
font-weight:900!important;
line-height:1.2!important;
letter-spacing:.12em!important;
text-transform:uppercase!important;
color:#f7d99b!important;
}
body.page-home .home-category-intro__panel strong{
position:relative!important;
z-index:1!important;
display:block!important;
font-family:var(--font-heading-2)!important;
font-size:clamp(1.25rem,1.7vw,1.65rem)!important;
font-weight:800!important;
line-height:1.25!important;
letter-spacing:-.01em!important;
color:#fff!important;
}
body.page-home .home-category-intro__panel ul{
position:relative!important;
z-index:1!important;
display:grid!important;
gap:10px!important;
margin:0!important;
padding:0!important;
list-style:none!important;
}
body.page-home .home-category-intro__panel li{
position:relative!important;
padding-left:22px!important;
font-size:.94rem!important;
font-weight:700!important;
line-height:1.55!important;
color:rgba(255,255,255,.82)!important;
}
body.page-home .home-category-intro__panel li::before{
content:''!important;
position:absolute!important;
left:0!important;
top:.58em!important;
width:9px!important;
height:9px!important;
border-radius:50%!important;
background:#f7d99b!important;
box-shadow:0 0 0 4px rgba(247,217,155,.14)!important;
}
body.page-home .home-category-intro--tours{
background:radial-gradient(circle at 8% 12%,rgba(31,111,91,.14) 0%,rgba(31,111,91,0) 26%),linear-gradient(135deg,#fff 0%,#f8fbf8 45%,#fff8ec 100%)!important;
}
body.page-home .home-category-intro--styles{
background:radial-gradient(circle at 8% 12%,rgba(199,133,44,.16) 0%,rgba(199,133,44,0) 28%),linear-gradient(135deg,#fffaf0 0%,#fff 45%,#eef8f4 100%)!important;
}
body.page-home .home-category-intro + .dest-grid,
body.page-home .home-category-intro + .tour-grid,
body.page-home .home-category-intro + .home-style-grid{
margin-top:0!important;
}
@media(max-width:980px){
body.page-home .home-category-intro{
grid-template-columns:1fr!important;
}
body.page-home .home-category-intro__panel{
min-height:auto!important;
}
}
@media(max-width:640px){
body.page-home .home-category-intro{
padding:22px 18px!important;
border-radius:16px!important;
}
body.page-home .home-category-intro h3{
font-size:clamp(1.65rem,8vw,2.2rem)!important;
}
body.page-home .home-category-intro__copy p:not(.home-category-intro__eyebrow){
font-size:.96rem!important;
line-height:1.72!important;
}
body.page-home .home-category-intro__actions{
width:100%!important;
}
body.page-home .home-category-intro__actions .btn{
width:100%!important;
justify-content:center!important;
}
body.page-home .home-category-intro__panel{
padding:20px!important;
}
}

/* Refine homepage category intros to match the existing card system. */
body.page-home .home-category-intro{
grid-template-columns:minmax(0,1fr) minmax(260px,360px)!important;
gap:24px!important;
align-items:start!important;
margin:0 0 28px!important;
padding:28px!important;
border-radius:14px!important;
border:1px solid rgba(18,56,47,.1)!important;
background:linear-gradient(180deg,#fff 0%,#fffdf7 100%)!important;
box-shadow:0 18px 44px rgba(18,56,47,.08)!important;
}
body.page-home .home-category-intro::before{
display:none!important;
}
body.page-home .home-category-intro__eyebrow{
margin-bottom:10px!important;
font-family:var(--font-heading-2)!important;
font-size:.7rem!important;
letter-spacing:.18em!important;
color:#c7852c!important;
}
body.page-home .home-category-intro h3{
max-width:760px!important;
margin-bottom:14px!important;
font-family:'Poppins',sans-serif!important;
font-size:clamp(1.55rem,2.35vw,2.25rem)!important;
font-weight:800!important;
line-height:1.12!important;
letter-spacing:-.015em!important;
color:#12382f!important;
}
body.page-home .home-category-intro__copy p:not(.home-category-intro__eyebrow){
max-width:820px!important;
margin-bottom:11px!important;
font-family:var(--font-body)!important;
font-size:.98rem!important;
line-height:1.72!important;
color:#48635c!important;
}
body.page-home .home-category-intro__actions{
margin-top:8px!important;
gap:10px!important;
}
body.page-home .home-category-intro__actions .btn{
min-height:42px!important;
padding:11px 17px!important;
font-size:.76rem!important;
border-radius:999px!important;
}
body.page-home .home-category-intro__panel{
min-height:auto!important;
gap:12px!important;
padding:20px!important;
border-radius:12px!important;
border:1px solid rgba(18,56,47,.1)!important;
background:linear-gradient(180deg,#f7fbf8 0%,#fff 100%)!important;
box-shadow:none!important;
color:#12382f!important;
}
body.page-home .home-category-intro__panel::after{
display:none!important;
}
body.page-home .home-category-intro__panel span{
padding:0!important;
border:0!important;
border-radius:0!important;
background:transparent!important;
font-family:var(--font-heading-2)!important;
font-size:.68rem!important;
letter-spacing:.16em!important;
color:#c7852c!important;
}
body.page-home .home-category-intro__panel strong{
font-family:'Poppins',sans-serif!important;
font-size:1rem!important;
font-weight:800!important;
line-height:1.38!important;
letter-spacing:-.005em!important;
color:#12382f!important;
}
body.page-home .home-category-intro__panel ul{
gap:8px!important;
}
body.page-home .home-category-intro__panel li{
padding-left:18px!important;
font-size:.84rem!important;
font-weight:700!important;
line-height:1.45!important;
color:#48635c!important;
}
body.page-home .home-category-intro__panel li::before{
top:.54em!important;
width:7px!important;
height:7px!important;
background:#c7852c!important;
box-shadow:none!important;
}
body.page-home .home-category-intro--tours,
body.page-home .home-category-intro--styles{
background:linear-gradient(180deg,#fff 0%,#fffdf7 100%)!important;
}
@media(max-width:980px){
body.page-home .home-category-intro{
grid-template-columns:1fr!important;
padding:24px!important;
}
body.page-home .home-category-intro__panel{
max-width:none!important;
}
}
@media(max-width:640px){
body.page-home .home-category-intro{
padding:20px!important;
margin-bottom:22px!important;
}
body.page-home .home-category-intro h3{
font-size:1.55rem!important;
}
body.page-home .home-category-intro__copy p:not(.home-category-intro__eyebrow){
font-size:.94rem!important;
line-height:1.66!important;
}
body.page-home .home-category-intro__actions .btn{
width:100%!important;
}
}
/* Keep homepage intro primary CTAs aligned with the site's red action buttons. */
body.page-home .home-category-intro__actions .btn--primary{
background:linear-gradient(135deg,#ff3048 0%,#d72035 58%,#b91527 100%)!important;
border-color:#d72035!important;
color:#fff!important;
box-shadow:0 14px 30px rgba(215,32,53,.24)!important;
}
body.page-home .home-category-intro__actions .btn--primary:hover,
body.page-home .home-category-intro__actions .btn--primary:focus-visible{
background:linear-gradient(135deg,#e83344 0%,#d72035 55%,#a91121 100%)!important;
border-color:#b91527!important;
color:#fff!important;
box-shadow:0 18px 34px rgba(215,32,53,.3)!important;
}
body.page-destinations .category-listing,
body.page-trip-deals .category-listing,
body.page-travel-styles .category-listing{
padding:58px 0 84px!important;
background:linear-gradient(180deg,#fffdf7 0%,#f6fbf7 46%,#fff 100%)!important;
}
body.page-destinations .category-listing__header,
body.page-trip-deals .category-listing__header,
body.page-travel-styles .category-listing__header{
margin-bottom:18px!important;
}
body.page-destinations .home-category-intro,
body.page-trip-deals .home-category-intro,
body.page-travel-styles .home-category-intro{
position:relative!important;
display:grid!important;
grid-template-columns:minmax(0,1.45fr) minmax(280px,.75fr)!important;
gap:34px!important;
align-items:stretch!important;
margin:0 0 46px!important;
padding:34px!important;
border:1px solid rgba(14,65,55,.12)!important;
border-radius:14px!important;
background:linear-gradient(135deg,#fff 0%,#fffdf8 58%,#f3faf7 100%)!important;
box-shadow:0 22px 54px rgba(18,52,46,.1)!important;
overflow:hidden!important;
}
body.page-destinations .home-category-intro__copy,
body.page-trip-deals .home-category-intro__copy,
body.page-travel-styles .home-category-intro__copy{
position:relative!important;
z-index:1!important;
max-width:820px!important;
}
body.page-destinations .home-category-intro__eyebrow,
body.page-trip-deals .home-category-intro__eyebrow,
body.page-travel-styles .home-category-intro__eyebrow{
margin:0 0 12px!important;
font-family:'Poppins',Arial,sans-serif!important;
font-size:.76rem!important;
font-weight:900!important;
letter-spacing:.18em!important;
text-transform:uppercase!important;
color:#c7852c!important;
}
body.page-destinations .home-category-intro h3,
body.page-trip-deals .home-category-intro h3,
body.page-travel-styles .home-category-intro h3{
margin:0 0 16px!important;
max-width:760px!important;
font-size:clamp(2rem,3.2vw,3.15rem)!important;
line-height:1.04!important;
letter-spacing:0!important;
color:#123b31!important;
}
body.page-destinations .home-category-intro__copy p:not(.home-category-intro__eyebrow),
body.page-trip-deals .home-category-intro__copy p:not(.home-category-intro__eyebrow),
body.page-travel-styles .home-category-intro__copy p:not(.home-category-intro__eyebrow){
margin:0 0 13px!important;
font-size:1.02rem!important;
line-height:1.7!important;
color:#48635c!important;
}
body.page-destinations .home-category-intro__actions,
body.page-trip-deals .home-category-intro__actions,
body.page-travel-styles .home-category-intro__actions{
display:flex!important;
flex-wrap:wrap!important;
gap:12px!important;
margin-top:24px!important;
}
body.page-destinations .home-category-intro__actions .btn,
body.page-trip-deals .home-category-intro__actions .btn,
body.page-travel-styles .home-category-intro__actions .btn{
min-height:48px!important;
padding:13px 24px!important;
border-radius:999px!important;
font-family:'Poppins',Arial,sans-serif!important;
font-size:.82rem!important;
font-weight:900!important;
letter-spacing:0!important;
text-transform:uppercase!important;
}
body.page-destinations .home-category-intro__actions .btn--primary,
body.page-trip-deals .home-category-intro__actions .btn--primary,
body.page-travel-styles .home-category-intro__actions .btn--primary{
background:linear-gradient(135deg,#ff3048 0%,#d72035 58%,#b91527 100%)!important;
border-color:#d72035!important;
color:#fff!important;
box-shadow:0 14px 30px rgba(215,32,53,.24)!important;
}
body.page-destinations .home-category-intro__actions .btn--outline,
body.page-trip-deals .home-category-intro__actions .btn--outline,
body.page-travel-styles .home-category-intro__actions .btn--outline{
background:rgba(255,255,255,.84)!important;
border:1px solid rgba(18,59,49,.2)!important;
color:#123b31!important;
box-shadow:none!important;
}
body.page-destinations .home-category-intro__panel,
body.page-trip-deals .home-category-intro__panel,
body.page-travel-styles .home-category-intro__panel{
position:relative!important;
z-index:1!important;
display:flex!important;
flex-direction:column!important;
justify-content:center!important;
align-self:stretch!important;
min-height:100%!important;
padding:26px!important;
border:1px solid rgba(14,65,55,.12)!important;
border-radius:12px!important;
background:linear-gradient(180deg,#ffffff 0%,#f6faf7 100%)!important;
box-shadow:inset 0 1px 0 rgba(255,255,255,.85)!important;
}
body.page-destinations .home-category-intro__panel span,
body.page-trip-deals .home-category-intro__panel span,
body.page-travel-styles .home-category-intro__panel span{
margin-bottom:14px!important;
font-family:'Poppins',Arial,sans-serif!important;
font-size:.74rem!important;
font-weight:900!important;
letter-spacing:.12em!important;
text-transform:uppercase!important;
color:#c7852c!important;
}
body.page-destinations .home-category-intro__panel strong,
body.page-trip-deals .home-category-intro__panel strong,
body.page-travel-styles .home-category-intro__panel strong{
font-size:1.18rem!important;
line-height:1.36!important;
color:#123b31!important;
}
body.page-destinations .home-category-intro__panel ul,
body.page-trip-deals .home-category-intro__panel ul,
body.page-travel-styles .home-category-intro__panel ul{
display:grid!important;
gap:10px!important;
margin:22px 0 0!important;
padding:0!important;
list-style:none!important;
}
body.page-destinations .home-category-intro__panel li,
body.page-trip-deals .home-category-intro__panel li,
body.page-travel-styles .home-category-intro__panel li{
position:relative!important;
padding-left:18px!important;
font-weight:700!important;
line-height:1.45!important;
color:#48635c!important;
}
body.page-destinations .home-category-intro__panel li::before,
body.page-trip-deals .home-category-intro__panel li::before,
body.page-travel-styles .home-category-intro__panel li::before{
content:''!important;
position:absolute!important;
left:0!important;
top:.54em!important;
width:7px!important;
height:7px!important;
border-radius:999px!important;
background:#c7852c!important;
}
body.page-destinations .category-listing__grid,
body.page-trip-deals .category-listing__grid,
body.page-travel-styles .category-listing__grid{
scroll-margin-top:120px!important;
}
body.page-trip-deals .tour-grid.category-listing__grid{
grid-template-columns:repeat(3,minmax(0,1fr))!important;
gap:28px!important;
align-items:stretch!important;
}
body.page-trip-deals .category-tour-card{
overflow:hidden!important;
border:1px solid rgba(18,59,49,.1)!important;
border-radius:12px!important;
background:#fff!important;
box-shadow:0 18px 44px rgba(18,52,46,.1)!important;
}
body.page-trip-deals .category-tour-card:hover{
transform:translateY(-5px)!important;
box-shadow:0 26px 58px rgba(18,52,46,.14)!important;
border-color:rgba(215,32,53,.18)!important;
}
body.page-trip-deals .category-tour-card .tour-card__img{
height:238px!important;
border-radius:0!important;
}
body.page-trip-deals .category-tour-card .tour-card__img::before{
opacity:.38!important;
background:linear-gradient(180deg,rgba(10,33,28,.04) 0%,rgba(10,33,28,.22) 100%)!important;
}
body.page-trip-deals .category-tour-card .tour-card__badge{
top:16px!important;
left:16px!important;
padding:8px 14px!important;
border:1px solid rgba(255,255,255,.68)!important;
border-radius:999px!important;
background:rgba(255,255,255,.9)!important;
box-shadow:0 10px 24px rgba(18,52,46,.16)!important;
color:#d72035!important;
font-family:'Poppins',Arial,sans-serif!important;
font-size:.68rem!important;
font-weight:900!important;
letter-spacing:.08em!important;
}
body.page-trip-deals .category-tour-card .tour-card__body{
padding:22px!important;
background:#fff!important;
}
body.page-trip-deals .category-tour-card .tour-card__meta{
display:flex!important;
flex-wrap:wrap!important;
gap:8px!important;
margin:0 0 16px!important;
font-family:'Poppins',Arial,sans-serif!important;
font-size:.74rem!important;
font-weight:800!important;
letter-spacing:0!important;
line-height:1.25!important;
text-transform:none!important;
color:#36564f!important;
}
body.page-trip-deals .category-tour-card .tour-card__meta span{
display:inline-flex!important;
align-items:center!important;
max-width:100%!important;
min-width:0!important;
padding:7px 10px!important;
border:1px solid rgba(18,59,49,.1)!important;
border-radius:999px!important;
background:#f6faf7!important;
white-space:normal!important;
}
body.page-trip-deals .category-tour-card .tour-card__body h3{
margin:0 0 12px!important;
font-family:'Playfair Display',serif!important;
font-size:1.36rem!important;
font-weight:800!important;
line-height:1.12!important;
letter-spacing:0!important;
color:#0f2b45!important;
}
body.page-trip-deals .category-tour-card .tour-card__body h3 a{
color:inherit!important;
}
body.page-trip-deals .category-tour-card .tour-card__desc{
margin:0 0 16px!important;
font-size:.96rem!important;
line-height:1.68!important;
color:#647086!important;
-webkit-line-clamp:3!important;
}
body.page-trip-deals .category-tour-card .tour-card__route{
display:-webkit-box!important;
margin:0 0 18px!important;
padding:12px 14px!important;
border:1px solid rgba(18,59,49,.08)!important;
border-radius:10px!important;
background:linear-gradient(180deg,#fbfdfb 0%,#f5faf7 100%)!important;
font-size:.88rem!important;
font-weight:700!important;
line-height:1.55!important;
color:#46615a!important;
-webkit-line-clamp:2!important;
-webkit-box-orient:vertical!important;
overflow:hidden!important;
}
body.page-trip-deals .category-tour-card .tour-card__footer{
display:flex!important;
flex-direction:row!important;
align-items:center!important;
justify-content:space-between!important;
gap:14px!important;
margin-top:auto!important;
padding-top:16px!important;
border-top:1px solid rgba(18,59,49,.09)!important;
}
body.page-trip-deals .category-tour-card .tour-card__price{
display:flex!important;
flex-direction:column!important;
align-items:flex-start!important;
gap:2px!important;
white-space:normal!important;
}
body.page-trip-deals .category-tour-card .tour-card__price del{
font-size:.76rem!important;
color:#8b95a5!important;
}
body.page-trip-deals .category-tour-card .tour-card__price strong{
font-family:'Poppins',Arial,sans-serif!important;
font-size:1rem!important;
font-weight:900!important;
color:#d72035!important;
}
body.page-trip-deals .category-tour-card .tour-card__actions{
width:auto!important;
}
body.page-trip-deals .category-tour-card .tour-card__cta{
width:auto!important;
min-width:136px!important;
padding:11px 16px!important;
border-radius:999px!important;
background:linear-gradient(135deg,#ff3048 0%,#d72035 58%,#b91527 100%)!important;
box-shadow:0 12px 24px rgba(215,32,53,.22)!important;
font-family:'Poppins',Arial,sans-serif!important;
font-size:.72rem!important;
font-weight:900!important;
letter-spacing:0!important;
color:#fff!important;
}
body.page-trip-deals .category-tour-card .tour-card__cta:hover{
background:linear-gradient(135deg,#e83344 0%,#d72035 55%,#a91121 100%)!important;
box-shadow:0 16px 30px rgba(215,32,53,.28)!important;
}
@media(max-width:1180px){
body.page-trip-deals .tour-grid.category-listing__grid{
grid-template-columns:repeat(2,minmax(0,1fr))!important;
}
}
@media(max-width:980px){
body.page-destinations .home-category-intro,
body.page-trip-deals .home-category-intro,
body.page-travel-styles .home-category-intro{
grid-template-columns:1fr!important;
padding:24px!important;
}
}
@media(max-width:640px){
body.page-destinations .category-listing,
body.page-trip-deals .category-listing,
body.page-travel-styles .category-listing{
padding:58px 0 58px!important;
}
body.page-destinations .home-category-intro,
body.page-trip-deals .home-category-intro,
body.page-travel-styles .home-category-intro{
padding:20px!important;
margin-bottom:26px!important;
}
body.page-destinations .home-category-intro h3,
body.page-trip-deals .home-category-intro h3,
body.page-travel-styles .home-category-intro h3{
font-size:1.55rem!important;
}
body.page-destinations .home-category-intro__actions .btn,
body.page-trip-deals .home-category-intro__actions .btn,
body.page-travel-styles .home-category-intro__actions .btn{
width:100%!important;
justify-content:center!important;
}
body.page-trip-deals .tour-grid.category-listing__grid{
grid-template-columns:1fr!important;
}
body.page-trip-deals .category-tour-card .tour-card__footer{
flex-direction:column!important;
align-items:stretch!important;
}
body.page-trip-deals .category-tour-card .tour-card__actions,
body.page-trip-deals .category-tour-card .tour-card__cta{
width:100%!important;
}
}

/* Match trip-deals listing cards to the homepage tour cards. */
body.page-trip-deals .tour-grid.category-listing__grid{
grid-template-columns:repeat(auto-fill,minmax(280px,1fr))!important;
gap:22px!important;
align-items:stretch!important;
}
body.page-trip-deals .category-listing .tour-card{
height:100%!important;
border:1px solid rgba(18,56,47,.1)!important;
border-radius:14px!important;
box-shadow:0 18px 44px rgba(18,56,47,.09)!important;
background:#fff!important;
}
body.page-trip-deals .category-listing .tour-card:hover{
transform:translateY(-4px)!important;
box-shadow:0 26px 62px rgba(18,56,47,.14)!important;
}
body.page-trip-deals .category-listing .tour-card__img{
height:260px!important;
min-height:260px!important;
background:#dcebe6!important;
}
body.page-trip-deals .category-listing .tour-card__img img{
filter:saturate(1.08) contrast(1.03) brightness(1.04)!important;
}
body.page-trip-deals .category-listing .tour-card__img::before{
background:linear-gradient(180deg,rgba(6,52,43,.04) 0%,rgba(6,52,43,.08) 48%,rgba(6,52,43,.2) 100%)!important;
opacity:1!important;
}
body.page-trip-deals .category-listing .tour-card__body{
display:flex!important;
flex-direction:column!important;
flex:1 1 auto!important;
gap:0!important;
padding:22px!important;
background:linear-gradient(180deg,#fff 0%,#fffdf7 100%)!important;
}
body.page-trip-deals .category-listing .tour-card__meta{
display:flex!important;
flex-wrap:wrap!important;
gap:8px!important;
margin-bottom:12px!important;
font-size:.68rem!important;
letter-spacing:.06em!important;
text-transform:uppercase!important;
align-content:flex-start!important;
height:110px!important;
overflow:hidden!important;
}
body.page-trip-deals .category-listing .tour-card__meta span{
display:inline-flex!important;
align-items:center!important;
min-height:26px!important;
padding:5px 9px!important;
border:0!important;
border-radius:999px!important;
background:#eef8f4!important;
color:#1f6f5b!important;
max-width:100%!important;
white-space:normal!important;
}
body.page-trip-deals .category-listing .tour-card__body h3{
display:-webkit-box!important;
height:calc(1.15em * 3)!important;
overflow:hidden!important;
max-height:none!important;
-webkit-line-clamp:3!important;
-webkit-box-orient:vertical!important;
font-family:'Playfair Display',serif!important;
font-size:1.4rem!important;
line-height:1.15!important;
color:var(--c-primary)!important;
margin-bottom:10px!important;
}
body.page-trip-deals .category-listing .tour-card__body h3 a{
color:inherit!important;
}
body.page-trip-deals .category-listing .tour-card__desc{
display:-webkit-box!important;
-webkit-line-clamp:3!important;
-webkit-box-orient:vertical!important;
overflow:hidden!important;
max-height:none!important;
height:calc(1.72em * 3)!important;
flex:0 0 auto!important;
font-size:.95rem!important;
line-height:1.72!important;
color:var(--c-text-light)!important;
margin-bottom:14px!important;
}
body.page-trip-deals .category-listing .tour-card__route{
display:-webkit-box!important;
overflow:hidden!important;
max-height:none!important;
height:calc(1.62em * 3 + 24px)!important;
margin:0 0 14px!important;
padding:12px!important;
border:0!important;
border-radius:10px!important;
background:#fff8ec!important;
color:#7a5630!important;
font-size:.82rem!important;
line-height:1.62!important;
-webkit-line-clamp:3!important;
-webkit-box-orient:vertical!important;
}
body.page-trip-deals .category-listing .tour-card__footer{
display:flex!important;
flex-direction:column!important;
align-items:stretch!important;
gap:12px!important;
margin-top:auto!important;
padding-top:18px!important;
border-top:1px solid rgba(11,31,58,.08)!important;
}
body.page-trip-deals .category-listing .tour-card__price{
display:flex!important;
flex-direction:row!important;
align-items:baseline!important;
justify-content:space-between!important;
gap:6px!important;
white-space:normal!important;
}
body.page-trip-deals .category-listing .tour-card__price del{
color:var(--c-text-light)!important;
font-size:.78rem!important;
font-weight:500!important;
}
body.page-trip-deals .category-listing .tour-card__price strong{
color:#c7852c!important;
font-size:.92rem!important;
font-weight:800!important;
}
body.page-trip-deals .category-listing .tour-card__actions{
width:100%!important;
}
body.page-trip-deals .category-listing .tour-card__cta{
display:flex!important;
align-items:center!important;
justify-content:center!important;
width:100%!important;
min-width:100%!important;
min-height:42px!important;
padding:10px 16px!important;
border-radius:999px!important;
background:linear-gradient(135deg,#ff3048 0%,#d72035 58%,#b91527 100%)!important;
box-shadow:0 14px 28px rgba(215,32,53,.22)!important;
color:#fff!important;
font-size:.72rem!important;
font-weight:800!important;
letter-spacing:.02em!important;
text-transform:uppercase!important;
}
body.page-trip-deals .category-listing .tour-card__cta:hover{
background:linear-gradient(135deg,#e83344 0%,#d72035 55%,#a91121 100%)!important;
transform:translateY(-1px)!important;
}
@media(max-width:640px){
body.page-trip-deals .category-listing .tour-card__meta,
body.page-trip-deals .category-listing .tour-card__body h3,
body.page-trip-deals .category-listing .tour-card__desc,
body.page-trip-deals .category-listing .tour-card__route{
height:auto!important;
min-height:0!important;
}
}
body.page-destinations .category-listing .dest-grid,
body.page-travel-styles .category-listing .home-style-grid{
gap:22px!important;
align-items:stretch!important;
}
body.page-destinations .category-listing .dest-card,
body.page-travel-styles .category-listing .home-style-card{
border:1px solid rgba(18,56,47,.1)!important;
border-radius:14px!important;
box-shadow:0 18px 44px rgba(18,56,47,.09)!important;
background:#fff!important;
}
body.page-destinations .category-listing .dest-card:hover,
body.page-travel-styles .category-listing .home-style-card:hover{
transform:translateY(-4px)!important;
box-shadow:0 26px 62px rgba(18,56,47,.14)!important;
}
body.page-destinations .category-listing .dest-card__img,
body.page-travel-styles .category-listing .home-style-card__media{
height:260px!important;
min-height:260px!important;
background:#dcebe6!important;
}
body.page-destinations .category-listing .dest-card__img img,
body.page-travel-styles .category-listing .home-style-card__image{
filter:saturate(1.08) contrast(1.03) brightness(1.04)!important;
}
body.page-destinations .category-listing .dest-card__img::before{
background:linear-gradient(180deg,rgba(6,52,43,.04) 0%,rgba(6,52,43,.08) 48%,rgba(6,52,43,.2) 100%)!important;
opacity:1!important;
}
body.page-destinations .category-listing .dest-card__info,
body.page-travel-styles .category-listing .home-style-card__body{
padding:22px!important;
background:linear-gradient(180deg,#fff 0%,#fffdf7 100%)!important;
}
body.page-destinations .category-listing .dest-card__info h3,
body.page-travel-styles .category-listing .home-style-card__body h3{
font-family:'Playfair Display',serif!important;
font-size:1.4rem!important;
line-height:1.15!important;
color:var(--c-primary)!important;
margin-bottom:10px!important;
}
body.page-destinations .category-listing .dest-card__info p,
body.page-travel-styles .category-listing .home-style-card__subtitle{
font-size:.95rem!important;
line-height:1.8!important;
color:var(--c-text-light)!important;
}
body.page-travel-styles .category-listing .home-style-card__link-copy{
color:#1f6f5b!important;
font-weight:800!important;
}
body.page-travel-styles .category-listing .home-style-grid{
grid-template-columns:repeat(5,minmax(0,1fr))!important;
gap:24px!important;
max-width:min(1500px,calc(100vw - 96px))!important;
margin-left:auto!important;
margin-right:auto!important;
}
body.page-travel-styles .category-listing .home-style-card{
min-width:0!important;
height:100%!important;
}
body.page-travel-styles .category-listing .home-style-card__body{
display:flex!important;
flex-direction:column!important;
min-height:250px!important;
}
body.page-travel-styles .category-listing .home-style-card__body h3{
font-size:1.45rem!important;
line-height:1.18!important;
}
body.page-travel-styles .category-listing .home-style-card__subtitle{
display:-webkit-box!important;
-webkit-line-clamp:4!important;
-webkit-box-orient:vertical!important;
overflow:hidden!important;
}
body.page-travel-styles .category-listing .home-style-card__link-copy{
display:flex!important;
align-items:center!important;
justify-content:center!important;
width:100%!important;
min-height:42px!important;
margin-top:auto!important;
padding:11px 14px!important;
border-radius:999px!important;
background:linear-gradient(135deg,#ff3048 0%,#d72035 58%,#b91527 100%)!important;
box-shadow:0 14px 28px rgba(215,32,53,.22)!important;
color:#fff!important;
font-family:'Poppins',Arial,sans-serif!important;
font-size:.72rem!important;
font-weight:900!important;
letter-spacing:0!important;
line-height:1.1!important;
text-align:center!important;
text-transform:uppercase!important;
white-space:normal!important;
}
@media(max-width:1180px){
body.page-travel-styles .category-listing .home-style-grid{
grid-template-columns:repeat(3,minmax(0,1fr))!important;
max-width:min(1120px,calc(100vw - 48px))!important;
}
}
@media(max-width:860px){
body.page-travel-styles .category-listing .home-style-grid{
grid-template-columns:repeat(2,minmax(0,1fr))!important;
}
}
@media(max-width:640px){
body.page-travel-styles .category-listing .home-style-grid{
grid-template-columns:1fr!important;
max-width:100%!important;
}
}

@media(max-width:640px){
body.page-home .booking-form__panel{
padding-bottom:116px!important;
}
body.page-home .floating-contact{
right:max(10px,env(safe-area-inset-right,0px))!important;
bottom:max(92px,calc(env(safe-area-inset-bottom,0px) + 82px))!important;
gap:8px!important;
}
body.page-home .floating-btn{
width:42px!important;
height:42px!important;
}
body.page-home .floating-btn svg{
width:19px!important;
height:19px!important;
}
body.page-home.is-booking-in-view .floating-contact{
opacity:0!important;
pointer-events:none!important;
transform:translateY(10px)!important;
}
}

/* Fixed tour card rhythm across home and trip-deals grids. */
@media(min-width:769px){
body.page-home .tour-card__meta,
body.page-trip-deals .tour-card__meta{
height:110px!important;
min-height:110px!important;
max-height:110px!important;
overflow:hidden!important;
align-content:flex-start!important;
}
body.page-home .tour-card__body h3,
body.page-trip-deals .tour-card__body h3{
display:-webkit-box!important;
height:calc(1.15em * 3)!important;
min-height:calc(1.15em * 3)!important;
max-height:calc(1.15em * 3)!important;
overflow:hidden!important;
-webkit-line-clamp:3!important;
-webkit-box-orient:vertical!important;
}
body.page-home .tour-card__desc,
body.page-trip-deals .tour-card__desc{
height:calc(1.72em * 3)!important;
min-height:calc(1.72em * 3)!important;
max-height:calc(1.72em * 3)!important;
overflow:hidden!important;
}
body.page-home .tour-card__route,
body.page-trip-deals .tour-card__route{
display:-webkit-box!important;
height:calc(1.62em * 3 + 24px)!important;
min-height:calc(1.62em * 3 + 24px)!important;
max-height:calc(1.62em * 3 + 24px)!important;
overflow:hidden!important;
-webkit-line-clamp:3!important;
-webkit-box-orient:vertical!important;
}
body.page-home .tour-card__footer,
body.page-trip-deals .tour-card__footer{
margin-top:auto!important;
}
}

/* Keep long destination names readable in the desktop region dropdown. */
.site-header .nav__dropdown--regions{
width:min(760px,calc(100vw - 48px))!important;
min-width:min(760px,calc(100vw - 48px))!important;
max-width:calc(100vw - 48px)!important;
grid-template-columns:repeat(3,minmax(0,1fr))!important;
gap:18px!important;
box-sizing:border-box!important;
}
.site-header .nav__dropdown--regions .nav-region,
.site-header .nav__dropdown--regions .nav-region__links{
min-width:0!important;
max-width:100%!important;
}
.site-header .nav__dropdown--regions .nav-region__links a{
display:block!important;
width:100%!important;
max-width:100%!important;
min-width:0!important;
box-sizing:border-box!important;
white-space:normal!important;
overflow-wrap:anywhere!important;
word-break:normal!important;
hyphens:auto!important;
line-height:1.35!important;
padding:8px 10px!important;
}
@media(max-width:980px){
.site-header .nav__dropdown--regions{
width:100%!important;
min-width:0!important;
max-width:100%!important;
grid-template-columns:1fr!important;
}
}

/* Featured tour matcher for destination and blog detail pages. */
.featured-tour-match{
margin:44px 0 0;
padding:0;
max-width:100%;
}
.featured-tour-match__head{
margin-bottom:20px;
max-width:760px;
}
.featured-tour-match__eyebrow{
display:inline-flex;
align-items:center;
min-height:30px;
margin-bottom:10px;
padding:6px 10px;
border-radius:999px;
background:#f9f2e6;
color:var(--c-accent);
font-size:.7rem;
font-weight:900;
letter-spacing:.12em;
text-transform:uppercase;
}
.featured-tour-match__head h2{
margin:0 0 10px;
color:var(--c-primary);
font-family:'Playfair Display','Libre Baskerville',serif;
font-size:clamp(1.7rem,2.5vw,2.35rem);
line-height:1.12;
letter-spacing:0;
overflow-wrap:anywhere;
}
.featured-tour-match__head p{
margin:0;
color:var(--c-text-light);
font-size:.98rem;
line-height:1.72;
}
.featured-tour-match__grid{
display:grid;
grid-template-columns:repeat(3,minmax(0,1fr));
gap:18px;
margin-bottom:22px;
}
.featured-tour-card{
display:flex;
flex-direction:column;
min-width:0;
overflow:hidden;
border:1px solid rgba(11,31,58,.1);
border-radius:8px;
background:#fff;
box-shadow:0 16px 36px rgba(11,31,58,.08);
}
.featured-tour-card__media{
position:relative;
display:block;
height:190px;
overflow:hidden;
background:#e5eaf0;
}
.featured-tour-card__media::after{
content:'';
position:absolute;
inset:0;
background:linear-gradient(180deg,rgba(11,31,58,.05) 0%,rgba(11,31,58,.36) 100%);
pointer-events:none;
}
.featured-tour-card__media img{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:transform .45s ease;
}
.featured-tour-card:hover .featured-tour-card__media img{
transform:scale(1.04);
}
.featured-tour-card__media span{
position:absolute;
left:12px;
top:12px;
z-index:2;
max-width:calc(100% - 24px);
padding:6px 10px;
border-radius:999px;
background:#fff;
color:var(--c-primary);
font-size:.68rem;
font-weight:900;
letter-spacing:.08em;
line-height:1.2;
text-transform:uppercase;
box-shadow:0 8px 18px rgba(11,31,58,.16);
}
.featured-tour-card__body{
display:flex;
flex:1;
flex-direction:column;
gap:10px;
padding:18px;
min-width:0;
}
.featured-tour-card__meta{
display:flex;
flex-wrap:wrap;
gap:7px;
min-height:28px;
}
.featured-tour-card__meta span{
display:inline-flex;
align-items:center;
max-width:100%;
padding:5px 8px;
border-radius:999px;
background:#f8fafc;
border:1px solid rgba(11,31,58,.08);
color:#64748b;
font-size:.68rem;
font-weight:800;
line-height:1.25;
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
}
.featured-tour-card__body h3{
margin:0;
font-family:'Playfair Display','Libre Baskerville',serif;
font-size:1.22rem;
line-height:1.22;
letter-spacing:0;
}
.featured-tour-card__body h3 a{
color:var(--c-primary);
}
.featured-tour-card__body p{
display:-webkit-box;
margin:0;
color:var(--c-text-light);
font-size:.9rem;
line-height:1.65;
overflow:hidden;
-webkit-line-clamp:3;
-webkit-box-orient:vertical;
}
.featured-tour-card__foot{
display:flex;
align-items:center;
justify-content:space-between;
gap:12px;
margin-top:auto;
padding-top:12px;
border-top:1px solid rgba(11,31,58,.08);
}
.featured-tour-card__foot strong{
color:var(--c-accent);
font-size:.95rem;
white-space:nowrap;
}
.featured-tour-card__foot a{
display:inline-flex;
align-items:center;
justify-content:center;
min-height:38px;
padding:9px 12px;
border-radius:8px;
background:var(--c-primary);
color:#fff;
font-size:.72rem;
font-weight:900;
letter-spacing:.04em;
line-height:1.1;
text-align:center;
text-transform:uppercase;
white-space:nowrap;
}
.featured-tour-form{
display:grid;
gap:16px;
padding:22px;
border:1px solid rgba(11,31,58,.1);
border-radius:8px;
background:linear-gradient(180deg,#fff 0%,#fbfaf7 100%);
box-shadow:0 18px 42px rgba(11,31,58,.08);
}
.featured-tour-form__head{
display:grid;
gap:4px;
}
.featured-tour-form__head span{
color:var(--c-accent);
font-size:.72rem;
font-weight:900;
letter-spacing:.12em;
text-transform:uppercase;
}
.featured-tour-form__head strong{
color:var(--c-primary);
font-family:'Playfair Display','Libre Baskerville',serif;
font-size:1.45rem;
line-height:1.15;
}
.featured-tour-form__grid{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:13px;
}
.featured-tour-form__grid label{
display:grid;
gap:7px;
min-width:0;
color:#334155;
font-size:.76rem;
font-weight:900;
letter-spacing:.04em;
line-height:1.35;
text-transform:uppercase;
}
.featured-tour-form__wide{
grid-column:1/-1;
}
.featured-tour-form .spam-challenge{
display:inline-flex!important;
grid-template-columns:none!important;
align-items:center!important;
justify-content:flex-start!important;
gap:9px!important;
width:auto!important;
margin:0!important;
color:#111827;
font-size:.9rem;
font-weight:700;
letter-spacing:0;
line-height:1.4;
text-transform:none;
}
.featured-tour-form .spam-challenge input[type="checkbox"]{
display:inline-block!important;
width:18px!important;
height:18px!important;
min-width:18px!important;
max-width:18px!important;
flex:0 0 18px!important;
margin:0!important;
padding:0!important;
}
.featured-tour-form .spam-challenge span{
display:inline!important;
min-width:0;
color:#111827;
font-size:.9rem;
font-weight:700;
letter-spacing:0;
line-height:1.4;
text-transform:none;
}
.featured-tour-form__assurance{
display:block;
padding:13px 14px;
border:1px solid rgba(15,118,110,.16);
border-radius:8px;
background:linear-gradient(135deg,rgba(231,244,241,.72),rgba(255,255,255,.92));
color:var(--c-text);
font-size:.82rem;
line-height:1.58;
}
.featured-tour-form__assurance p{
display:inline;
margin:0;
}
.featured-tour-form__assurance p + p::before{
content:' ';
}
.featured-tour-form__assurance a{
color:var(--c-primary);
font-weight:800;
text-decoration:underline;
text-underline-offset:3px;
}
.featured-tour-form .booking-submit{
min-height:54px;
border-radius:8px;
}
@media(min-width:1180px){
.dest-main .featured-tour-match__grid{
grid-template-columns:repeat(3,minmax(0,1fr));
}
.blog-story__article .featured-tour-match__grid{
grid-template-columns:repeat(3,minmax(0,1fr));
}
}
@media(max-width:900px){
.featured-tour-match{
margin-top:34px;
}
.featured-tour-match__grid,
.featured-tour-form__grid{
grid-template-columns:1fr;
}
.featured-tour-form__wide{
grid-column:auto;
}
.featured-tour-card__media{
height:220px;
}
}
@media(max-width:620px){
.featured-tour-match{
margin-top:28px;
}
.featured-tour-match__head h2{
font-size:1.55rem;
}
.featured-tour-card__media{
height:200px;
}
.featured-tour-card__body,
.featured-tour-form{
padding:16px;
}
.featured-tour-card__foot{
align-items:stretch;
flex-direction:column;
}
.featured-tour-card__foot strong,
.featured-tour-card__foot a{
width:100%;
white-space:normal;
}
.featured-tour-form .booking-input{
min-width:0;
}
}

/* Manual featured tours display as horizontal rows. */
.featured-tour-match__list{
display:grid;
gap:14px;
margin-bottom:22px;
}
.featured-tour-row{
display:grid;
grid-template-columns:180px minmax(0,1fr) minmax(150px,auto);
align-items:stretch;
gap:18px;
min-width:0;
overflow:hidden;
border:1px solid rgba(11,31,58,.1);
border-radius:8px;
background:#fff;
box-shadow:0 14px 34px rgba(11,31,58,.07);
}
.featured-tour-row__media{
display:block;
min-height:138px;
background:#e5eaf0;
overflow:hidden;
}
.featured-tour-row__media img{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:transform .45s ease;
}
.featured-tour-row:hover .featured-tour-row__media img{
transform:scale(1.04);
}
.featured-tour-row__body{
display:flex;
flex-direction:column;
justify-content:center;
gap:8px;
min-width:0;
padding:18px 0;
}
.featured-tour-row__meta{
display:flex;
flex-wrap:wrap;
gap:7px;
min-width:0;
}
.featured-tour-row__meta span{
display:inline-flex;
align-items:center;
max-width:100%;
padding:5px 8px;
border-radius:999px;
background:#f8fafc;
border:1px solid rgba(11,31,58,.08);
color:#64748b;
font-size:.68rem;
font-weight:800;
line-height:1.25;
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
}
.featured-tour-row__body h3{
margin:0;
font-family:'Playfair Display','Libre Baskerville',serif;
font-size:1.25rem;
line-height:1.18;
letter-spacing:0;
overflow-wrap:anywhere;
}
.featured-tour-row__body h3 a{
color:var(--c-primary);
}
.featured-tour-row__body p{
display:-webkit-box;
margin:0;
color:var(--c-text-light);
font-size:.9rem;
line-height:1.6;
overflow:hidden;
-webkit-line-clamp:2;
-webkit-box-orient:vertical;
}
.featured-tour-row__action{
display:flex;
flex-direction:column;
align-items:flex-end;
justify-content:center;
gap:12px;
min-width:0;
padding:18px;
border-left:1px solid rgba(11,31,58,.08);
}
.featured-tour-row__action strong{
color:var(--c-accent);
font-size:.96rem;
white-space:nowrap;
}
.featured-tour-row__action a{
display:inline-flex;
align-items:center;
justify-content:center;
min-height:40px;
padding:10px 13px;
border-radius:8px;
background:var(--c-primary);
color:#fff;
font-size:.72rem;
font-weight:900;
letter-spacing:.04em;
line-height:1.1;
text-align:center;
text-transform:uppercase;
white-space:nowrap;
}
@media(max-width:900px){
.featured-tour-row{
grid-template-columns:150px minmax(0,1fr);
gap:14px;
}
.featured-tour-row__action{
grid-column:1/-1;
flex-direction:row;
align-items:center;
justify-content:space-between;
padding:13px 16px;
border-left:0;
border-top:1px solid rgba(11,31,58,.08);
}
.featured-tour-row__body{
padding:16px 14px 16px 0;
}
}
@media(max-width:620px){
.featured-tour-row{
grid-template-columns:1fr;
gap:0;
}
.featured-tour-row__media{
height:188px;
min-height:188px;
}
.featured-tour-row__body{
padding:16px;
}
.featured-tour-row__action{
align-items:stretch;
flex-direction:column;
padding:0 16px 16px;
border-top:0;
}
.featured-tour-row__action strong,
.featured-tour-row__action a{
width:100%;
white-space:normal;
}
}
