:root{
	--ink:#1B1042;
	--coral:#FF6B4A;
	--gold:#FFC857;
	--teal:#0FA3B1;
	--cream:#FFF7EA;
	--charcoal:#241934;
	--line: rgba(36,25,52,0.14);
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
	background:var(--cream);
	color:var(--charcoal);
	font-family:'Inter',sans-serif;
	overflow-x:hidden;
}
::selection{background:var(--gold);color:var(--ink);}
a{color:inherit;text-decoration:none;}
.wrap{max-width:1180px;margin:0 auto;padding:0 32px;}
.eyebrow{
	font-family:'Space Mono',monospace;
	font-size:12.5px;
	letter-spacing:.14em;
	text-transform:uppercase;
	color:var(--coral);
	display:flex;align-items:center;gap:10px;
}
.eyebrow::before{content:"";width:22px;height:1.5px;background:var(--coral);}
h1,h2,h3{font-family:'Fraunces',serif;font-weight:600;line-height:1.05;letter-spacing:-.01em;}

/* ===== NAV ===== */
header{
	position:sticky;top:0;z-index:100;
	background:rgba(255,247,234,0.88);
	backdrop-filter:blur(10px);
	border-bottom:1px solid var(--line);
}
nav{display:flex;align-items:center;justify-content:space-between;padding:20px 32px;max-width:1180px;margin:0 auto;}
.logo{
	display:flex;
	align-items:center;
	gap:12px;
	text-decoration:none;
}

.logo-icon{
	font-size:34px;
}

.logo-text{
	display:flex;
	flex-direction:column;
	line-height:1.1;
}

.logo-text strong{
	font-size:22px;
	color:#1B1042;
	font-family:'Fraunces',serif;
}

.logo-text small{
	font-size:11px;
	color:#666;
	letter-spacing:1px;
}
.navlinks{display:flex;gap:34px;align-items:center;}
.navlinks a{font-size:14.5px;font-weight:500;color:var(--charcoal);opacity:.75;transition:opacity .2s;}
.navlinks a:hover{opacity:1;}
.nav-cta{

	background:#FF6B4A;

	color:white!important;

	padding:12px 22px;

	border-radius:30px;

	font-weight:600;

	transition:.3s;

}

.nav-cta:hover{

	background:#1B1042;

	transform:translateY(-2px);

}
.burger{display:none;background:none;border:none;cursor:pointer;color:var(--ink);}

/* ===== HERO ===== */
.hero{
	position:relative;
	padding:90px 32px 120px;
	max-width:1180px;margin:0 auto;
	display:grid;grid-template-columns:1.15fr .85fr;gap:40px;align-items:center;
}
.hero-copy h1{font-size:clamp(44px,5.6vw,74px);color:var(--ink);}
.hero-copy h1 em{
	font-style:italic;color:var(--coral);
	position:relative;
}
.hero-copy p{
	font-size:18px;line-height:1.6;max-width:460px;margin:26px 0 34px;color:var(--charcoal);opacity:.85;
}
.hero-btns{display:flex;gap:14px;flex-wrap:wrap;}
.btn{
	padding:15px 26px;border-radius:100px;font-weight:600;font-size:14.5px;
	display:inline-flex;align-items:center;gap:8px;cursor:pointer;border:none;
	transition:transform .2s ease, box-shadow .2s ease;
}
.btn-primary{background:var(--coral);color:#fff;box-shadow:0 8px 20px -6px rgba(255,107,74,.55);}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 12px 26px -6px rgba(255,107,74,.65);}
.btn-outline{background:transparent;color:var(--ink);border:1.5px solid var(--ink);}
.btn-outline:hover{background:var(--ink);color:var(--cream);}

/* postcard stack */
.stack{position:relative;height:420px;}
.pcard{
	position:absolute;width:280px;background:#fff;
	border-radius:6px;box-shadow:0 20px 45px -18px rgba(27,16,66,.35);
	padding:12px;
}
.pcard img{width:100%;height:170px;object-fit:cover;border-radius:3px;display:block;}
.pcard .cap{
	font-family:'Space Mono',monospace;font-size:11px;letter-spacing:.04em;
	display:flex;justify-content:space-between;padding:10px 4px 2px;color:var(--charcoal);opacity:.7;
}
.pcard.c1{top:0;right:20px;transform:rotate(6deg);z-index:2;}
.pcard.c2{top:110px;right:170px;transform:rotate(-8deg);z-index:1;width:220px;}
.pcard.c3{top:250px;right:10px;transform:rotate(-4deg);z-index:3;width:240px;}
.stamp{
	position:absolute;width:92px;height:92px;border-radius:50%;
	border:2.5px dashed var(--teal);
	display:flex;align-items:center;justify-content:center;text-align:center;
	font-family:'Space Mono',monospace;font-size:10px;letter-spacing:.06em;
	color:var(--teal);transform:rotate(-18deg);
	top:-10px;left:-24px;z-index:4;background:rgba(255,247,234,.9);
	text-transform:uppercase;line-height:1.4;font-weight:700;
}

/* marquee strip */
.marquee{
	background:var(--ink);color:var(--cream);
	padding:14px 0;overflow:hidden;white-space:nowrap;
	border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08);
}
.marquee-track{display:inline-flex;gap:44px;animation:scroll 28s linear infinite;}
.marquee span{
	font-family:'Space Mono',monospace;font-size:13px;letter-spacing:.08em;text-transform:uppercase;
	display:inline-flex;align-items:center;gap:44px;color:var(--gold);
}
@keyframes scroll{from{transform:translateX(0);}to{transform:translateX(-50%);}}

/* ===== SECTION HEADS ===== */
section{padding:110px 0;}
.sec-head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:56px;gap:30px;flex-wrap:wrap;}
.sec-head h2{font-size:clamp(32px,3.6vw,46px);color:var(--ink);max-width:600px;}
.sec-head p{max-width:340px;font-size:15px;opacity:.7;line-height:1.55;}

/* ===== STORIES (postcards) ===== */
.stories-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;}
.story{
	background:#fff;border-radius:8px;overflow:hidden;
	box-shadow:0 14px 30px -18px rgba(27,16,66,.25);
	transition:transform .25s ease, box-shadow .25s ease;
	display:flex;flex-direction:column;
}
.story:nth-child(2){transform:rotate(1.2deg);}
.story:nth-child(1){transform:rotate(-1deg);}
.story:nth-child(3){transform:rotate(1.6deg);}
.story:hover{transform:translateY(-8px) rotate(0deg)!important;box-shadow:0 26px 46px -18px rgba(27,16,66,.4);}
.story-img{height:210px;position:relative;overflow:hidden;}
.story-img img{width:100%;height:100%;object-fit:cover;}
.story-tag{
	position:absolute;top:14px;left:14px;background:var(--gold);color:var(--ink);
	font-family:'Space Mono',monospace;font-size:10.5px;font-weight:700;letter-spacing:.05em;
	padding:5px 10px;border-radius:100px;text-transform:uppercase;
}
.story-body{padding:22px 22px 26px;flex:1;display:flex;flex-direction:column;}
.story-meta{font-family:'Space Mono',monospace;font-size:11px;opacity:.55;margin-bottom:8px;letter-spacing:.03em;}
.story-body h3{font-size:21px;margin-bottom:10px;color:var(--ink);}
.story-body p{font-size:14.5px;line-height:1.6;opacity:.75;flex:1;}
.story-read{margin-top:16px;font-size:13.5px;font-weight:700;color:var(--coral);display:inline-flex;align-items:center;gap:6px;}

/* ===== TRIPS (boarding pass) ===== */
.trips{background:var(--ink);color:var(--cream);position:relative;}
.trips .eyebrow{color:var(--gold);}
.trips .eyebrow::before{background:var(--gold);}
.trips .sec-head h2{color:var(--cream);}
.trips .sec-head p{color:var(--cream);opacity:.6;}
.trip-list{display:flex;flex-direction:column;gap:20px;}
.pass{
	background:var(--cream);color:var(--ink);border-radius:12px;
	display:grid;grid-template-columns:1fr 1px 220px;
	position:relative;overflow:visible;
}
.pass-main{padding:28px 32px;display:flex;flex-direction:column;justify-content:center;gap:6px;}
.pass-route{display:flex;align-items:center;gap:14px;font-family:'Space Mono',monospace;font-size:13px;letter-spacing:.04em;opacity:.6;}
.pass-route .plane{color:var(--coral);font-size:16px;}
.pass-main h3{font-size:27px;}
.pass-tags{display:flex;gap:8px;margin-top:10px;flex-wrap:wrap;}
.pass-tags span{
	font-family:'Space Mono',monospace;font-size:10.5px;text-transform:uppercase;letter-spacing:.05em;
	background:rgba(15,163,177,.12);color:var(--teal);padding:5px 10px;border-radius:100px;font-weight:700;
}
.pass-divider{
	background:repeating-linear-gradient(to bottom, transparent 0 8px, var(--ink) 8px 16px);
	opacity:.18;
}
.pass-divider::before,.pass-divider::after{
	content:"";position:absolute;width:22px;height:22px;background:var(--ink);border-radius:50%;
}
.pass-stub{padding:28px 26px;display:flex;flex-direction:column;justify-content:center;gap:14px;}
.pass-stub .price{font-family:'Fraunces',serif;font-weight:700;font-size:26px;color:var(--coral);}
.pass-stub .price span{font-family:'Space Mono',monospace;font-size:12px;color:var(--charcoal);opacity:.6;font-weight:400;}
.pass-btn{
	background:var(--ink);color:var(--cream);text-align:center;padding:11px;border-radius:100px;
	font-size:13px;font-weight:700;transition:background .2s;
}
.pass-btn:hover{background:var(--coral);}

/* ===== PHILOSOPHY / SPLIT ===== */
.split{display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;align-items:center;}
.split-img{position:relative;}
.split-img img{width:100%;border-radius:10px;display:block;}
.split-img .stamp{top:auto;bottom:-26px;left:-26px;background:var(--cream);}
.split-copy .eyebrow{margin-bottom:18px;}
.split-copy h2{font-size:clamp(30px,3.4vw,42px);color:var(--ink);margin-bottom:22px;}
.split-copy p{font-size:16.5px;line-height:1.75;opacity:.8;margin-bottom:18px;}
.split-stats{display:flex;gap:40px;margin-top:30px;}
.split-stats div{}
.split-stats b{font-family:'Fraunces',serif;font-size:34px;color:var(--coral);display:block;}
.split-stats span{font-family:'Space Mono',monospace;font-size:11.5px;text-transform:uppercase;letter-spacing:.05em;opacity:.6;}

/* ===== TESTIMONIALS ===== */
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;}
.testi{
	background:#fff;border-radius:10px;padding:30px 26px;
	border:1px solid var(--line);position:relative;
}
.testi .quote-mark{font-family:'Fraunces',serif;font-size:56px;color:var(--gold);line-height:1;margin-bottom:6px;}
.testi p{font-size:15px;line-height:1.65;opacity:.82;margin-bottom:20px;}
.testi-who{display:flex;align-items:center;gap:12px;}
.testi-who img{width:42px;height:42px;border-radius:50%;object-fit:cover;}
.testi-who b{font-size:14px;display:block;}
.testi-who span{font-size:12px;opacity:.6;font-family:'Space Mono',monospace;}

/* ===== NEWSLETTER / FOOTER ===== */
.cta-band{
	background:var(--coral);color:#fff;border-radius:20px;
	padding:64px 60px;display:flex;justify-content:space-between;align-items:center;gap:30px;flex-wrap:wrap;
	margin:0 32px;max-width:1116px;margin-left:auto;margin-right:auto;
}
.cta-band h2{color:#fff;font-size:clamp(28px,3vw,40px);max-width:480px;}
.cta-band form{display:flex;gap:10px;flex-wrap:wrap;}
.cta-band input{
	padding:15px 18px;border-radius:100px;border:none;min-width:240px;font-family:'Inter',sans-serif;font-size:14px;
}
.cta-band button{
	background:var(--ink);color:#fff;border:none;padding:15px 26px;border-radius:100px;font-weight:700;cursor:pointer;font-size:14px;
	transition:transform .2s;
}
.cta-band button:hover{transform:translateY(-2px);}

footer{padding:80px 0 40px;}
.foot-grid{display:grid;grid-template-columns:1.4fr repeat(3,1fr);gap:40px;margin-bottom:60px;}
.foot-logo{font-family:'Fraunces',serif;font-weight:700;font-size:24px;color:var(--ink);margin-bottom:14px;}
.foot-logo span{color:var(--coral);}
.foot-grid p{font-size:14px;opacity:.65;line-height:1.6;max-width:280px;}
.foot-col h4{font-family:'Space Mono',monospace;font-size:11.5px;text-transform:uppercase;letter-spacing:.06em;margin-bottom:16px;opacity:.55;}
.foot-col a{display:block;font-size:14.5px;margin-bottom:12px;opacity:.8;transition:opacity .2s;}
.foot-col a:hover{opacity:1;color:var(--coral);}
.foot-bottom{
	border-top:1px solid var(--line);padding-top:24px;display:flex;justify-content:space-between;
	font-size:12.5px;opacity:.55;font-family:'Space Mono',monospace;flex-wrap:wrap;gap:10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width:920px){
	.navlinks{display:none;}
	.burger{display:block;}
	.hero{grid-template-columns:1fr;padding-top:50px;}
	.stack{height:300px;margin-top:20px;}
	.pcard{width:190px!important;}
	.pcard img{height:120px;}
	.pcard.c2{right:110px;top:70px;}
	.pcard.c3{right:0;top:170px;}
	.stories-grid{grid-template-columns:1fr;}
	.pass{grid-template-columns:1fr;}
	.pass-divider{display:none;}
	.split{grid-template-columns:1fr;gap:40px;}
	.testi-grid{grid-template-columns:1fr;}
	.cta-band{flex-direction:column;text-align:center;padding:44px 28px;}
	.foot-grid{grid-template-columns:1fr 1fr;}
}
@media (prefers-reduced-motion:reduce){
	html{scroll-behavior:auto;}
	.marquee-track{animation:none;}
	*{transition:none!important;}
}

/*==============================
DESTINATIONS
===============================*/

.destinations{
	background:#fff;
}

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

.destination-card{
	background:#fff;
	border-radius:12px;
	overflow:hidden;
	box-shadow:0 10px 30px rgba(0,0,0,.08);
	transition:.3s;
}

.destination-card:hover{
	transform:translateY(-8px);
}

.destination-card img{
	width:100%;
	height:220px;
	object-fit:cover;
}

.destination-content{
	padding:25px;
}

.destination-content h3{
	color:#1B1042;
	margin-bottom:10px;
}

.destination-content p{
	line-height:1.7;
	color:#666;
	margin-bottom:20px;
}

.destination-content a{
	color:#FF6B4A;
	font-weight:bold;
}

@media(max-width:900px){

	.destination-grid{

		grid-template-columns:1fr;

	}

}
.hero-stats{

	display:flex;

	gap:40px;

	margin-top:40px;

	flex-wrap:wrap;

}

.hero-stats h3{

	font-size:34px;

	color:#FF6B4A;

	margin-bottom:5px;

}

.hero-stats span{

	font-size:13px;

	color:#666;

	text-transform:uppercase;

	letter-spacing:1px;

}
/*====================
TOUR SECTION
=====================*/

.tour-section{

	padding:100px 0;

	background:#fff;

}

.tour-grid{

	display:grid;

	grid-template-columns:repeat(3,1fr);

	gap:30px;

}

.tour-card{

	background:white;

	border-radius:16px;

	overflow:hidden;

	box-shadow:0 12px 30px rgba(0,0,0,.08);

	transition:.3s;

}

.tour-card:hover{

	transform:translateY(-10px);

}

.tour-card img{

	width:100%;

	height:240px;

	object-fit:cover;

}

.tour-body{

	padding:25px;

}

.tour-body h3{

	margin-bottom:10px;

	color:#1B1042;

}

.tour-body p{

	color:#777;

	margin-bottom:15px;

}

.price{

	font-size:22px;

	font-weight:bold;

	color:#FF6B4A;

	margin-bottom:20px;

}

@media(max-width:900px){

	.tour-grid{

		grid-template-columns:1fr;

	}

}
/*==========================
WHY CHOOSE US
===========================*/

.why-us{
	padding:100px 0;
	background:#f9fafc;
}

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

.why-card{
	background:#fff;
	border-radius:15px;
	padding:35px 30px;
	text-align:center;
	box-shadow:0 12px 30px rgba(0,0,0,.08);
	transition:.3s;
}

.why-card:hover{
	transform:translateY(-8px);
}

.why-icon{
	font-size:45px;
	margin-bottom:20px;
}

.why-card h3{
	margin-bottom:15px;
	color:#1B1042;
}

.why-card p{
	color:#666;
	line-height:1.7;
}

@media(max-width:900px){

	.why-grid{
		grid-template-columns:1fr;
	}

}
/*============================
SPECIAL OFFER
=============================*/

.offer-section{

	padding:100px 0;

	background:#fff7ef;

}

.offer-box{

	background:linear-gradient(135deg,#ff6b4a,#ff8b65);

	padding:70px;

	border-radius:20px;

	text-align:center;

	color:white;

	box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.offer-tag{

	display:inline-block;

	background:white;

	color:#ff6b4a;

	padding:10px 18px;

	border-radius:30px;

	font-weight:bold;

	margin-bottom:25px;

}

.offer-box h2{

	font-size:52px;

	margin-bottom:20px;

}

.offer-box h2 span{

	color:#ffe082;

}

.offer-box p{

	max-width:700px;

	margin:auto;

	line-height:1.8;

	margin-bottom:40px;

}

.offer-timer{

	display:flex;

	justify-content:center;

	gap:25px;

	margin-bottom:40px;

	flex-wrap:wrap;

}

.time-box{

	background:rgba(255,255,255,.15);

	padding:25px;

	border-radius:15px;

	min-width:120px;

}

.time-box h3{

	font-size:40px;

	margin-bottom:8px;

}

.time-box span{

	text-transform:uppercase;

	font-size:12px;

	letter-spacing:1px;

}

@media(max-width:768px){

	.offer-box{

		padding:40px 25px;

	}

	.offer-box h2{

		font-size:34px;

	}

}
/*=========================
FREE QUOTE
==========================*/

.quote-section{

	padding:100px 0;

	background:#ffffff;

}

.quote-form{

	display:grid;

	grid-template-columns:repeat(2,1fr);

	gap:20px;

	margin-top:40px;

}

.quote-form input,
.quote-form select,
.quote-form textarea{

	padding:16px;

	border:1px solid #ddd;

	border-radius:12px;

	font-size:16px;

	font-family:inherit;

}

.quote-form textarea{

	grid-column:1/3;

	resize:vertical;

}

.quote-form button{

	width:220px;

}

@media(max-width:768px){

	.quote-form{

		grid-template-columns:1fr;

	}

	.quote-form textarea{

		grid-column:auto;

	}

}

/*=========================
FOOTER
=========================*/

.footer{

	background:#1B1042;

	color:white;

	padding:80px 0 30px;

}

.footer-grid{

	display:grid;

	grid-template-columns:2fr 1fr 1fr 1fr;

	gap:40px;

}

.footer h2{

	margin-bottom:20px;

}

.footer h4{

	margin-bottom:15px;

	color:#FFC857;

}

.footer a{

	display:block;

	color:#ddd;

	text-decoration:none;

	margin-bottom:10px;

	transition:.3s;

}

.footer a:hover{

	color:#FF6B4A;

}

.footer p{

	line-height:1.8;

	color:#ddd;

}

.footer-bottom{

	margin-top:50px;

	padding-top:20px;

	border-top:1px solid rgba(255,255,255,.15);

	text-align:center;

	color:#aaa;

}

@media(max-width:900px){

	.footer-grid{

		grid-template-columns:1fr;

	}

}

/*========================
PRIVACY POLICY
=========================*/

.policy-page{

	padding:100px 0;

	background:#fff;

}

.policy-page h1{

	font-size:48px;

	margin-bottom:15px;

	color:#1B1042;

}

.policy-date{

	margin-bottom:40px;

	color:#888;

}

.policy-page h2{

	margin-top:40px;

	margin-bottom:15px;

	color:#1B1042;

}

.policy-page p{

	line-height:1.9;

	color:#555;

	margin-bottom:20px;

}

.policy-page ul{

	padding-left:25px;

	line-height:2;

	color:#555;

}
.page-banner{

	padding:100px 0;

	background:linear-gradient(135deg,#0F4C81,#1B1042);

	color:white;

	text-align:center;

}

.page-banner h1{

	font-size:60px;

	margin:20px 0;

}

.page-banner p{

	font-size:20px;

	opacity:.9;

	max-width:700px;

	margin:auto;

}

.policy-page{

	max-width:900px;

	margin:auto;

	padding:80px 20px;

}
.policy-page h2{

	margin-top:50px;

	padding-left:15px;

	border-left:5px solid #FF6B4A;

	color:#1B1042;

}

.contact-card{

	background:#FFF7EA;

	padding:40px;

	border-radius:20px;

	margin-top:70px;

	text-align:center;

}
.policy-menu{

max-width:900px;

margin:40px auto;

background:#fff;

padding:30px;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.policy-menu h3{

margin-bottom:20px;

color:#1B1042;

}

.policy-menu ul{

list-style:none;

padding:0;

margin:0;

display:grid;

grid-template-columns:repeat(2,1fr);

gap:15px;

}

.policy-menu a{

text-decoration:none;

color:#444;

font-weight:600;

transition:.3s;

}

.policy-menu a:hover{

color:#FF6B4A;

}